Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/udm/udm-alt.js
Amir E. Aharoni e018a52498 Update jquery.ime from upstream
Change-Id: I904dfd1e089e92deaa2da50510d0975a8e317a94
2013-08-22 15:36:02 +03:00

41 lines
723 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 udmAlt = {
id: 'udm-alt',
name: 'Удмурт ALT',
description: 'Удмурт ALT',
date: '2013-03-17',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Amir (Алексей) Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
['ц', 'ӵ'],
['Ц', 'Ӵ'],
['щ', 'ӥ'],
['Щ', 'Ӥ'],
['х', 'ӟ'],
['Х', 'Ӟ'],
['ф', 'ӝ'],
['Ф', 'Ӝ']
],
patterns_x: [
['ё', 'ӧ'],
['Ё', 'Ӧ'],
// Allow typing the Russian letters using Alt
['ц', 'ц'],
['Ц', 'Ц'],
['щ', 'щ'],
['Щ', 'Щ'],
['х', 'х'],
['Х', 'Х'],
['ф', 'ф'],
['Ф', 'Ф']
]
};
$.ime.register( udmAlt );
}( jQuery ) );