Update jquery.ime from upstream

* Adds many input methods

Change-Id: I2f3576948416e7d2bf2f935e609fe50977e7e9d9
This commit is contained in:
Santhosh Thottingal
2013-02-17 15:09:49 +05:30
committed by Santhosh
parent 6ec65fec6c
commit 7d9b81fb9d
45 changed files with 4209 additions and 53 deletions

View File

@@ -0,0 +1,112 @@
( 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", "ল"],
[":", ":"],
[";", ";"],
["\"", "\""],
["'", "'"],
["\\|", "৺"],
["\\\\", "ৱ"],
["\\~", ""],
["\\`", ""],
["Z", "য"],
["z", "য়"],
["X", "ঢ়"],
["x", "শ"],
["C", "ছ"],
["c", "চ"],
["V", "ঋ"],
["v", "আ"],
["B", "ভ"],
["b", "ব"],
["N", "ণ"],
["n", "ন"],
["M", "ঙ"],
["m", "ম"],
["\\<", "ৃ"],
[",", ","],
["\\>", "ঁ"],
["\\.", "।"],
["\\?", "?"],
["/", "্"]]
};
$.ime.register( asPhonetic );
}( jQuery ) );