Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/ks/ks-kbd.js
Santhosh Thottingal 6f1ccbd3b7 Update jquery.ime library
Changes:
1. build: Update eslint
2. telugu jna gunintham fixes

Updating to 6d591016d2

Change-Id: I092ae22f51bb18ef5dd23f8b1552ca7ced17face
2020-01-06 07:02:34 +00:00

113 lines
2.0 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 ksKbd = {
id: 'ks-kbd',
name: 'Kashmiri kbd',
description: 'Kbd keyboard for Kashmiri language using Arabic script',
date: '2013-02-09',
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', '\u0601' ],
[ '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( ksKbd );
}( jQuery ) );