Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/ne/ne-inscript.js
Kartik Mistry bfdda7bde4 Update jquery.ime from upstream
Upstream: https://github.com/wikimedia/jquery.ime

Changes:
* hi-inscript: Fixed incorrectly mapped Devanagari letter TTHA
* ml-inscript: Correct the mapping of ഠ
* or-inscript: fix mapping of Oriya letters TTA and TTHA
* Remove unwanted escape for double quotes from rules files
* Remove prefixed border-radius rules
* Avoid JavaSript error while trying to get autonym
* Rules loading: Use $.ajax to cache the rule js file

Change-Id: I49b88551263434a93b600278d665e80737edb555
2014-04-08 18:58:31 +00:00

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