Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/vec/vec-GVU.js
Amire80 07ba9a1191 Major update of jquery.ime from upstream
Merged a lot of older and newer patches,
adding numerous new input methods:

* Tibetan Sambhota
* Fulfulde Alt
* Lushotseed
* Mongolian Todo, Todo-Ali, Traditional, Tradional-Ali, Phagspa
* Manchu, Manchu Ali
* Burmese mm3
* Piedmontese
* Tarandine
* Xibe
* Venetian
* Wolof

Also, updates for:
* Oriya Transliteration
* Tamil 99

Updating to
b7a96d4737

Change-Id: I092ff1b8aef70f8274829f3794090738826d1a8a
2017-06-06 15:32:09 +03:00

33 lines
611 B
JavaScript

( function ( $ ) {
'use strict';
var vec = {
id: 'vec-GVU',
name: 'Vèneto GVU',
description: 'Venetian input method.',
date: '2013-08-06',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Vec.wiki community',
license: 'GPLv3',
version: '1.0',
patterns: [
[ 'dh', 'đ' ],
[ 'lh', 'ƚ' ],
[ 'òò', 'ó' ],
[ 'zh', 'ẑ' ],
[ 'đh', 'dh' ],
[ 'ƚh', 'lh' ],
[ 'ẑh', 'zh' ],
[ 'Dh', 'Đ' ],
[ 'Lh', 'Ƚ' ],
[ 'Òò', 'Ó' ],
[ 'Zh', 'Ẑ' ],
[ 'Đh', 'Dh' ],
[ 'Ƚh', 'Lh' ],
[ 'Ẑh', 'Zh' ]
]
};
$.ime.register( vec );
}( jQuery ) );