Update jquery.ime and jquery.uls from upstream

jquery.ime:
* Add Setswana tilde.
Updating to
d28dc611bd

jquery.uls:
* Add Kalanga (kck), Wolaytta (wal), Yonaguni (yoi)
* Fix capitalization for Bunun (bnn).
Updating to
677d9c5ae2

Change-Id: Id5fb37403a1c5f6747944b968d3fc8655d9e33c7
This commit is contained in:
Amir E. Aharoni
2022-07-20 10:15:09 +03:00
parent 99b67b479e
commit f3465b13ef
6 changed files with 90 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
/*! jquery.ime - v0.2.0+20220627
/*! jquery.ime - v0.2.0+20220720
* https://github.com/wikimedia/jquery.ime
* Copyright (c) 2022 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */
( function ( $ ) {
@@ -2488,6 +2488,10 @@
name: 'ትግረ',
source: 'rules/tig/tig-geezim.js'
},
'tn-tilde': {
name: 'Setswana tilde',
source: 'rules/tn/tn-tilde.js'
},
'tum-tilde': {
name: 'ChiTumbuka tilde',
source: 'rules/tum/tum-tilde.js'
@@ -3100,6 +3104,10 @@
autonym: 'цӀаӀхна миз',
inputmethods: [ 'cyrl-palochka' ]
},
tn: {
autonym: 'Setswana',
inputmethods: [ 'tn-tilde' ]
},
tum: {
autonym: 'ChiTumbuka',
inputmethods: [ 'tum-tilde' ]

View File

@@ -0,0 +1,24 @@
( function ( $ ) {
'use strict';
var tnTilde = {
id: 'tn-tilde',
name: 'tn-tilde',
description: 'Setswana input keyboard',
date: '2022-07-19',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~S', 'Š' ],
[ '~s', 'š' ],
[ '~E', 'Ê' ],
[ '~e', 'ê' ],
[ '~O', 'Ô' ],
[ '~o', 'ô' ]
]
};
$.ime.register( tnTilde );
}( jQuery ) );