Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/ur/ur-transliteration.js
Santhosh Thottingal f13e474e43 Input method integration with ULS
The file ext.uls.settingspanel.js is a draft for common
code in the different settings panels.

Change-Id: I057274f16b27b2c18d43d41c1d43f485a18ef0bf
2012-10-26 11:14:02 +05:30

100 lines
1.7 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 urTransliteration = {
id: 'ur-transliteration',
name: 'Urdu Transliteration',
description: 'Urdu Transliteration based on RTS',
date: '2012-10-16',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Mohammed Imran Tabani',
license: '',
version: '1.0',
patterns: [
['x', 'ف'],
['_', '_'],
['D', 'ڑ'],
['E', 'ذ'],
['F', 'ں'],
['R', 'ڈ'],
['G', 'ۂ'],
['T', 'ث'],
['\\+', '+'],
['S', 'ز'],
['W', 'ض'],
['A', 'ژ'],
['Q', 'ظ'],
['k', 'ک'],
['K', 'گ'],
['i', 'ب'],
['I', 'ـ'],
['U', 'ۃ'],
['\\;', '؛'],
['\\:', ':'],
['p', 'ح'],
['P', 'خ'],
['\\}', '{'],
['\'', '\''],
['\"', '\"'],
['\\[', ']'],
['\\{', '{'],
['C', 'ۓ'],
['l', 'ی'],
['L', 'ي'],
['o', 'ج'],
['O', 'چ'],
['v', 'س'],
['h', 'ہ'],
['H', 'ء'],
['y', 'پ'],
['Y', '\u0651\u00AD'],
['c', 'ے'],
['\\?','؟'],
['j', 'ا'],
['n', 'غ'],
['N', 'ئ'],
['b', 'ش'],
['\\<', '','>'],
['m', 'ع'],
['u', 'ت'],
['\\]', '','['],
['e', 'ھ'],
['f', 'ن'],
['r', 'د'],
['g', 'ل'],
['t', 'ٹ'],
['\\=', '','='],
['\\\\', '\\'],
['s', 'و'],
['w', 'ص'],
['a', 'م'],
['q', 'ط'],
['d', 'ر'],
['\\|', '|'],
['/', '/'],
['\\>', '<'],
['0', '0'],
['1', '1'],
['2', '2'],
['3', '3'],
['4', '4'],
['5', '5'],
['6', '6'],
['7', '7'],
['8', '8'],
['9', '9'],
['\\@', '@'],
['\\#', '','#'],
['\\$', '','$'],
['\\%', '','٪'],
['\\^', '','^'],
['\\&', 'ۖ'],
['\\*', '٭'],
['\\(', '('],
['\\)', ')']]
};
$.ime.register( urTransliteration );
}( jQuery ) );