jquery.ime: * Update Batak keyboard. * Add new Javanese and Sundanese keyboards. Updating to07ab0cae9ajquery.uls: * Update language-data: Add Pintupi-Luritja (piu) and some internal data files cleanup. * Code cleanup in lcd. Updating to:95e50bb37bChange-Id: Ifc900e6dfd2bc2a5dfd12243a7c8bc662e99a711
36 lines
749 B
JavaScript
36 lines
749 B
JavaScript
( function ( $ ) {
|
|
'use strict';
|
|
|
|
var jvKeyboard = {
|
|
id: 'jv-keyboard',
|
|
name: 'Jawa Latin extended keyboard',
|
|
description: 'Javanese keyboard that include several accented letters',
|
|
date: '2023-06-06',
|
|
URL: 'https://github.com/wikimedia/jquery.ime',
|
|
author: 'Benny Lin',
|
|
license: 'GPLv3',
|
|
version: '1',
|
|
patterns: [
|
|
[ '~E', 'É' ],
|
|
[ '~e', 'é' ],
|
|
[ '`E', 'È' ],
|
|
[ '`e', 'è' ],
|
|
[ '\\^E', 'Ê' ],
|
|
[ '\\^e', 'ê' ],
|
|
[ '\\^A', 'Å' ],
|
|
[ '\\^a', 'å' ],
|
|
[ '~A', 'Å' ],
|
|
[ '~a', 'å' ],
|
|
[ '~D', 'Ḍ' ],
|
|
[ '~d', 'ḍ' ],
|
|
[ '~T', 'Ṭ' ],
|
|
[ '~t', 'ṭ' ],
|
|
[ '.D', 'Ḍ' ],
|
|
[ '.d', 'ḍ' ],
|
|
[ '.T', 'Ṭ' ],
|
|
[ '.t', 'ṭ' ]
|
|
]
|
|
};
|
|
|
|
$.ime.register( jvKeyboard );
|
|
}( jQuery ) ); |