Update jquery.ime and jquery.uls from upstream

jquery.ime:
* Update Batak keyboard.
* Add new Javanese and Sundanese keyboards.
Updating to
07ab0cae9a

jquery.uls:
* Update language-data: Add Pintupi-Luritja (piu)
  and some internal data files cleanup.
* Code cleanup in lcd.
Updating to:
95e50bb37b

Change-Id: Ifc900e6dfd2bc2a5dfd12243a7c8bc662e99a711
This commit is contained in:
Amir E. Aharoni
2023-07-24 11:14:19 +03:00
parent 7c6986ccb5
commit 04a8b6457a
7 changed files with 384 additions and 317 deletions

View File

@@ -7,8 +7,8 @@
description: 'QWERTY-based Batak Toba transliteration',
date: '2014-04-20',
URL: 'http://evertype.com/fonts/batak/',
author: 'design by Michael Everson, implementation by Amir E. Aharoni',
version: '1.0',
author: 'design by Michael Everson, implementation by Amir E. Aharoni and Benny Lin',
version: '1.1',
patterns: [
[ 'q', 'ᯥ' ],
[ 'w', 'ᯋ' ],
@@ -52,38 +52,29 @@
[ 'A', 'ᯁ' ],
[ 'S', 'ᯙ' ],
[ 'D', 'ᯩ' ],
[ 'F', '᯳' ],
[ 'G', 'ᯏ' ],
[ 'H', 'ᯃ' ],
[ 'J', 'ᯄ' ],
[ 'K', 'ᯱ' ],
[ 'L', 'ᯟ' ],
[ 'Z', 'ᯚ' ],
[ 'X', 'ᯰ' ],
[ 'C', 'ᯠ' ],
[ 'V', '᯦' ],
[ 'B', 'ᯆ' ],
[ 'N', 'ᯊ' ],
[ 'M', 'ᯕ' ],
[ '`', 'ᯠ' ],
[ '=', 'ᯱ' ],
[ '\\+', '᯦' ],
[ '-', '' ],
[ '_', 'ᯩ' ],
[ 'B', 'ᯆ' ]
],
patterns_x: [
[ '4', '᯼' ],
[ '5', '᯽' ],
[ '6', '᯾' ],
[ '7', '᯿' ],
[ 'w', 'ᯍ' ],
[ '`', '`' ]
[ '7', '᯿' ]
]
};
$.ime.register( tobaKbd );
}( jQuery ) );
}( jQuery ) );

View File

@@ -0,0 +1,36 @@
( 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 ) );

View File

@@ -0,0 +1,20 @@
( function ( $ ) {
'use strict';
var suKeyboard = {
id: 'su-keyboard',
name: 'su-keyboard',
description: 'Sundanese keyboard',
date: '2023-05-07',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Pijri Paijar',
license: 'GPLv3',
version: '1',
patterns: [
[ '~E', 'É' ],
[ '~e', 'é' ]
]
};
$.ime.register( suKeyboard );
}( jQuery ) );