Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/hr/hr-kbd.js
Santhosh Thottingal 000d04c14e Update jquery.ime from upstream
Change-Id: Iac3c14f82c982396c4bcecfb3c5cc97df82c41cb
Version: 0.1.0+20130531
2013-05-31 16:43:46 +05:30

62 lines
1.0 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 hrKbd = {
id: 'hr-kbd',
name: 'Croatian kbd',
description: 'Croatian keyboard layout',
date: '2013-02-11',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Parag Nemade',
license: 'GPLv3',
version: '1.0',
patterns: [
['¸c', 'ç'],
['¸C', 'Ç'],
['¸s', 'ş'],
['¸S', 'Ş'],
['¨a', 'ä'],
['¨A', 'Ä'],
['¨e', 'ë'],
['¨E', 'Ë'],
['¨o', 'ö'],
['¨O', 'Ö'],
['¨u', 'ü'],
['¨U', 'Ü'],
['\\@', '\"'],
['\\^', '&'],
['\\&', '/'],
['\\*', '('],
['\\(', ')'],
['\\)', '='],
['\\-', '\''],
['\\_', '?'],
['\\=', '+'],
['\\+', '*'],
['\\`', '¸'],
['\\~', '¨'],
['y', 'z'],
['Y', 'Z'],
['\\[', 'š'],
['\\{', 'Š'],
['\\]', 'đ'],
['\\}', 'Đ'],
[';', 'č'],
[':', 'Č'],
['\'', 'ć'],
['\"', 'Ć'],
['\\\\', 'ž'],
['\\|', 'Ž'],
['z', 'y'],
['Z', 'Y'],
['\\<', ';'],
['\\>', ':'],
['/', '-'],
['\\?', '_']
]
};
$.ime.register( hrKbd );
}( jQuery ) );