Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/bn/bn-nkb.js
Kartik Mistry 3fea8984d1 Update jquery.ime from upstream
Changes:
* Change label from National to Jatiyo for bn-nkb keyboard.
* Add diacritics to the Ga keyboard.
* Fixed el-kbd keyboard.

Bug: T299328
Change-Id: I947397af089fc6f5ef87ea2efc9273fde4990b54
2022-01-17 16:54:04 +05:30

134 lines
2.3 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 bnNkb = {
id: 'bn-nkb',
name: 'Jatiyo Keyboard',
description: 'Bengali Jatiyo Keyboard input method',
date: '2012-10-10',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Junaid P V',
license: 'GPLv3',
version: '1.0',
contextLength: 0,
maxKeyLength: 0,
patterns: [
[ '1', '১' ],
[ '2', '২' ],
[ '3', '৩' ],
[ '4', '' ],
[ '5', '৫' ],
[ '6', '৬' ],
[ '7', '' ],
[ '8', '৮' ],
[ '9', '৯' ],
[ '0', '' ],
[ 'q', 'ঙ' ],
[ 'w', 'য' ],
[ 'e', 'ড' ],
[ 'r', 'প' ],
[ 't', 'ট' ],
[ 'y', 'চ' ],
[ 'u', 'জ' ],
[ 'i', 'হ' ],
[ 'o', 'গ' ],
[ 'p', 'ড়' ],
[ 'a', 'ৃ' ],
[ 's', 'ু' ],
[ 'd', 'ি' ],
[ 'f', 'ব' ],
[ 'g', '্' ],
[ 'h', 'া' ],
[ 'j', 'ক' ],
[ 'k', 'ত' ],
[ 'l', 'দ' ],
[ 'z', 'ঁ' ],
[ 'x', 'ো' ],
[ 'c', 'ে' ],
[ 'v', 'র' ],
[ 'b', 'ন' ],
[ 'n', 'স' ],
[ 'm', 'ম' ],
[ 'Q', 'ং' ],
[ 'W', 'য়' ],
[ 'E', 'ঢ' ],
[ 'R', 'ফ' ],
[ 'T', 'ঠ' ],
[ 'Y', 'ছ' ],
[ 'U', 'ঝ' ],
[ 'I', 'ঞ' ],
[ 'O', 'ঘ' ],
[ 'P', 'ঢ়' ],
[ 'A', 'ৗ' ],
[ 'S', 'ূ' ],
[ 'D', 'ী' ],
[ 'F', 'ভ' ],
[ 'G', '।' ],
[ 'H', 'অ' ],
[ 'J', 'খ' ],
[ 'K', 'থ' ],
[ 'L', 'ধ' ],
[ 'Z', 'ঃ' ],
[ 'X', 'ৌ' ],
[ 'C', 'ৈ' ],
[ 'V', 'ল' ],
[ 'B', 'ণ' ],
[ 'N', 'ষ' ],
[ 'M', 'শ' ] ],
patterns_x: [
[ '1', '৴' ],
[ '2', '৵' ],
[ '3', '৶' ],
[ '4', '৳' ],
[ '5', '৷' ],
[ '6', '৸' ],
[ '7', 'ं' ],
[ '0', '৹' ],
[ '\\-', '\u200C' ],
[ '\\=', '\u200D' ],
[ 'q', 'ৢ' ],
[ 'w', '্য' ],
[ 'e', 'ৄ' ],
[ 'i', 'ঽ' ],
[ 'a', 'ঋ' ],
[ 's', 'উ' ],
[ 'd', 'ই' ],
[ 'f', 'ৰ' ],
[ 'g', '॥' ],
[ 'h', 'আ' ],
[ 'j', '঱' ],
[ 'k', 'ঢ' ],
[ 'l', 'ঌ' ],
[ 'z', '৺' ],
[ 'x', 'ও' ],
[ 'c', 'এ' ],
[ 'v', '্র' ],
[ '\\.', '়' ],
[ '\\$', '৲' ],
[ '\\^', '঳' ],
[ 'Q', 'ৣ' ],
[ 'A', 'ৠ' ],
[ 'S', 'ঊ' ],
[ 'D', 'ঈ' ],
[ 'F', 'ৱ' ],
[ 'L', 'ৡ' ],
[ 'X', 'ঔ' ],
[ 'C', 'ঐ' ] ]
};
$.ime.register( bnNkb );
}( jQuery ) );