Update jquery.ime from upstream

* Add input methods for Dagbani and Bambara.

Update to:
d47a617f37

Change-Id: I7107dde813124b41b01d0e94eb4336b7379eb394
This commit is contained in:
Amire80
2017-05-29 22:29:41 +03:00
committed by KartikMistry
parent 411d7834d5
commit 9838760971
3 changed files with 77 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
/*! jquery.ime - v0.1.0+20170509 /*! jquery.ime - v0.1.0+20170529
* https://github.com/wikimedia/jquery.ime * https://github.com/wikimedia/jquery.ime
* Copyright (c) 2017 Santhosh Thottingal; Licensed GPL, MIT */ * Copyright (c) 2017 Santhosh Thottingal; Licensed GPL, MIT */
( function ( $ ) { ( function ( $ ) {
@@ -1754,6 +1754,10 @@
name: 'روچ کپتین بلوچی', name: 'روچ کپتین بلوچی',
source: 'rules/bgn/bgn-kbd.js' source: 'rules/bgn/bgn-kbd.js'
}, },
'bm-alt': {
name: 'Bamanankan Alt',
source: 'rules/bm/bm-alt.js'
},
'bn-avro': { 'bn-avro': {
name: 'অভ্র', name: 'অভ্র',
source: 'rules/bn/bn-avro.js' source: 'rules/bn/bn-avro.js'
@@ -1822,6 +1826,10 @@
name: 'normalformer', name: 'normalformer',
source: 'rules/da/da-normforms.js' source: 'rules/da/da-normforms.js'
}, },
'dag-alt': {
name: 'Dagbani Alt',
source: 'rules/dag/dag-alt.js'
},
'din-fqsx': { 'din-fqsx': {
name: 'Dinka FQSX', name: 'Dinka FQSX',
source: 'rules/din/din-fqsx.js' source: 'rules/din/din-fqsx.js'
@@ -2394,6 +2402,10 @@
autonym: 'भोजपुरी', autonym: 'भोजपुरी',
inputmethods: [ 'hi-transliteration' ] inputmethods: [ 'hi-transliteration' ]
}, },
bm: {
autonym: 'Bamanankan',
inputmethods: [ 'bm-alt' ]
},
bn: { bn: {
autonym: 'বাংলা', autonym: 'বাংলা',
inputmethods: [ 'bn-avro', 'bn-inscript', 'bn-nkb', 'bn-probhat', 'bn-inscript2' ] inputmethods: [ 'bn-avro', 'bn-inscript', 'bn-nkb', 'bn-probhat', 'bn-inscript2' ]
@@ -2426,6 +2438,10 @@
autonym: 'Dansk', autonym: 'Dansk',
inputmethods: [ 'da-normforms' ] inputmethods: [ 'da-normforms' ]
}, },
dag: {
autonym: 'Dagbani',
inputmethods: [ 'dag-alt' ]
},
de: { de: {
autonym: 'Deutsch', autonym: 'Deutsch',
inputmethods: [ 'de-transliteration' ] inputmethods: [ 'de-transliteration' ]

View File

@@ -0,0 +1,32 @@
( function ( $ ) {
'use strict';
var defs = {
id: 'bm-alt',
name: 'Bamanankan Alt',
description: 'Bambara input method with Alt-H/B/E/J/N/O combinations',
date: '2017-05-29',
URL: 'http://www.mali-pense.net/Ressources-pour-la-pratique-du.html',
author: 'Amir E. Aharoni, based on mali-pense.net',
license: 'GPLv3',
version: '1.0',
contextLength: 1,
maxKeyLength: 1,
patterns_x: [
[ 'H', '̂' ], // Combining circumflex
[ 'h', '́' ], // Combining acute accent
[ 'B', '̌' ], // Combining caron
[ 'b', '̀' ], // Combining grave accent
[ 'E', 'Ɛ' ],
[ 'e', 'ɛ' ],
[ 'J', 'Ɲ' ],
[ 'j', 'ɲ' ],
[ 'N', 'Ŋ' ],
[ 'n', 'ŋ' ],
[ 'O', 'Ɔ' ],
[ 'o', 'ɔ' ]
]
};
$.ime.register( defs );
}( jQuery ) );

View File

@@ -0,0 +1,28 @@
( function ( $ ) {
'use strict';
var dagAlt = {
id: 'dag-alt',
name: 'Dagbani Alt',
description: 'Dagbani Alt',
date: '2017-05-27',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns_x: [
[ 'E', 'Ɛ' ],
[ 'e', 'ɛ' ],
[ 'G', 'Ɣ' ],
[ 'g', 'ɣ' ],
[ 'N', 'Ŋ' ],
[ 'n', 'ŋ' ],
[ 'O', 'Ɔ' ],
[ 'o', 'ɔ' ],
[ 'Z', 'Ʒ' ],
[ 'z', 'ʒ' ]
]
};
$.ime.register( dagAlt );
}( jQuery ) );