~pexego/openobject-addons/6.1-pexego-sale_commission

« back to all changes in this revision

Viewing changes to django_pos/static/js/jquery.keypad-es.js

  • Committer: Santi Argueso (Pexego)
  • Date: 2013-02-06 17:03:36 UTC
  • mfrom: (10.1.6 pexego-addons_6.1)
  • Revision ID: santiago@pexego.es-20130206170336-ml430s6p9jknun0j
[MERGE]

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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: 'Borrar', 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
        comaText: ',', comaStatus: ',',
 
19
                isRTL: false};
 
20
        $.keypad.setDefaults($.keypad.regional['es']);
 
21
})(jQuery);