The file ext.uls.settingspanel.js is a draft for common code in the different settings panels. Change-Id: I057274f16b27b2c18d43d41c1d43f485a18ef0bf
55 lines
1006 B
JavaScript
55 lines
1006 B
JavaScript
( function ( $ ) {
|
||
'use strict';
|
||
|
||
var berTfng = {
|
||
id: 'ber-tfng',
|
||
name: 'Tifinagh Transliteration',
|
||
description: 'Transliteration input method for Tifinagh script',
|
||
date: '2012-10-10',
|
||
URL: 'http://www.ircam.ma/fr/index.php?soc=telec&rd=2',
|
||
author: '',
|
||
license: '',
|
||
version: '1.0',
|
||
contextLength: 0,
|
||
maxKeyLength: 0,
|
||
patterns: [
|
||
['a', 'ⴰ'],
|
||
['b', 'ⴱ'],
|
||
['c', 'ⵛ'],
|
||
['d', 'ⴷ'],
|
||
['D', 'ⴹ'],
|
||
['e', 'ⴻ'],
|
||
['f', 'ⴼ'],
|
||
['F', 'ⴼⵯ'],
|
||
['g', 'ⴳ'],
|
||
['G', 'ⴳⵯ'],
|
||
['h', 'ⵀ'],
|
||
['i', 'ⵉ'],
|
||
['j', 'ⵊ'],
|
||
['k', 'ⴽ'],
|
||
['K', 'ⴽⵯ'],
|
||
['l', 'ⵍ'],
|
||
['m', 'ⵎ'],
|
||
['n', 'ⵏ'],
|
||
['o', 'ⵄ'],
|
||
['p', 'ⵃ'],
|
||
['q', 'ⵇ'],
|
||
['Q', 'ⵈ'],
|
||
['r', 'ⵔ'],
|
||
['R', 'ⵕ'],
|
||
['s', 'ⵙ'],
|
||
['S', 'ⵚ'],
|
||
['t', 'ⵜ'],
|
||
['T', 'ⵟ'],
|
||
['v', 'ⵖ'],
|
||
['u', 'ⵓ'],
|
||
['w', 'ⵡ'],
|
||
['y', 'ⵢ'],
|
||
['x', 'ⵅ'],
|
||
['z', 'ⵣ'],
|
||
['Z', 'ⵥ']]
|
||
};
|
||
$.ime.register( berTfng );
|
||
|
||
}( jQuery ) );
|