-
Notifications
You must be signed in to change notification settings - Fork 96
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 #141 from rjaros/master
Added Polish translation
- Loading branch information
Showing
1 changed file
with
70 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,70 @@ | ||
/*! | ||
* Polish translation for the "pl-PL" and "pl" language codes. | ||
* Robert Jaros <[email protected]> | ||
*/ | ||
$.fn.ajaxSelectPicker.locale['pl-PL'] = { | ||
/** | ||
* @member $.fn.ajaxSelectPicker.locale | ||
* @cfg {String} currentlySelected = 'Currently Selected' | ||
* @markdown | ||
* The text to use for the label of the option group when currently selected options are preserved. | ||
*/ | ||
currentlySelected: 'Aktualny wybór', | ||
|
||
/** | ||
* @member $.fn.ajaxSelectPicker.locale | ||
* @cfg {String} emptyTitle = 'Select and begin typing' | ||
* @markdown | ||
* The text to use as the title for the select element when there are no items to display. | ||
*/ | ||
emptyTitle: 'Wybierz i zacznij pisać', | ||
|
||
/** | ||
* @member $.fn.ajaxSelectPicker.locale | ||
* @cfg {String} errorText = ''Unable to retrieve results' | ||
* @markdown | ||
* The text to use in the status container when a request returns with an error. | ||
*/ | ||
errorText: 'Nie można pobrać wyników', | ||
|
||
/** | ||
* @member $.fn.ajaxSelectPicker.locale | ||
* @cfg {String} searchPlaceholder = 'Search...' | ||
* @markdown | ||
* The text to use for the search input placeholder attribute. | ||
*/ | ||
searchPlaceholder: 'Szukaj...', | ||
|
||
/** | ||
* @member $.fn.ajaxSelectPicker.locale | ||
* @cfg {String} statusInitialized = 'Start typing a search query' | ||
* @markdown | ||
* The text used in the status container when it is initialized. | ||
*/ | ||
statusInitialized: 'Zacznij pisać warunek wyszukiwania', | ||
|
||
/** | ||
* @member $.fn.ajaxSelectPicker.locale | ||
* @cfg {String} statusNoResults = 'No Results' | ||
* @markdown | ||
* The text used in the status container when the request returns no results. | ||
*/ | ||
statusNoResults: 'Brak wyników', | ||
|
||
/** | ||
* @member $.fn.ajaxSelectPicker.locale | ||
* @cfg {String} statusSearching = 'Searching...' | ||
* @markdown | ||
* The text to use in the status container when a request is being initiated. | ||
*/ | ||
statusSearching: 'Szukam...', | ||
|
||
/** | ||
* @member $.fn.ajaxSelectPicker.locale | ||
* @cfg {String} statusTooShort = 'Please enter more characters' | ||
* @markdown | ||
* The text used in the status container when the request returns no results. | ||
*/ | ||
statusTooShort: 'Wprowadź więcej znaków' | ||
}; | ||
$.fn.ajaxSelectPicker.locale.pl = $.fn.ajaxSelectPicker.locale['pl-PL']; |