jquery.ime: * Add ƙ to the Bura tilde keyboard. * Bring Punjabi Phonetic keyboard in line with Red Hat's counterpart. Updating toab10dd0690jquery.uls * Update language-data. * Localization updates. Updating to4b07e4fe64Change-Id: Ie16e5b58d676cef1c08b320c19b24e877ce808f8
28 lines
508 B
JavaScript
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 ) );
|