Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/pa/pa-phonetic.js
Amire80 13a81d89f8 Update jquery.ime to 839fa42
Changes:
* Fix bug T102455 in Punjabi.
* Add Akan language keyboard.

Bug: T102455
Change-Id: I144e1cde2bb2bc7fa38a7620ef621f7ec0a32285
2016-07-12 10:43:35 +00:00

100 lines
1.9 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 paPhonetic = {
id: 'pa-phonetic',
name: 'Punjabi Phonetic',
description: 'Punjabi Phonetic',
date: '2012-10-16',
URL: 'http://fedoraproject.org/wiki/I18N/Indic/PunjabiKeyboardLayouts',
author: '',
license: '',
version: '1.0',
patterns: [
[ '!', '' ],
[ '1', '1' ],
[ '@', '੨' ],
[ '2', '2' ],
[ '#', '੩' ],
[ '3', '3' ],
[ '\\$', '' ],
[ '4', '4' ],
[ '5', '5' ],
[ '6', '6' ],
[ '7', '7' ],
[ '8', '8' ],
[ '\\(', '੯' ],
[ '9', '9' ],
[ '\\)', '' ],
[ '0', '0' ],
[ 'Q', 'ਥ' ],
[ 'q', 'ਤ' ],
[ 'w', 'ਾ' ],
[ 'E', 'ਓ' ],
[ 'e', 'ੲ' ],
[ 'r', 'ਰ' ],
[ 'T', 'ਠ' ],
[ 't', 'ਟ' ],
[ 'Y', 'ੈ' ],
[ 'y', 'ੇ' ],
[ 'U', 'ੂ' ],
[ 'u', 'ੁ' ],
[ 'I', 'ੀ' ],
[ 'i', 'ਿ' ],
[ 'O', 'ੌ' ],
[ 'o', 'ੋ' ],
[ 'P', 'ਫ' ],
[ 'p', 'ਪ' ],
[ '\\{', '(' ],
[ '\\}', ')' ],
[ 'A', 'ਅ' ],
[ 'a', 'ੳ' ],
[ 'S', 'ਸ਼' ],
[ 's', 'ਸ' ],
[ 'D', 'ਧ' ],
[ 'd', 'ਦ' ],
[ 'F', 'ਢ' ],
[ 'f', 'ਡ' ],
[ 'G', 'ਘ' ],
[ 'g', 'ਗ' ],
[ 'h', 'ਹ' ],
[ 'J', 'ਝ' ],
[ 'j', 'ਜ' ],
[ 'K', 'ਖ' ],
[ 'k', 'ਕ' ],
[ 'L', 'ਲ਼' ],
[ 'l', 'ਲ' ],
[ '\\', 'ਙ' ],
[ '\\~', 'ੱ' ],
[ '\\`', '੍' ],
[ 'Z', 'ਗ਼' ],
[ 'z', 'ਜ਼' ],
[ 'X', 'ਯ' ],
[ 'x', 'ਣ' ],
[ 'C', 'ਛ' ],
[ 'c', 'ਚ' ],
[ 'V', 'ੜ' ],
[ 'v', 'ਵ' ],
[ 'B', 'ਭ' ],
[ 'b', 'ਬ' ],
[ 'N', 'ਂ' ],
[ 'n', 'ਨ' ],
[ 'M', 'ੰ' ],
[ 'm', 'ਮ' ],
[ '\\<', 'ਖ਼' ],
[ '\\>', 'ੴ' ],
[ '\\.', '।' ],
[ '\\?', '?' ],
[ '\\/', 'ਞ' ],
[ '%', '੫' ],
[ '\\^', '੬' ],
[ '&', '੭' ],
[ '\\*', '੮' ],
[ 'R', '੍ਰ' ],
[ 'H', '੍ਹ' ],
[ 'W', 'ਾਂ' ] ]
};
$.ime.register( paPhonetic );
}( jQuery ) );