Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/ka/ka-kbd.js
Santhosh Thottingal 7d9b81fb9d Update jquery.ime from upstream
* Adds many input methods

Change-Id: I2f3576948416e7d2bf2f935e609fe50977e7e9d9
2013-02-17 09:44:26 +00:00

58 lines
1019 B
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 kaKbd = {
id: 'ka-kbd',
name: 'Georgian kbd',
description: 'Georgian kbd keyboard layout',
date: '2013-02-12',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Parag Nemade',
license: 'GPLv3',
version: '1.0',
patterns: [
['.k', 'კ'],
['.p', 'პ'],
['+z', 'ჟ'],
['.t', 'ტ'],
['.g', 'ღ'],
['+s', 'შ'],
['.+c', 'ჭ'],
['+c', 'ჩ'],
['.c', 'წ'],
['+j', 'ჯ'],
['1', 'ჴ'],
['ე0', 'ჱ'],
['ო1', 'ჵ'],
['ი1', 'ჲ'],
['a', 'ა'],
['b', 'ბ'],
['g', 'გ'],
['d', 'დ'],
['e', 'ე'],
['v', 'ვ'],
['z', 'ზ'],
['t', 'თ'],
['i', 'ი'],
['l', 'ლ'],
['m', 'მ'],
['n', 'ნ'],
['o', 'ო'],
['r', 'რ'],
['s', 'ს'],
['u', 'უ'],
['p', 'ფ'],
['k', 'ქ'],
['q', ''],
['c', 'ც'],
['j', 'ძ'],
['x', 'ხ'],
['h', 'ჰ'],
['w', 'ჳ'],
['f', 'ჶ']]
};
$.ime.register( kaKbd );
}( jQuery ) );