Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/chn/chn-tilde.js
Amir E. Aharoni 5050b1fff5 Update jquery.ime and jquery.uls from upstream
jquery.ime
* Add Chinook Wawa keyboard.
* Update Mon autonym.
Updating to
dc51208212

jquery.uls:
* Updating language-data, adding Ebira (igb),
  Nupe (nup), Petjoh (pey).
* Localization updates.
Updating to
dedb291973

Bug: T352776
Bug: T355277
Bug: T356104
Bug: T356248
Bug: T356616
Change-Id: Id828963bcc9b02b1c2aafa83b96e7c12e9b4fcf3
2024-02-17 16:14:28 -05:00

28 lines
530 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 chnTilde = {
id: 'chn-tilde',
name: 'chn-tilde',
description: 'Chinook Jargon input keyboard - tilde',
date: '2024-02-07',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~E', 'Ə' ],
[ '~e', 'ə' ],
[ '~h', 'ʰ' ],
[ '~H', 'ʰ' ],
[ '~L', 'Ɬ' ],
[ '~l', 'ɬ' ],
[ '~X', 'X̣' ],
[ '~x', 'x̣' ],
[ '~\\?', 'ʔ' ]
]
};
$.ime.register( chnTilde );
}( jQuery ) );