Update jquery.ime

Add keyboard for Baoulé.

Change-Id: I9e0d0f1501ca7b0a8b12ec799169a4bb821ae483
This commit is contained in:
Amir Aharoni
2020-06-14 15:51:50 +03:00
parent afebb45eb9
commit 420bf7a660
2 changed files with 38 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
/*! jquery.ime - v0.2.0+20200407 /*! jquery.ime - v0.2.0+20200614
* https://github.com/wikimedia/jquery.ime * https://github.com/wikimedia/jquery.ime
* Copyright (c) 2020 Santhosh Thottingal; License: (GPL-2.0+ OR MIT) */ * Copyright (c) 2020 Santhosh Thottingal; License: (GPL-2.0-or-later OR MIT) */
( function ( $ ) { ( function ( $ ) {
'use strict'; 'use strict';
@@ -1762,6 +1762,10 @@
name: 'Batak QWERTY', name: 'Batak QWERTY',
source: 'rules/bbc/batak-qwerty.js' source: 'rules/bbc/batak-qwerty.js'
}, },
'bci-tilde': {
name: 'Baoulé tilde keyboard',
source: 'rules/bci/bci-tilde.js'
},
'be-kbd': { 'be-kbd': {
name: 'Стандартная', name: 'Стандартная',
source: 'rules/be/be-kbd.js' source: 'rules/be/be-kbd.js'
@@ -2584,6 +2588,10 @@
autonym: 'Batak', autonym: 'Batak',
inputmethods: [ 'batak-qwerty' ] inputmethods: [ 'batak-qwerty' ]
}, },
bci: {
autonym: 'wawle',
inputmethods: [ 'bci-tilde' ]
},
be: { be: {
autonym: 'беларуская', autonym: 'беларуская',
inputmethods: [ 'be-transliteration', 'be-latin', 'be-kbd' ] inputmethods: [ 'be-transliteration', 'be-latin', 'be-kbd' ]

View File

@@ -0,0 +1,28 @@
( function ( $ ) {
'use strict';
var bciTilde = {
id: 'bci-tilde',
name: 'bci-tilde',
description: 'Baoulé tilde keyboard',
date: '2020-06-06',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~N', 'Ɲ' ],
[ '~n', 'ɲ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~/', '\u0301' ], // Combining acute
[ '~\\\\', '\u0300' ], // Combining grave
[ '~\\^', '\u0302' ], // Combining caron
[ '~\\{', '\u0303' ] // Combining tilde
]
};
$.ime.register( bciTilde );
}( jQuery ) );