jenkins-bot has submitted this change and it was merged.

Change subject: Update jquery.ime to 839fa42
......................................................................


Update jquery.ime to 839fa42

Changes:
* Fix bug T102455 in Punjabi.
* Add Akan language keyboard.

Bug: T102455
Change-Id: I144e1cde2bb2bc7fa38a7620ef621f7ec0a32285
---
M lib/jquery.ime/jquery.ime.js
A lib/jquery.ime/rules/ak/ak-qx.js
M lib/jquery.ime/rules/pa/pa-phonetic.js
3 files changed, 36 insertions(+), 4 deletions(-)

Approvals:
  Nikerabbit: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/lib/jquery.ime/jquery.ime.js b/lib/jquery.ime/jquery.ime.js
index 433d75d..cacbaf7 100644
--- a/lib/jquery.ime/jquery.ime.js
+++ b/lib/jquery.ime/jquery.ime.js
@@ -1,4 +1,4 @@
-/*! jquery.ime - v0.1.0+20160620
+/*! jquery.ime - v0.1.0+20160712
 * https://github.com/wikimedia/jquery.ime
 * Copyright (c) 2016 Santhosh Thottingal; Licensed GPL, MIT */
 ( function ( $ ) {
@@ -1690,6 +1690,10 @@
                        name: 'ትራንስልተራትዖን',
                        source: 'rules/am/am-transliteration.js'
                },
+               'ak-qx': {
+                       name: 'Akan - QX replacement',
+                       source: 'rules/ak/ak-qx.js'
+               },
                'ar-kbd': {
                        name: 'أرابيك',
                        source: 'rules/ar/ar-kbd.js'
@@ -2318,6 +2322,10 @@
                        autonym: 'अहिराणी',
                        inputmethods: [ 'mr-transliteration', 'mr-inscript' ]
                },
+               ak: {
+                       autonym: 'Akan',
+                       inputmethods: [ 'ak-qx' ]
+               },
                am: {
                        autonym: 'አማርኛ',
                        inputmethods: [ 'am-transliteration' ]
diff --git a/lib/jquery.ime/rules/ak/ak-qx.js b/lib/jquery.ime/rules/ak/ak-qx.js
new file mode 100644
index 0000000..0c979b5
--- /dev/null
+++ b/lib/jquery.ime/rules/ak/ak-qx.js
@@ -0,0 +1,24 @@
+( function ( $ ) {
+       'use strict';
+
+       var defs = {
+               id: 'ak-qx',
+               name: 'Akan - QX replacement',
+               description: 'Akan input method with Q and X replaced by Ɛ and 
Ɔ',
+               date: '2016-06-23',
+               URL: 'http://www.kasahorow.org/node/260',
+               author: 'Amir E. Aharoni, based on Kasahorow',
+               license: 'GPLv3',
+               version: '1.0',
+               contextLength: 1,
+               maxKeyLength: 1,
+               patterns: [
+                       [ 'Q', 'Ɛ' ],
+                       [ 'q', 'ɛ' ],
+                       [ 'X', 'Ɔ' ],
+                       [ 'x', 'ɔ' ]
+               ]
+       };
+
+       $.ime.register( defs );
+}( jQuery ) );
diff --git a/lib/jquery.ime/rules/pa/pa-phonetic.js 
b/lib/jquery.ime/rules/pa/pa-phonetic.js
index 5b4204f..d183fd7 100644
--- a/lib/jquery.ime/rules/pa/pa-phonetic.js
+++ b/lib/jquery.ime/rules/pa/pa-phonetic.js
@@ -65,8 +65,8 @@
                        [ 'L', 'ਲ਼' ],
                        [ 'l', 'ਲ' ],
                        [ '\\', 'ਙ' ],
-                       [ '\\~', '?ੱ' ],
-                       [ '\\`', '?੍ ' ],
+                       [ '\\~', 'ੱ' ],
+                       [ '\\`', '੍' ],
                        [ 'Z', 'ਗ਼' ],
                        [ 'z', 'ਜ਼' ],
                        [ 'X', 'ਯ' ],
@@ -83,7 +83,7 @@
                        [ 'm', 'ਮ' ],
                        [ '\\<', 'ਖ਼' ],
                        [ '\\>', 'ੴ' ],
-                       [ '\\.', '?਼' ],
+                       [ '\\.', '।' ],
                        [ '\\?', '?' ],
                        [ '\\/', 'ਞ' ],
                        [ '%', '੫' ],

-- 
To view, visit https://gerrit.wikimedia.org/r/298425
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I144e1cde2bb2bc7fa38a7620ef621f7ec0a32285
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/extensions/UniversalLanguageSelector
Gerrit-Branch: master
Gerrit-Owner: Amire80 <[email protected]>
Gerrit-Reviewer: KartikMistry <[email protected]>
Gerrit-Reviewer: Nikerabbit <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to