eo-q.js 965 Bytes
Newer Older
priyank's avatar
priyank committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
( function ( $ ) {
	'use strict';

	var eoQ = {
		id: 'eo-q',
		name: 'Espernto q',
		description: 'writing Esperanto-letters adding q\'s.',
		date: '2013-02-09',
		URL: 'http://github.com/wikimedia/jquery.ime',
		author: 'Parag Nemade',
		license: 'GPLv3',
		version: '1.0',
		patterns: [
			['ĉq', 'cq'],
			['ĝq', 'gq'],
			['ĥq', 'hq'],
			['ĵq', 'jq'],
			['ŝq', 'sq'],
			['ŭq', 'uq'],
			['Ĉq', 'Cq'],
			['Ĝq', 'Gq'],
			['Ĥq', 'Hq'],
			['Ĵq', 'Jq'],
			['Ŝq', 'Sq'],
			['Ŭq', 'Uq'],
			['ĈQ', 'CQ'],
			['ĜQ', 'GQ'],
			['ĤQ', 'HQ'],
			['ĴQ', 'JQ'],
			['ŜQ', 'SQ'],
			['ŬQ', 'UQ'],

			['cq', 'ĉ'],
			['gq', 'ĝ'],
			['hq', 'ĥ'],
			['jq', 'ĵ'],
			['sq', 'ŝ'],
			['uq', 'ŭ'],
			['Cq', 'Ĉ'],
			['Gq', 'Ĝ'],
			['Hq', 'Ĥ'],
			['Jq', 'Ĵ'],
			['Sq', 'Ŝ'],
			['Uq', 'Ŭ'],
			['CQ', 'Ĉ'],
			['GQ', 'Ĝ'],
			['HQ', 'Ĥ'],
			['JQ', 'Ĵ'],
			['SQ', 'Ŝ'],
			['UQ', 'Ŭ']]

	};

	$.ime.register( eoQ);
}( jQuery ) );