-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using backslash instead of tilde because tilde is usually not available on Russian keyboards. Downstream task: https://phabricator.wikimedia.org/T375944 Co-authored-by: SrishAkaTux <[email protected]>
- Loading branch information
Showing
3 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
( function ( $ ) { | ||
'use strict'; | ||
|
||
var mnsBackslash = { | ||
id: 'mns-backslash', | ||
name: 'mns-backslash', | ||
description: 'Mansi backslash keyboard', | ||
date: '2024-11-05', | ||
URL: 'https://github.com/wikimedia/jquery.ime', | ||
author: 'Amir E. Aharoni', | ||
license: 'GPLv3', | ||
version: '1.0', | ||
patterns: [ | ||
[ '\\\\А', 'А̄' ], | ||
[ '\\\\а', 'а̄' ], | ||
[ '\\\\Е', 'Е̄' ], | ||
[ '\\\\е', 'е̄' ], | ||
[ '\\\\Ё', 'Ё̄' ], | ||
[ '\\\\ё', 'ё̄' ], | ||
[ '\\\\И', 'Ӣ' ], | ||
[ '\\\\и', 'ӣ' ], | ||
[ '\\\\Н', 'Ӈ' ], | ||
[ '\\\\н', 'ӈ' ], | ||
[ '\\\\О', 'О̄' ], | ||
[ '\\\\о', 'о̄' ], | ||
[ '\\\\У', 'Ӯ' ], | ||
[ '\\\\у', 'ӯ' ], | ||
[ '\\\\Ы', 'Ы̄' ], | ||
[ '\\\\ы', 'ы̄' ], | ||
[ '\\\\Э', 'Э̄' ], | ||
[ '\\\\э', 'э̄' ], | ||
[ '\\\\Ю', 'Ю̄' ], | ||
[ '\\\\ю', 'ю̄' ], | ||
[ '\\\\Я', 'Я̄' ], | ||
[ '\\\\я', 'я̄' ] | ||
] | ||
}; | ||
|
||
$.ime.register( mnsBackslash ); | ||
}( jQuery ) ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters