Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/mul-bf/mul-bf.js
Amir E. Aharoni ee6b42c844 Update jquery.ime from upstream
* Add Burkina Faso keyboard.
* Change CSS `none` values to `0`.

Updating to
002df3b65b

Change-Id: I1d918f1b3d54b1ab7d4c490283d53cd42c5070c9
2022-02-14 17:48:09 +02:00

49 lines
1.1 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 mulBf = {
id: 'mul-bf',
name: 'mul-bf',
description: 'Burkina Faso tilde keyboard',
date: '2022-02-14',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
maxKeyLength: 2,
patterns: [
[ '~B', 'Ɓ' ],
[ '~b', 'ɓ' ],
[ '~C', 'Ç' ],
[ '~c', 'ç' ],
[ '~D', 'Ɗ' ],
[ '~d', 'ɗ' ],
[ '~A', 'Ǝ' ],
[ '~a', 'ǝ' ],
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~I', 'Ɩ' ],
[ '~i', 'ɩ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~U', 'Ʋ' ],
[ '~u', 'ʋ' ],
[ '~W', 'Ⱳ' ],
[ '~w', 'ⱳ' ],
[ '~Y', 'Ƴ' ],
[ '~y', 'ƴ' ],
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~\\^', '\u0302' ], // Combining circumflex accent
[ '~\\{', '\u0303' ], // Combining tilde
[ '~-', '\u0304' ], // Combining macron
[ '~:', '\u0308' ], // Combining diaeresis
[ '~v', '\u030C' ] // Combining caron
]
};
$.ime.register( mulBf );
}( jQuery ) );