1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00
limesurvey_ynh/sources/third_party/jquery-keypad/jquery.keypad-de.js

36 lines
1.6 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* http://keith-wood.name/keypad.html
German localisation for the jQuery keypad extension
Written by Uwe Jakobs(u.jakobs{at}imageco.de) September 2009. */
(function($) { // hide the namespace
$.keypad.qwertzAlphabetic = ['qwertzuiopüß', 'asdfghjklöä', 'yxcvbnm'];
$.keypad.qwertzLayout =
['!"§$%&/()=?`' + $.keypad.BACK + $.keypad.HALF_SPACE + '$£€/',
'<>°^@{[]}\\~´;:' + $.keypad.HALF_SPACE + '789*',
$.keypad.qwertzAlphabetic[0] + '+*' +
$.keypad.HALF_SPACE + '456-',
$.keypad.HALF_SPACE + $.keypad.qwertzAlphabetic[1] +
'#\'' + $.keypad.SPACE + '123+',
'|' + $.keypad.qwertzAlphabetic[2] + 'µ,.-_' +
$.keypad.SPACE + $.keypad.HALF_SPACE +'.0,=',
$.keypad.SHIFT + $.keypad.SPACE + $.keypad.SPACE_BAR +
$.keypad.SPACE + $.keypad.SPACE + $.keypad.SPACE + $.keypad.CLEAR +
$.keypad.SPACE + $.keypad.SPACE + $.keypad.HALF_SPACE + $.keypad.CLOSE];
$.keypad.regional['de'] = {
buttonText: '...', buttonStatus: 'Öffnen',
closeText: 'schließen', closeStatus: 'schließen',
clearText: 'löschen', clearStatus: 'Gesamten Inhalt löschen',
backText: 'zurück', backStatus: 'Letzte Eingabe löschen',
shiftText: 'umschalten', shiftStatus: 'Zwischen Groß- und Kleinschreibung wechseln',
spacebarText: '&nbsp;', spacebarStatus: '',
enterText: 'Enter', enterStatus: '',
tabText: '→', tabStatus: '',
alphabeticLayout: $.keypad.qwertzAlphabetic,
fullLayout: $.keypad.qwertzLayout,
isAlphabetic: $.keypad.isAlphabetic,
isNumeric: $.keypad.isNumeric,
toUpper: $.keypad.toUpper,
isRTL: false};
$.keypad.setDefaults($.keypad.regional['de']);
})(jQuery);