Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/nus/nus-tilde.js
Amir Aharoni 1414007810 Update jquery.ime and jquery.uls from upstream
jquery.ime:
* Add Nuer keyboard

Updating to
2c27ec2da3

jquery.uls
* Localization updates: de-formal, kcg, nap, pt-br, sl
* language-data updates:
** Add languages nus, rhg, rmc
** Add variants pap-aw, tly-cyrl
** Update Talysh (tly) autonym (see I552e07967 for details)
** Add Rohingya Hanifi script

Updating to
1bed61638b

Change-Id: I4412ccf4e1ce01718d55490a5d938e981da25a40
2021-03-01 12:39:51 +02:00

29 lines
583 B
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 nusTilde = {
id: 'nus-tilde',
name: 'nus-tilde',
description: 'Nuer input keyboard',
date: '2021-01-18',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~E', 'Ɛ' ],
[ '~e', 'ɛ' ],
[ '~G', 'Ɣ' ],
[ '~g', 'ɣ' ],
[ '~N', 'Ŋ' ],
[ '~n', 'ŋ' ],
[ '~O', 'Ɔ' ],
[ '~o', 'ɔ' ],
[ '~:', '\u0308' ], // Combining diaeresis
[ '~_', '\u0331' ] // Combining macron below
]
};
$.ime.register( nusTilde );
}( jQuery ) );