Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/uk/uk-kbd.js
Santhosh Thottingal 8dfc3976b1 Update jquery.ime from upstream
Version: 0.1.0+20130619
* Make system as default ime for all languages
* Update uk keyboard

Bug: 49783
Change-Id: I534b13e50f9d95673f66639f1ccef90d7fa8304c
2013-06-19 09:58:55 +00:00

102 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 ukKbd = {
id: 'uk-kbd',
name: 'Українська',
description: 'Ukrainian kbd keyboard layout',
date: '2013-02-12',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Parag Nemade',
license: 'GPLv3',
version: '1.0',
patterns: [
['`', 'ґ'],
['q', 'й'],
['w', 'ц'],
['e', 'у'],
['r', 'к'],
['t', 'е'],
['y', 'н'],
['u', 'г'],
['i', 'ш'],
['o', 'щ'],
['p', 'з'],
['\\[', 'х'],
['\\]', 'ї'],
['a', 'ф'],
['s', 'і'],
['d', 'в'],
['f', 'а'],
['g', 'п'],
['h', 'р'],
['j', 'о'],
['k', 'л'],
['l', 'д'],
[';', 'ж'],
['\'', 'є'],
['\\\\', '\\'],
['z', 'я'],
['x', 'ч'],
['c', 'с'],
['v', 'м'],
['b', 'и'],
['n', 'т'],
['m', 'ь'],
[',', 'б'],
['\\.', 'ю'],
['/', '.'],
['\\!', '!'],
['\\@', '"'],
['\\#', '№'],
['\\$', ';'],
['\\%', '%'],
['\\^', ':'],
['\\&', '?'],
['\\*', '*'],
['\\(', '('],
['\\)', ')'],
['\\_', '_'],
['\\+', '+'],
['\\~', 'Ґ'],
['Q', 'Й'],
['W', 'Ц'],
['E', 'У'],
['R', 'К'],
['T', 'Е'],
['Y', 'Н'],
['U', 'Г'],
['I', 'Ш'],
['O', 'Щ'],
['P', 'З'],
['\\{', 'Х'],
['\\}', 'Ї'],
['A', 'Ф'],
['S', 'І'],
['D', 'В'],
['F', 'А'],
['G', 'П'],
['H', 'Р'],
['J', 'О'],
['K', 'Л'],
['L', 'Д'],
[':', 'Ж'],
['\"', 'Є'],
['\\|', '|'],
['Z', 'Я'],
['X', 'Ч'],
['C', 'С'],
['V', 'М'],
['B', 'И'],
['N', 'Т'],
['M', 'Ь'],
['\\<', 'Б'],
['\\>', 'Ю'],
['\\?', ',']
]
};
$.ime.register( ukKbd );
}( jQuery ) );