Update jquery.ime from upstream
* UI improvements, fixes * More input methods * Misc functionality fixes Change-Id: I1a516027e9654a498e4e87c83f8d72ad24eb5596
This commit is contained in:
committed by
Gerrit Code Review
parent
e3e0be19f2
commit
f8947b9686
39
lib/jquery.ime/rules/se/se-normforms.js
Normal file
39
lib/jquery.ime/rules/se/se-normforms.js
Normal file
@@ -0,0 +1,39 @@
|
||||
( function ( $ ) {
|
||||
'use strict';
|
||||
|
||||
var defs = {
|
||||
id: 'se-normforms',
|
||||
name: 'Davvisámegiella',
|
||||
description: 'Northern Sami input method',
|
||||
date: '2012-12-04',
|
||||
URL: 'http://giellatekno.uit.no/doc/infra/samihtml.html',
|
||||
author: 'John Erling Blad',
|
||||
license: 'GPLv3',
|
||||
version: '1.0',
|
||||
//contextLength: 1,
|
||||
maxKeyLength: 3,
|
||||
patterns: [
|
||||
// Uses "~" as "approximatly similar to"
|
||||
[ "'a", 'á' ], // The simple ~a does not work as there is a "ã"
|
||||
[ "'A", 'Á' ], // The simple ~A does not work as there is a "Ã"
|
||||
[ '~c', 'č' ],
|
||||
[ '~C', 'Č' ],
|
||||
[ '~d', 'đ' ],
|
||||
[ '~D', 'Đ' ],
|
||||
//[ '~ng', 'ŋ' ], // The simple ~n does not work as there is a "ñ"
|
||||
//[ '~NG', 'Ŋ' ], // The simple ~N does not work as there is a "Ñ"
|
||||
[ '~g', 'ŋ' ],
|
||||
[ '~G', 'Ŋ' ],
|
||||
[ '~s', 'š' ],
|
||||
[ '~S', 'Š' ],
|
||||
[ '~t', 'ŧ' ],
|
||||
[ '~T', 'Ŧ' ],
|
||||
[ '~z', 'ž' ],
|
||||
[ '~Z', 'Ž' ]
|
||||
// historically similar forms
|
||||
]
|
||||
};
|
||||
|
||||
$.ime.register( defs );
|
||||
|
||||
}( jQuery ) );
|
||||
Reference in New Issue
Block a user