jquery.ime: * Add keyboards for Acholi (ach), Lango (laj), Pontic (pnt), and Click languages—initially Khoekhoe (naq), but more may be added in the future. Change-Id: I38ce6f6f60f4069b20792e8e8cb8627b4a63144e
23 lines
493 B
JavaScript
23 lines
493 B
JavaScript
( function ( $ ) {
|
|
'use strict';
|
|
|
|
var pntTilde = {
|
|
id: 'pnt-tilde',
|
|
name: 'Pontic tilde',
|
|
description: 'Pontic tilde',
|
|
date: '2024-09-26',
|
|
URL: 'https://github.com/wikimedia/jquery.ime',
|
|
author: 'Amir E. Aharoni',
|
|
license: 'GPLv3',
|
|
version: '1.0',
|
|
maxKeyLength: 2,
|
|
patterns: [
|
|
[ '~"', '\u0308' ], // Combining diaeresis
|
|
[ '~\\^', '\u030C' ], // Combining caron
|
|
[ '~:', '\u0324' ] // Combining diaeresis below
|
|
]
|
|
};
|
|
|
|
$.ime.register( pntTilde );
|
|
}( jQuery ) );
|