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:
Amir E. Aharoni
2024-10-01 15:50:27 -04:00
committed by Amire80
parent 0978032c73
commit 3fe6ad6661
5 changed files with 111 additions and 14 deletions

View 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 ) );