Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/as/as-phonetic.js
Santhosh Thottingal 28044a6f14 Update jquery.ime to 7572e2
Documentation, code clean ups and build updates

Change-Id: I7ce3d75345b76f2a7693b6143e013b6a8202e093
2016-04-12 11:52:46 +05:30

113 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 asPhonetic = {
id: 'as-phonetic',
name: 'phonetic',
description: 'Phonetic keyboard for Assamese script',
date: '2013-02-09',
URL: 'http://github.com/wikimedia/jquery.ime',
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', 'ঝ' ],
[ 'j', 'জ' ],
[ 'K', 'খ' ],
[ 'k', 'ক' ],
[ 'L', 'ং' ],
[ 'l', 'ল' ],
[ ':', ':' ],
[ ';', ';' ],
[ '"', '"' ],
[ '\'', '\'' ],
[ '\\|', '৺' ],
[ '\\\\', 'ৱ' ],
[ '\\~', '\u200c' ],
[ '\\`', '\u200d' ],
[ 'Z', 'য' ],
[ 'z', 'য়' ],
[ 'X', 'ঢ়' ],
[ 'x', 'শ' ],
[ 'C', 'ছ' ],
[ 'c', 'চ' ],
[ 'V', 'ঋ' ],
[ 'v', 'আ' ],
[ 'B', 'ভ' ],
[ 'b', 'ব' ],
[ 'N', 'ণ' ],
[ 'n', 'ন' ],
[ 'M', 'ঙ' ],
[ 'm', 'ম' ],
[ '\\<', 'ৃ' ],
[ ',', ',' ],
[ '\\>', 'ঁ' ],
[ '\\.', '।' ],
[ '\\?', '?' ],
[ '/', '্' ]
]
};
$.ime.register( asPhonetic );
}( jQuery ) );