Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/lud/lud-transliteration.js
Kartik Mistry 63f1b82f64 Update jquery.ime from upstream
Changes:
* Bug 66064: Remove deprecated event.attrName and use
  event.originalEvent.attrName instead.
* Added Ludic (lud) transliteration layout.
* Added Tibetian (bo) EWTS layout.

Change-Id: Ia171faa1cbd71e31d45408d96f23f0826b914c5e
2014-07-23 08:18:20 +00:00

30 lines
538 B
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 mapping = {
id: 'lud-transliteration',
name: 'lud',
description: 'Ludic transliteration',
date: '2014-06-14',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Niklas Laxström',
license: 'MIT',
version: '1.0',
contextLength: 0,
maxKeyLength: 2,
patterns: [
['ch', 'č'],
['C[hH]', 'Č'],
['sh', 'š'],
['S[hH]', 'Š'],
['zh', 'ž'],
['Z[hH]', 'Ž'],
['y', 'ü'],
['Y', 'Ü'],
['\'', '']
]
};
$.ime.register( mapping );
}( jQuery ) );