Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions rules/tiv/tiv-tilde.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
( function ( $ ) {
'use strict';

var tivTilde = {
id: 'tiv-tilde',
name: 'tiv-tilde',
description: 'Tiv tilde keyboard',
date: '2026-01-06',
URL: 'https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Extension:UniversalLanguageSelector/Input_methods/tiv-tilde',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~O', 'Ô' ],
[ '~o', 'ô' ]
]
};

$.ime.register( tivTilde );
}( jQuery ) );
8 changes: 8 additions & 0 deletions src/jquery.ime.inputmethods.js
Original file line number Diff line number Diff line change
Expand Up @@ -1034,6 +1034,10 @@
name: 'Tigre GeezIM',
source: 'rules/tig/tig-geezim.js'
},
'tiv-tilde': {
name: 'Tiv Tilde',
source: 'rules/tiv/tiv-tilde.js'
},
'tn-tilde': {
name: 'Setswana tilde',
source: 'rules/tn/tn-tilde.js'
Expand Down Expand Up @@ -1858,6 +1862,10 @@
autonym: 'ትግሬ',
inputmethods: [ 'tig-geezim' ]
},
tiv: {
autonym: 'tiv',
inputmethods: [ 'tiv-tilde' ]
},
tkr: {
autonym: 'цӀаӀхна миз',
inputmethods: [ 'cyrl-palochka' ]
Expand Down
9 changes: 8 additions & 1 deletion test/jquery.ime.test.fixtures.js
Original file line number Diff line number Diff line change
Expand Up @@ -21696,6 +21696,13 @@ var palochkaVariants = {
{ input: ';;', output: '።', description: 'Tigre ;; -> ።' }
]
},
{
description: 'Tiv tilde test',
inputmethod: 'tiv-tilde',
tests: [
{ input: '~O~o', output: 'Ôô', description: 'Tiv tilde Ôô' }
]
},
{
description: 'Setswana tilde test',
inputmethod: 'tn-tilde',
Expand Down Expand Up @@ -22499,4 +22506,4 @@ var palochkaVariants = {
{ input: 'wang3', output: 'wǎng', description: 'Mandarin Hanyu Pinyin wǎng' }
]
}
];
];