Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/doi/doi-inscript2.js
Amir Aharoni 7c6a6b528b Update jquery.uls and jquery.ime from upstream
jquery.uls:
* Make "ha" the primary code for Hausa (should address Bug T279269).
* Localisation updates: ms-arab, ce, fur.
* Minor whitespace fixes for eslint.
Updating to
9b879ca89b

jquery.ime:
* Minor whitespace and escaping fixes for eslint.
Updating to
1fd57c64b9

Bug: T279269
Change-Id: I46aeb0a8397ebd9dc8a5d68a9e92368d8156ae2d
2021-05-24 13:18:48 +00:00

120 lines
2.3 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 doiInScript2 = {
id: 'doi-inscript2',
name: 'डोगरी इनस्क्रिप्ट २',
description: 'Enhanced InScript keyboard for Dogri language',
date: '2013-02-13',
author: 'Parag Nemade',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '1', '१' ],
[ '2', '२' ],
[ '\\#', '्र' ],
[ '3', '३' ],
[ '\\$', 'र्' ],
[ '4', '४' ],
[ '5', '५' ],
[ '6', '६' ],
[ '7', '७' ],
[ '8', '८' ],
[ '\\(', '(' ],
[ '9', '९' ],
[ '\\]', ']' ],
[ '0', '' ],
[ '\\_', '' ],
[ '\\-', '-' ],
[ '\\+', 'ऋ' ],
[ '\\=', 'ृ' ],
[ 'Q', 'औ' ],
[ 'q", "ौ' ],
[ 'W', 'ऐ' ],
[ 'w', 'ै' ],
[ 'E', 'आ' ],
[ 'e', 'ा' ],
[ 'R', 'ई' ],
[ 'r', 'ी' ],
[ 'T', 'ऊ' ],
[ 't', 'ू' ],
[ 'Y', 'भ' ],
[ 'y', 'ब' ],
[ 'U', 'ङ' ],
[ 'u', 'ह' ],
[ 'I', 'घ' ],
[ 'i', 'ग' ],
[ 'O', 'ध' ],
[ 'o', 'द' ],
[ 'P', 'झ' ],
[ 'p', 'ज' ],
[ '\\{', 'ढ' ],
[ '\\[', 'ड' ],
[ '\\}', 'ञ' ],
[ '\\]', '़' ],
[ 'A', 'ओ' ],
[ 'a', 'ो' ],
[ 'S', 'ए' ],
[ 's', 'े' ],
[ 'D', 'अ' ],
[ 'd', '्' ],
[ 'F', 'इ' ],
[ 'f', 'ि' ],
[ 'G', 'उ' ],
[ 'g', 'ु' ],
[ 'H', 'फ' ],
[ 'h', 'प' ],
[ 'j', 'र' ],
[ 'K', 'ख' ],
[ 'k', 'क' ],
[ 'L', 'थ' ],
[ 'l', 'त' ],
[ ':', 'छ' ],
[ ';', 'च' ],
[ '"', 'ठ' ],
[ '\'', 'ट' ],
[ 'z', 'ʼ' ],
[ 'X', 'ँ' ],
[ 'C', 'ण' ],
[ 'c', 'म' ],
[ 'v', 'न' ],
[ 'b', 'व' ],
[ 'n', 'ल' ],
[ 'M', 'श' ],
[ 'm', 'स' ],
[ '\\<', 'ष' ],
[ ',', ',' ],
[ '\\>', '।' ],
[ '\\.', '.' ],
[ '/', 'य' ],
[ '\\%', 'ज्ञ' ],
[ '\\^', 'त्र' ],
[ '\\&', 'क्ष' ],
[ '\\*', 'श्र' ]
],
patterns_x: [
[ '1', '\u200d' ],
[ '2', '\u200c' ],
[ '4', '₹' ],
[ '\\+', 'ॠ' ],
[ '\\=', 'ृ' ],
[ 'e', '॑' ],
[ 'i', 'ग़' ],
[ 'R', 'ॡ' ],
[ 'r', 'ॣ' ],
[ 'p', 'ज़' ],
[ '\\{', 'ढ़' ],
[ '\\[', 'ड़' ],
[ 'd', '॒' ],
[ 'F', 'ऌ' ],
[ 'f', 'ॢ' ],
[ 'H', 'फ़' ],
[ 'X', 'ॐ' ],
[ 'N', 'ळ' ],
[ '\\>', 'ऽ' ],
[ '\\.', '॥' ] ]
};
$.ime.register( doiInScript2 );
}( jQuery ) );