source: branches/2.5/prototype/plugins/jquery.keyboard/jquery.keypad-nl.js @ 8232

Revision 8232, 959 bytes checked in by douglas, 10 years ago (diff)

Ticket #0000 - Copiadas as alterações do Trunk. Versão final 2.5.1.

  • Property svn:executable set to *
Line 
1/* http://keith-wood.name/keypad.html
2   dutch initialisation for the jQuery keypad extension
3   Written by Michiel Mussies (mail{at}webcrafts.nl) November 2009. */
4(function($) { // hide the namespace
5    $.keypad.regional['nl'] = {
6        buttonText: '...', buttonStatus: 'Open',
7        closeText: 'Sluit', closeStatus: 'Sluit',
8        clearText: 'Wissen', clearStatus: 'Wis alle tekens',
9        backText: 'Terug', backStatus: 'Wis laatste teken',
10        shiftText: 'Shift', shiftStatus: 'Activeer hoofd-/kleine letters',
11                spacebarText: ' ', spacebarStatus: '',
12                enterText: 'Enter', enterStatus: '',
13                tabText: '→', tabStatus: '',
14        alphabeticLayout: $.keypad.qwertyAlphabetic,
15        fullLayout: $.keypad.qwertyLayout,
16        isAlphabetic: $.keypad.isAlphabetic,
17        isNumeric: $.keypad.isNumeric,
18                toUpper: $.keypad.toUpper,
19        isRTL: false};
20    $.keypad.setDefaults($.keypad.regional['nl']);
21})(jQuery);
Note: See TracBrowser for help on using the repository browser.