This commit is contained in:
Xes
2025-08-14 22:44:47 +02:00
parent 8ce45119b6
commit 791cb748ab
39112 changed files with 975901 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
/* Spanish keyboard layouts
* contains layouts: 'spanish-qwerty' and 'spanish-qwerty-sp'
*
* To use:
* Point to this js file into your page header: <script src="layouts/spanish.js" type="text/javascript"></script>
* Initialize the keyboard using: $('input').keyboard({ layout: 'spanish-qwerty' });
*
* license for this file: WTFPL, unless the source layout site has a problem with me using them as a reference
*
* Spanish layouts by Paco Alcantara (https://github.com/pacoalcantara)
* Based on: http://ascii-table.com/keyboard.php/171 and http://ascii-table.com/keyboard.php/071-2
*/
jQuery.keyboard.layouts['spanish-qwerty'] = {
'name' : 'spanish-qwerty',
'lang' : ['es'],
'normal' : [
"\u007c 1 2 3 4 5 6 7 8 9 0 \' \u00bf {bksp}",
"{tab} q w e r t y u i o p \u0301 +",
"a s d f g h j k l \u00f1 \u007b \u007d {enter}",
"{shift} < z x c v b n m , . - {shift}",
"{accept} {alt} {space} {alt} {cancel}"
],
'shift' : [
"\u00b0 ! \" # $ % & / ( ) = ? \u00a1 {bksp}",
"{tab} Q W E R T Y U I O P \u0308 *",
"A S D F G H J K L \u00d1 \u005b \u005d {enter}",
"{shift} > Z X C V B N M ; : _ {shift}",
"{accept} {alt} {space} {alt} {cancel}"
],
'alt' : [
"\u00ac 1 2 3 4 5 6 7 8 9 0 \\ \u00bf {bksp}",
"{tab} @ w e r t y u i o p \u0301 \u0303",
"a s d f g h j k l \u00f1 \u0302 \u0300 {enter}",
"{shift} < z x c v b n m , . - {shift}",
"{accept} {alt} {space} {alt} {cancel}"
],
'alt-shift' : [
"\u00b0 ! \" # $ % & / ( ) = ? \u00a1 {bksp}",
"{tab} Q W E R T Y U I O P \u0308 *",
"A S D F G H J K L \u00d1 \u005b \u005d {enter}",
"{shift} > Z X C V B N M ; : _ {shift}",
"{accept} {alt} {space} {alt} {cancel}"
]
};
jQuery.keyboard.layouts['spanish-qwerty-sp'] = {
'name' : 'spanish-qwerty-sp',
'lang' : ['es'],
'normal' : [
"\u00ba 1 2 3 4 5 6 7 8 9 0 \' \u00a1 {bksp}",
"{tab} q w e r t y u i o p \u0300 +",
"a s d f g h j k l \u00f1 \u0301 \u00e7 {enter}",
"{shift} < z x c v b n m , . - {shift}",
"{accept} {alt} {space} {alt} {cancel}"
],
'shift' : [
"\u00aa ! \" \u00b7 $ % & / ( ) = ? \u00bf {bksp}",
"{tab} Q W E R T Y U I O P \u005e *",
"A S D F G H J K L \u00d1 \u0308 \u00c7 {enter}",
"{shift} > Z X C V B N M ; : _ {shift}",
"{accept} {alt} {space} {alt} {cancel}"
],
'alt' : [
"\\ \u007c @ # 4 5 \u00ac 7 8 9 0 \u0027 \u00a1 {bksp}",
"{tab} q w e r t y u i o p [ ]",
"a s d f g h j k l \u00f1 { } {enter}",
"{shift} \u007c z x c v b n m , . - {shift}",
"{accept} {alt} {space} {alt} {cancel}"
],
'alt-shift' : [
"\u00aa ! \" \u00b7 $ % & / ( ) = ? \u00bf {bksp}",
"{tab} Q W E R T Y U I O P [ ]",
"A S D F G H J K L \u00d1 { } {enter}",
"{shift} > Z X C V B N M ; : _ {shift}",
"{accept} {alt} {space} {alt} {cancel}"
]
};