forked from select2/select2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Uyghur (Uighur) translation (select2#6166)
- Loading branch information
Showing
1 changed file
with
45 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,45 @@ | ||
define(function () { | ||
// Uyghur (Uighur) | ||
return { | ||
errorLoading: function () { | ||
return 'نەتىجىنى يۈكلىيەلمىدى.'; | ||
}, | ||
inputTooLong: function (args) { | ||
var overChars = args.input.length - args.maximum; | ||
|
||
var message = overChars + ' ھەرپ-بەلگىنى ئۆچۈرۈۋېتىڭ.'; | ||
|
||
return message; | ||
}, | ||
inputTooShort: function (args) { | ||
var remainingChars = args.minimum - args.input.length; | ||
|
||
var message = 'كەم دېگەندە ' + remainingChars + ' ھەرپ-بەلگە كىرگۈزۈڭ.'; | ||
|
||
return message; | ||
}, | ||
loadingMore: function () { | ||
return 'تېخىمۇ كۆپ نەتىجىلەرنى يۈكلەۋاتىدۇ...'; | ||
}, | ||
maximumSelected: function (args) { | ||
var message = 'پەقەت ' + args.maximum + ' ئەزانى تاللىيالايسىز'; | ||
|
||
return message; | ||
}, | ||
noResults: function () { | ||
return 'ھېچقانداق نەتىجە تېپىلمىدى'; | ||
}, | ||
searching: function () { | ||
return 'ئىزدەۋاتىدۇ...'; | ||
}, | ||
removeAllItems: function () { | ||
return 'ھەممە ئەزانى ئۆچۈرۈش'; | ||
}, | ||
removeItem: function () { | ||
return 'ئەزا ئۆچۈرۈش'; | ||
}, | ||
search: function() { | ||
return 'ئىزدەش'; | ||
} | ||
}; | ||
}); |