Files
mediawiki-extensions-Univer…/lib/jquery.ime/rules/dag/dag-alt.js
Amire80 a0fe3c2249 Update jquery.ime from upstream
Added one letter to the Dagbani-Alt input method.

Updating to
98d89d8b78

Change-Id: I59f207c2d0dc840b183add75c2dbee27e207a919
2017-06-13 13:13:39 +03:00

31 lines
541 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

( function ( $ ) {
'use strict';
var dagAlt = {
id: 'dag-alt',
name: 'Dagbani Alt',
description: 'Dagbani Alt',
date: '2017-05-27',
URL: 'http://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns_x: [
[ 'E', 'Ɛ' ],
[ 'e', 'ɛ' ],
[ 'G', 'Ɣ' ],
[ 'g', 'ɣ' ],
[ 'Y', 'Ɣ' ],
[ 'y', 'ɣ' ],
[ 'N', 'Ŋ' ],
[ 'n', 'ŋ' ],
[ 'O', 'Ɔ' ],
[ 'o', 'ɔ' ],
[ 'Z', 'Ʒ' ],
[ 'z', 'ʒ' ]
]
};
$.ime.register( dagAlt );
}( jQuery ) );