-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2121 from jurisvaldovskis/master
Added Latvian translation
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Translated default messages for bootstrap-select. | ||
* Locale: LV (Latvian) | ||
* Region: LV (Latvia) | ||
*/ | ||
(function ($) { | ||
$.fn.selectpicker.defaults = { | ||
noneSelectedText: 'Nekas nav atzīmēts', | ||
noneResultsText: 'Nav neviena rezultāta {0}', | ||
countSelectedText: function (numSelected, numTotal) { | ||
return (numSelected == 1) ? "{0} ieraksts atzīmēts" : "{0} ieraksti atzīmēts"; | ||
}, | ||
maxOptionsText: function (numAll, numGroup) { | ||
return [ | ||
(numAll == 1) ? 'Sasniegts limits ({n} ieraksts maksimums)' :'Sasniegts limits ({n} ieraksti maksimums)', | ||
(numGroup == 1) ? 'Sasniegts grupas limits ({n} ieraksts maksimums)' : 'Sasniegts grupas limits ({n} ieraksti maksimums)' | ||
]; | ||
}, | ||
selectAllText: 'Atzīmēt visu', | ||
deselectAllText: 'Neatzīmēt nevienu', | ||
multipleSeparator: ', ' | ||
}; | ||
})(jQuery); |