Changes:
* New tilde-based layouts for several languages of Africa:
Kabyle, Kabiye, Kikuyu, Luganda, Lingala, Malagasy,
Northern Sotho, Koyraboro Senni, Sango, Sotho, Venda
* Latin Pinyin transliteration keyboard
https://github.com/wikimedia/jquery.ime/pull/545
* CSS and JS cleanup, to switch to stylelint and eslint.
Updating to
22407cf992
Bug: T212637
Change-Id: I167e572a6cc0f7c1c727e87e8ff361d88f87b40f
39 lines
742 B
JavaScript
39 lines
742 B
JavaScript
( function ( $ ) {
|
|
'use strict';
|
|
|
|
var pms = {
|
|
id: 'pms',
|
|
name: 'Piemontèis',
|
|
description: 'Piedmontese input method.',
|
|
date: '2014-02-27',
|
|
URL: 'http://github.com/wikimedia/jquery.ime',
|
|
author: 'pms.wiki community',
|
|
license: 'GPLv3',
|
|
version: '1.0',
|
|
contextLength: 1,
|
|
maxKeyLength: 1,
|
|
patterns: [
|
|
[ ':e', 'ë' ],
|
|
[ ',o', 'ó' ],
|
|
[ '\\\\A', 'À' ],
|
|
[ '\\\\E', 'È' ],
|
|
[ '\\\\I', 'Ì' ],
|
|
[ '\\\\O', 'Ò' ],
|
|
[ '\\\\U', 'Ù' ],
|
|
[ ',E', 'É' ],
|
|
[ ':E', 'Ë' ],
|
|
[ ',O', 'Ó' ],
|
|
[ '\\^g', 'ĝ' ],
|
|
[ '\\^l', 'l̂' ],
|
|
[ '\\^r', 'r̂' ],
|
|
[ ':a', 'ä' ],
|
|
[ '\\^G', 'Ĝ' ],
|
|
[ '\\^L', 'L̂' ],
|
|
[ '\\^R', 'R̂' ],
|
|
[ ':A', 'Ä' ]
|
|
]
|
|
};
|
|
|
|
$.ime.register( pms );
|
|
}( jQuery ) );
|