Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/bwr/bwr-tilde.js
Amir E. Aharoni 2d52ca1a30 Update jquery.ime and jquery.uls from upstream
jquery.ime:
* Add ƙ to the Bura tilde keyboard.
* Bring Punjabi Phonetic keyboard in line with Red Hat's counterpart.
Updating to
ab10dd0690

jquery.uls
* Update language-data.
* Localization updates.
Updating to
4b07e4fe64

Change-Id: Ie16e5b58d676cef1c08b320c19b24e877ce808f8
2022-09-08 08:49:34 +00:00

28 lines
508 B
JavaScript

( function ( $ ) {
'use strict';
var bwrTilde = {
id: 'bwr-tilde',
name: 'Bura tilde',
description: 'Bura tilde keyboard',
date: '2022-08-14',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.1',
maxKeyLength: 2,
patterns: [
[ '~B', 'Ɓ' ],
[ '~b', 'ɓ' ],
[ '~D', 'Ɗ' ],
[ '~d', 'ɗ' ],
[ '~E', 'Ə' ],
[ '~e', 'ə' ],
[ '~K', 'Ƙ' ],
[ '~k', 'ƙ' ]
]
};
$.ime.register( bwrTilde );
}( jQuery ) );