Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/vec/vec-GVU.js
Santhosh Thottingal 28044a6f14 Update jquery.ime to 7572e2
Documentation, code clean ups and build updates

Change-Id: I7ce3d75345b76f2a7693b6143e013b6a8202e093
2016-04-12 11:52:46 +05:30

33 lines
612 B
JavaScript

( function ( $ ) {
'use strict';
var vec = {
id: 'vec-GVU',
name: 'Venetian 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 ) );