Update jquery.ime and jquery.uls from upstream
jquery.ime: * Add keyboards for Dendi (ddn) and Ibibio (ibb). * Fix several keys on Kashmiri Arabic keyboard. Updating tocbb82f7ebejquery.uls * Add Dendi (ddn) and Ibibio (ibb). Updating tob2ed2ffc02Change-Id: I0f8e06fb5de4fe4c56c34bccc6be2474bb8e248a Change-Id: I4186c70d6e7fb600a65e0a4c8c0cbb7bd9039bc7
This commit is contained in:
committed by
KartikMistry
parent
5a1bf42d31
commit
0c3080135f
27
lib/jquery.ime/rules/ddn/ddn-tilde.js
Normal file
27
lib/jquery.ime/rules/ddn/ddn-tilde.js
Normal file
@@ -0,0 +1,27 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var ddnTilde = {
|
||||
id: 'ddn-tilde',
|
||||
name: 'ddn-tilde',
|
||||
description: 'Dendi input keyboard',
|
||||
date: '2023-04-03',
|
||||
URL: 'https://github.com/wikimedia/jquery.ime',
|
||||
author: 'Amir E. Aharoni',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
patterns: [
|
||||
[ '~E', 'Ɛ' ],
|
||||
[ '~e', 'ɛ' ],
|
||||
[ '~N', 'Ŋ' ],
|
||||
[ '~n', 'ŋ' ],
|
||||
[ '~O', 'Ɔ' ],
|
||||
[ '~o', 'ɔ' ],
|
||||
[ '~\\\\', '\u0300' ], // Combining grave accent
|
||||
[ '~/', '\u0301' ], // Combining acute accent
|
||||
[ '~-', '\u0304' ] // Combining macron
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( ddnTilde );
|
||||
}( jQuery ) );
|
||||
Reference in New Issue
Block a user