Update jquery.ime and jquery.uls from upstream

jquery.ime: Add Bole keyboard. Updating to:
cc8169b3ad

jquery.uls: Localization updates. Updating to:
6254715eae

Change-Id: If8f7ae5a61a5d9bb51cc816317edba091afccc89
This commit is contained in:
Amir E. Aharoni
2024-05-13 08:43:33 -04:00
committed by jenkins-bot
parent edbe1087d6
commit 35fa63b508
5 changed files with 47 additions and 5 deletions

View File

@@ -0,0 +1,26 @@
( function ( $ ) {
'use strict';
var bolTilde = {
id: 'bol-tilde',
name: 'bol-tilde',
description: 'Bole input keyboard',
date: '2024-05-12',
URL: 'https://github.com/wikimedia/jquery.ime',
author: 'Amir E. Aharoni',
license: 'GPLv3',
version: '1.0',
patterns: [
[ '~B', 'Ɓ' ],
[ '~b', 'ɓ' ],
[ '~D', 'Ɗ' ],
[ '~d', 'ɗ' ],
[ '~\\\\', '\u0300' ], // Combining grave
[ '~\\^', '\u0302' ], // Combining circumflex
[ '~-', '\u0304' ], // Combining macron
[ '~v', '\u030C' ] // Combining caron
]
};
$.ime.register( bolTilde );
}( jQuery ) );