Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/hi/hi-phonetic.js
Siebrand Mazeland 901916967f Update jQuery.IME from upstream
* Make names for Hindi input methods consistent.
* Make names for Marathi input methods consistent.

Bug: 56160
Change-Id: I0b4ff9d8d7e01392237facb54e7b77ee9ef753b0
2013-10-29 14:56:38 +01:00

112 lines
1.9 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 hiPhonetic = {
id: 'hi-phonetic',
name: 'फोनेटिक',
description: 'Phonetic keyboard for Hindi language',
date: '2013-02-09',
author: 'Parag Nemade',
license: 'GPLv3',
version: '1.0',
patterns: [
['्f', '्\u200c'],
['\\~', 'ऎ'],
['\\`','ॆ'],
['\\!', 'ऍ'],
['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', 'झ'],
['j', 'ज'],
['K', 'ख'],
['k', 'क'],
['L', 'ळ'],
['l', 'ल'],
[':', 'ई'],
[';', 'इ'],
['"', 'ऊ'],
['\'', 'उ'],
['\\|', 'ऒ'],
['\\\\', 'ो'],
['Z', 'ँ'],
['z', 'ङ'],
['x', 'ष'],
['C', 'छ'],
['c', 'च'],
['V', 'ऴ'],
['v', 'व'],
['B', 'भ'],
['b', 'ब'],
['N', 'ण'],
['n', 'न'],
['M', 'ं'],
['m', 'म'],
['\\<', 'ऩ'],
[',', ','],
['\\>', '़'],
['\\.', '।'],
['\\?', 'ऐ'],
['/', 'ए'],
['\\^', 'ज्ञ'],
['X', 'क्ष'],
['\\*', 'श्र']
]
};
$.ime.register( hiPhonetic );
}( jQuery ) );