Update jquery.ime from upstream
jquery.ime: * Add keyboards for Acholi (ach), Lango (laj), Pontic (pnt), and Click languages—initially Khoekhoe (naq), but more may be added in the future. Change-Id: I38ce6f6f60f4069b20792e8e8cb8627b4a63144e
This commit is contained in:
22
lib/jquery.ime/rules/ach/ach-tilde.js
Normal file
22
lib/jquery.ime/rules/ach/ach-tilde.js
Normal file
@@ -0,0 +1,22 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var achTilde = {
|
||||
id: 'ach-tilde',
|
||||
name: 'ach-tilde',
|
||||
description: 'Acholi tilde keyboard',
|
||||
date: '2024-09-30',
|
||||
URL: 'https://github.com/wikimedia/jquery.ime',
|
||||
author: 'Amir E. Aharoni',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
patterns: [
|
||||
[ '~N', 'Ŋ' ],
|
||||
[ '~n', 'ŋ' ],
|
||||
[ '~/', '\u0301' ], // Combining acute
|
||||
[ '~\\\\', '\u0300' ] // Combining grave
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( achTilde );
|
||||
}( jQuery ) );
|
||||
Reference in New Issue
Block a user