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,120 @@
( function ( $ ) {
'use strict';
var knInscript2 = {
id: 'kn-inscript2',
name: 'ಇನ್‌ಸ್ಕ್ರಿಪ್ಟ್ ೨',
description: 'Enhanced InScript keyboard for Kannada script',
date: '2013-01-16',
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", ""],
["C", "ಣ"],
["c", "ಮ"],
["v", "ನ"],
["b", "ವ"],
["N", "ಳ"],
["n", "ಲ"],
["M", "ಶ"],
["m", "ಸ"],
["\\<", "ಷ"],
[",", ","],
["\\>", "।"],
["\\.", "."],
["/", "ಯ"],
["\\%", "ಜ್ಞ"],
["\\^", "ತ್ರ"],
["\\&", "ಕ್ಷ"],
["\\*", "ಶ್ರ"]
],
patterns_x: [
["1", ""],
["2", ""],
["4", "₹"],
["\\+", "ೠ"],
["\\=", "ೄ"],
["R", "ೡ"],
["r", "ೣ"],
["u", "ೱ"],
["F","ಌ"],
["f", "ೢ"],
["H", "ೞ"],
["j", "ೲ"],
["\\>", "ಽ"],
[".", "॥"]
]
};
$.ime.register( knInscript2 );
}( jQuery ) );