Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/mul-cm/mul-cm.js
Amir E. Aharoni 5ed3c44512 Update jquery.ime and jquery.uls from upstream
ime:
* Add keyboards for Bura (bwr) and Kanuri (kr)
* Change internal names for mul-cm and mul-bf.
Updating to
c2086d2a83

uls:
* For language links, use full space in <li> elements
  (resolves bug T308688)
* language-data update: add bwr and kr, change kr autonym,
  remove tg-cyrl from Pakistan.
Updating to:
9584756187

Bug: T308688
Change-Id: I58badc067e9789173103378f7eaf38189315df70
2022-06-13 10:38:35 +03:00

66 lines
1.5 KiB
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 mulCm = {
id: 'mul-cm',
name: 'Cameroon Languages tilde',
description: 'General Alphabet of Cameroon Languages tilde keyboard',
date: '2022-02-07',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
maxKeyLength: 2,
patterns: [
[ '~A', 'Ɑ' ],
[ '~a', 'ɑ' ],
[ 'AE', 'Æ' ],
[ 'Ae', 'Æ' ],
[ 'ae', 'æ' ],
[ 'A~E', 'AE' ],
[ 'A~e', 'Ae' ],
[ 'a~e', 'ae' ],
[ 'OE', 'Œ' ],
[ 'Oe', 'Œ' ],
[ 'oe', 'œ' ],
[ 'O~E', 'OE' ],
[ 'O~e', 'Oe' ],
[ 'o~e', 'oe' ],
[ '~B', 'Ɓ' ],
[ '~b', 'ɓ' ],
[ '~c', 'ə' ],
[ '~C', 'Ə' ],
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~D', 'Ɗ' ],
[ '~d', 'ɗ' ],
[ '~I', 'Ɨ' ],
[ '~i', 'ɨ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~J', 'Ø' ],
[ '~j', 'ø' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~U', 'Ʉ' ],
[ '~u', 'ʉ' ],
[ '~X', 'ɤ' ], // There's no uppercase ɤ ("ram's horns") in Unicode
[ '~x', 'ɤ' ],
[ '~W', 'Ẅ' ],
[ '~w', 'ẅ' ],
[ '~Y', 'Ƴ' ],
[ '~y', 'ƴ' ],
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~\\^', '\u0302' ], // Combining circumflex accent
[ '~-', '\u0304' ], // Combining macron
[ '~v', '\u030C' ], // Combining caron
[ '~\\|', '\u030D' ], // Combining vertical line above
[ '~\\.', '\u0323' ], // Combining dot below
[ '~,', '\u0327' ] // Combining cedilla
]
};
$.ime.register( mulCm );
}( jQuery ) );