Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/hoc/hoc-transliteration.js
Amir Aharoni 215145a95a Update jquery.ime from upstream
* Adding a transliteration layout for the Ho language
  in the Warang Citi alphabet (by Purty).
* Enable the Palochka layout for Ingush (by stjn).
* Styling improvements in the IME selector (by Volker E).
* Fixes for the Blin / Tigre / Tigrinya GeezIM layout (by Fitsum Gaim).
* Fixes for the Santali Ol Chiki InScript 2 layout (by Ramjit Tudu).

Updating to
2046765d31

Change-Id: I04ba0553ec52fa8f5c8317c538394232c2291346
2018-12-03 14:35:51 +02:00

106 lines
2.0 KiB
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 hocTransliteration = {
id: 'hoc-transliteration',
name: 'ho transliteration',
description: 'Phonetic keyboard for Ho',
date: '2018-09-29',
author: 'Purty',
license: 'GPLv3',
version: '1.0',
contextLength: 1,
maxKeyLength: 3,
patterns: [
[ '\\\\([A-Za-z\\>_~\\.0-9@])', '\\\\', '$1' ],
[ 'a', '𑣁' ],
[ '𑣁i', '𑣆' ],
[ '𑣁u', '𑣇' ],
[ 'b', '𑣗' ],
[ 'c', 'c' ],
[ 'ch', '𑣏' ],
[ 'd', '𑣑' ],
[ '𑣑h', '𑣔' ],
[ 'e', '𑣈' ],
[ 'k', '𑣌' ],
[ 'l', '𑣚' ],
[ 'm', '𑣖' ],
[ '𑣓g', '𑣊' ],
[ '𑣓j', '𑣍' ],
[ '𑣓n', '𑣐' ],
[ 'o', '𑣉' ],
[ 'p', '𑣘' ],
[ 'q', '𑣄' ],
[ '𑣜r', '𑣛' ],
[ 's', '𑣞' ],
[ 't', '𑣒' ],
[ '𑣒h', '𑣕' ],
[ 'v', '𑣀' ],
[ 'w', '𑣟' ],
[ 'x', '𑣝' ],
[ 'y', '𑣅' ],
[ 'A', '𑢡' ],
[ '𑢡(i|I)', '𑢦' ],
[ '𑢡(U|u)', '𑢧' ],
[ 'B', '𑢷' ],
[ 'C', 'C' ],
[ 'C(H|h)', '𑢯' ],
[ 'D', '𑢱' ],
[ '𑢱(H|h)', '𑢴' ],
[ 'E', '𑢨' ],
[ 'I', '𑢢' ],
[ 'K', '𑢬' ],
[ 'L', '𑢺' ],
[ 'M', '𑢶' ],
[ '𑢳(G|g)', '𑢪' ],
[ '𑢳(J|j)', '𑢭' ],
[ '𑢳(N|n)', '𑢰' ],
[ 'O', '𑢩' ],
[ 'P', '𑢸' ],
[ 'Q', '𑢤' ],
[ '𑢼(R|r)', '𑢻' ],
[ 'S', '𑢾' ],
[ 'T', '𑢲' ],
[ '𑢲(H|h)', '𑢵' ],
[ 'U', '𑢣' ],
[ 'V', '𑢠' ],
[ 'W', '𑢿' ],
[ 'X', '𑢽' ],
[ 'Y', '𑢥' ],
[ 'G', '𑢫' ],
[ 'J', '𑢮' ],
[ 'N', '𑢳' ],
[ 'R', '𑢼' ],
[ 'H', '𑢹' ],
[ 'h', '𑣙' ],
[ 'g', '𑣋' ],
[ 'j', '𑣎' ],
[ '@', '𑣿' ],
[ 'r', '𑣜' ],
[ 'n', '𑣓' ],
[ 'i', '𑣂' ],
[ 'u', '𑣃' ],
[ '0', '𑣠' ],
[ '1', '𑣡' ],
[ '2', '𑣢' ],
[ '3', '𑣣' ],
[ '4', '𑣤' ],
[ '5', '𑣥' ],
[ '6', '𑣦' ],
[ '7', '𑣧' ],
[ '8', '𑣨' ],
[ '9', '𑣩' ]
]
};
$.ime.register( hocTransliteration );
}( jQuery ) );