Update jquery.ime from upstream

Change-Id: I5cecbb8628fe61a00abfab89cc628db25b408528
This commit is contained in:
Santhosh Thottingal
2013-03-06 15:33:06 +05:30
parent 4f651fa0e2
commit 0738d68504
20 changed files with 1698 additions and 30 deletions

View File

@@ -0,0 +1,111 @@
( function ( $ ) {
'use strict';
var urPhonetic = {
id: 'ur-phonetic',
name: 'صوتی',
description: 'Phonetic keyboard for Urdu script',
date: '2013-02-18',
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( urPhonetic );
}( jQuery ) );