Update jquery.ime
Add keyboard for Baoulé. Change-Id: I9e0d0f1501ca7b0a8b12ec799169a4bb821ae483
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/*! jquery.ime - v0.2.0+20200407
|
||||
/*! jquery.ime - v0.2.0+20200614
|
||||
* 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 ( $ ) {
|
||||
'use strict';
|
||||
|
||||
@@ -1762,6 +1762,10 @@
|
||||
name: 'Batak QWERTY',
|
||||
source: 'rules/bbc/batak-qwerty.js'
|
||||
},
|
||||
'bci-tilde': {
|
||||
name: 'Baoulé tilde keyboard',
|
||||
source: 'rules/bci/bci-tilde.js'
|
||||
},
|
||||
'be-kbd': {
|
||||
name: 'Стандартная',
|
||||
source: 'rules/be/be-kbd.js'
|
||||
@@ -2584,6 +2588,10 @@
|
||||
autonym: 'Batak',
|
||||
inputmethods: [ 'batak-qwerty' ]
|
||||
},
|
||||
bci: {
|
||||
autonym: 'wawle',
|
||||
inputmethods: [ 'bci-tilde' ]
|
||||
},
|
||||
be: {
|
||||
autonym: 'беларуская',
|
||||
inputmethods: [ 'be-transliteration', 'be-latin', 'be-kbd' ]
|
||||
|
||||
28
lib/jquery.ime/rules/bci/bci-tilde.js
Normal file
28
lib/jquery.ime/rules/bci/bci-tilde.js
Normal 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 ) );
|
||||
Reference in New Issue
Block a user