jquery.uls: * Make "ha" the primary code for Hausa (should address Bug T279269). * Localisation updates: ms-arab, ce, fur. * Minor whitespace fixes for eslint. Updating to9b879ca89bjquery.ime: * Minor whitespace and escaping fixes for eslint. Updating to1fd57c64b9Bug: T279269 Change-Id: I46aeb0a8397ebd9dc8a5d68a9e92368d8156ae2d
35 lines
788 B
JavaScript
35 lines
788 B
JavaScript
// This Chuvash keyboard is a stripped version of latin Mercen
|
|
// https://sites.google.com/site/mercen77/
|
|
// http://cvlat.blogspot.com
|
|
// Only Chuvash diacritics are used, no additional letters
|
|
// for Turkish or dead keys implemented (for now?)
|
|
|
|
( function ( $ ) {
|
|
'use strict';
|
|
|
|
var cv = {
|
|
id: 'cv-lat-altgr',
|
|
name: 'Căvašla - Mercen',
|
|
description: 'CVLat usă kurakan Mercen',
|
|
date: '2013-03-21',
|
|
URL: 'https://sites.google.com/site/mercen77/',
|
|
author: 'Anatoly Mironov, @mirontoli',
|
|
license: 'MIT',
|
|
version: '1.0',
|
|
patterns_x: [
|
|
[ 'a', 'ă' ],
|
|
[ 'A', 'Ă' ],
|
|
[ 'e', 'ĕ' ],
|
|
[ 'E', 'Ĕ' ],
|
|
[ 's', 'ş' ],
|
|
[ 'S', 'Ş' ],
|
|
[ 'd|h', 'š' ],
|
|
[ 'D|H', 'Š' ],
|
|
[ 'w|u', 'ü' ],
|
|
[ 'W|U', 'Ü' ]
|
|
]
|
|
};
|
|
|
|
$.ime.register( cv );
|
|
}( jQuery ) );
|