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 to
cbb82f7ebe

jquery.uls
* Add Dendi (ddn) and Ibibio (ibb).
Updating to
b2ed2ffc02
Change-Id: I0f8e06fb5de4fe4c56c34bccc6be2474bb8e248a

Change-Id: I4186c70d6e7fb600a65e0a4c8c0cbb7bd9039bc7
This commit is contained in:
Amir E. Aharoni
2023-04-03 19:58:56 +03:00
committed by KartikMistry
parent 5a1bf42d31
commit 0c3080135f
5 changed files with 100 additions and 7 deletions

View File

@@ -0,0 +1,35 @@
( function ( $ ) {
'use strict';
var ibbTilde = {
id: 'ibb-tilde',
name: 'ibb-tilde',
description: 'Ibibio input keyboard',
date: '2023-04-03',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~A', 'Ʌ' ],
[ '~a', 'ʌ' ],
[ '~E', 'Ǝ' ],
[ '~e', 'ǝ' ],
[ '~I', 'Ị' ],
[ '~i', 'ị' ],
[ '~N', 'Ñ' ],
[ '~n', 'ñ' ],
[ '~O', 'Ọ' ],
[ '~o', 'ọ' ],
[ '~U', 'Ụ' ],
[ '~u', 'ụ' ],
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~\\^', '\u0302' ], // Combining circumflex accent
[ '~-', '\u0304' ], // Combining macron
[ '~v', '\u030C' ] // Combining caron
]
};
$.ime.register( ibbTilde );
}( jQuery ) );