mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
21 lines
945 B
JavaScript
21 lines
945 B
JavaScript
/* http://keith-wood.name/keypad.html
|
|
Turkish localisation for the jQuery keypad extension
|
|
Written by Yücel Kandemir(yucel{at}21bilisim.com) September 2010. */
|
|
(function($) { // hide the namespace
|
|
$.keypad.regional['tr'] = {
|
|
buttonText: '...', buttonStatus: 'Aç',
|
|
closeText: 'Kapat', closeStatus: 'Klavyeyi Kapatýr',
|
|
clearText: 'Sil', clearStatus: 'Ýçerisini Temizler',
|
|
backText: 'Geri Al', backStatus: 'Son Karakteri Siler.',
|
|
shiftText: 'Büyüt', shiftStatus: 'Büyük Harfle Yazmak Ýçin Seçiniz.',
|
|
spacebarText: ' ', spacebarStatus: '',
|
|
enterText: 'Enter', enterStatus: '',
|
|
tabText: '→', tabStatus: '',
|
|
alphabeticLayout: $.keypad.qwertyAlphabetic,
|
|
fullLayout: $.keypad.qwertyLayout,
|
|
isAlphabetic: $.keypad.isAlphabetic,
|
|
isNumeric: $.keypad.isNumeric,
|
|
toUpper: $.keypad.toUpper,
|
|
isRTL: false};
|
|
$.keypad.setDefaults($.keypad.regional['tr']);
|
|
})(jQuery);
|