source: trunk/prototype/plugins/jquery.keyboard/jquery.keypad-es.js @ 7843

Revision 7843, 931 bytes checked in by alexandrecorreia, 11 years ago (diff)

Ticket #3335 - Modificado o template news para a utilização de um plugin para slider

  • Property svn:executable set to *
Line 
1/* http://keith-wood.name/keypad.html
2   Spanish initialisation for the jQuery keypad extension
3   Written by Cristhian Benitez (cbenitez@gmail.com). */
4(function($) { // hide the namespace
5        $.keypad.regional['es'] = {
6                buttonText: '...', buttonStatus: 'Abrir el teclado',
7                closeText: 'Cerrar', closeStatus: 'Cerrar el teclado',
8                clearText: 'Limpiar', clearStatus: 'Eliminar todo el texto',
9                backText: 'Volver', backStatus: 'Borrar el caracter anterior',
10                shiftText: 'Shift', shiftStatus: 'Cambiar mayusculas/minusculas',
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['es']);
21})(jQuery);
Note: See TracBrowser for help on using the repository browser.