File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77- Fix typo in Romanian (#5005 )
88- Add translations for lower and upper Sorbian (` dsb ` and ` hsb ` ) (#4949 )
99- Updates to Slovak (#4915 )
10- - Fixed Norwegian ` inputTooShort ` message (#4896 )
10+ - Fixed Norwegian ` inputTooShort ` message (#4817 , 4896)
1111- Add Bosnian translation (` bs ` ) (#4504 )
1212- Improve French translation (#4988 )
1313
Original file line number Diff line number Diff line change @@ -12,13 +12,7 @@ define(function () {
1212 inputTooShort : function ( args ) {
1313 var remainingChars = args . minimum - args . input . length ;
1414
15- var message = 'Vennligst skriv inn ' ;
16-
17- if ( remainingChars > 1 ) {
18- message += remainingChars ;
19- } else {
20- message += 'ett' ;
21- }
15+ var message = 'Vennligst skriv inn ' + remainingChars + ' tegn til' ;
2216
2317 return message + ' tegn til' ;
2418 } ,
You can’t perform that action at this time.
0 commit comments