Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/din/din-fqsx.js
Amire80 1d855d5f6e Update jquery.ime from upstream
* Fixed Arabic keyboard name.
* Renamed Akan keyboard and made it usable also for Twi.
* Added Ga keyboard.
* Added Dinka keyboard.

Updating to
e3a6368df0

Change-Id: I310fb8e33555a704ea23bbbf1ba720b46158323b
2017-05-04 09:33:57 +03:00

50 lines
1019 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

( function ( $ ) {
'use strict';
var defs = {
id: 'din-fqsx',
name: 'FQSX replacement',
description: 'Dinka input method with F, Q, S and X replaced by Ɣ, Ŋ, Ɛ, and Ɔ',
date: '2017-04-26',
URL: 'http://keymanweb.com/#dib,Keyboard_dinkaweb11',
author: 'Amir E. Aharoni, based on Keyman',
license: 'GPLv3',
version: '1.0',
contextLength: 2,
maxKeyLength: 2,
patterns: [
[ '\\\\F', 'F' ],
[ '\\\\f', 'f' ],
[ '\\\\Q', 'Q' ],
[ '\\\\q', 'q' ],
[ '\\\\S', 'S' ],
[ '\\\\s', 's' ],
[ '\\\\X', 'X' ],
[ '\\\\x', 'x' ],
[ '\\\\;', ';' ],
[ 'A;', 'Ä' ],
[ 'a;', 'ä' ],
[ 'E;', 'Ë' ],
[ 'e;', 'ë' ],
[ 'Ɛ;', 'Ɛ̈' ],
[ 'ɛ;', 'ɛ̈' ],
[ 'I;', 'Ï' ],
[ 'i;', 'ï' ],
[ 'O;', 'Ö' ],
[ 'o;', 'ö' ],
[ 'Ɔ;', 'Ɔ̈' ],
[ 'ɔ;', 'ɔ̈' ],
[ 'F', 'Ɣ' ],
[ 'f', 'ɣ' ],
[ 'Q', 'Ŋ' ],
[ 'q', 'ŋ' ],
[ 'S', 'Ɛ' ],
[ 's', 'ɛ' ],
[ 'X', 'Ɔ' ],
[ 'x', 'ɔ' ]
],
};
$.ime.register( defs );
}( jQuery ) );