Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/sk/sk-kbd.js
Amir E. Aharoni 95c23085ff Update jquery.ime from upstream
Change-Id: I1eabfcda79be85c8c28c11472ddc17b2e90c061d
2013-07-15 15:59:29 +03:00

107 lines
1.7 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.

( function ( $ ) {
'use strict';
var skKbd = {
id: 'sk-kbd',
name: 'Slovak kbd',
description: 'Slovak kbd keyboard layout',
date: '2013-06-26',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Parag Nemade',
license: 'GPLv3',
version: '1.1',
patterns: [
['1', '+'],
['2', 'ľ'],
['3', 'š'],
['4', 'č'],
['5', 'ť'],
['6', 'ž'],
['7', 'ý'],
['8', 'á'],
['9', 'í'],
['0', 'é'],
['!', '1'],
['@', '2'],
['#', '3'],
['\\$', '4'],
['%', '5'],
['\\^', '6'],
['&', '7'],
['\\*', '8'],
['\\(', '9'],
['\\)', '0'],
['-', '='],
['_', '%'],
['=', '´'],
['\\+', 'ˇ'],
['\\[', 'ú'],
['\\{', '/'],
['\\]', 'ä'],
['\\}', '('],
['\\\\', 'ň'],
['\\|', ')'],
[';', 'ô'],
[':', '\"'],
['\'', '§'],
['\"', '!'],
['\\<', '?'],
['\\>', ':'],
['/', '-'],
['\\?', '_'],
['`', ';'],
['~', '°'],
['´a', 'á'],
['´A', 'Á'],
['´e', 'é'],
['´E', 'É'],
['´i', 'í'],
['´I', 'Í'],
['´l', 'ĺ'],
['´L', 'Ĺ'],
['´o', 'ó'],
['´O', 'Ó'],
['´r', 'ŕ'],
['´R', 'Ŕ'],
['´u', 'ú'],
['´U', 'Ú'],
['´y', 'ý'],
['´Y', 'Ý'],
['¨a', 'ä'],
['¨A', 'Ä'],
['\\^o', 'ô'],
['\\^O', 'Ô'],
['ˇc', 'č'],
['ˇC', 'Č'],
['ˇd', 'ď'],
['ˇD', 'Ď'],
['ˇl', 'ľ'],
['ˇL', 'Ľ'],
['ˇn', 'ň'],
['ˇN', 'Ň'],
['ˇs', 'š'],
['ˇS', 'Š'],
['ˇt', 'ť'],
['ˇT', 'Ť'],
['ˇz', 'ž'],
['ˇZ', 'Ž'],
// It's QWERTZ
['y', 'z'],
['z', 'y'],
['Y', 'Z'],
['Z', 'Y']
],
patterns_x: [
['3', '^'],
['=', '¨']
]
};
$.ime.register( skKbd );
}( jQuery ) );