Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/bas/bas-tilde.js
Amir Aharoni 51ec3bc0e6 Update jquery.ime and jquery.uls from upstream
jquery.ime:
* Update characters for the Basaa keyboard.
* add ~1 rule to the Palochka layout and make it
  available for the Dargwa language
Updating to
51418055cd

jquery.uls:
language-data: Add the Dargwa (Dargin) language (dar)
Updating to
67e4d46f6a

Change-Id: I6fe23100a5a4b2ad0507353d6a7cd4c5520867c0
2021-04-14 12:58:04 +00:00

32 lines
731 B
JavaScript

( function ( $ ) {
'use strict';
var basTilde = {
id: 'bas-tilde',
name: 'bas-tilde',
description: 'Basaa tilde keyboard',
date: '2021-03-31',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~B', 'Ɓ' ],
[ '~b', 'ɓ' ],
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~\\\\', '\u0300' ], // Combining grave accent
[ '~/', '\u0301' ], // Combining acute accent
[ '~\\^', '\u0302' ], // Combining circumflex accent
[ '~-', '\u0304' ], // Combining macron
[ '~v', '\u030C' ] // Combining caron
]
};
$.ime.register( basTilde );
}( jQuery ) );