-
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.
Add North Straits Salish (Saanich) SENĆOŦEN Keyboard (#819)
* Initial Sencoten keyboard and tests * Add comma, more tests --------- Co-authored-by: Anne Drew Hu <[email protected]> Co-authored-by: SrishAkaTux <[email protected]>
- Loading branch information
1 parent
7c496e7
commit b170943
Showing
3 changed files
with
74 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,46 @@ | ||
( function ( $ ) { | ||
'use strict'; | ||
|
||
var strSencoten = { | ||
id: 'str-sencoten', | ||
name: 'SENĆOŦEN Keyboard', | ||
description: 'Saanich SENĆOŦEN Keyboard', | ||
date: '2024-11-23', | ||
URL: 'http://github.com/wikimedia/jquery.ime', | ||
author: 'Anne Drew Hu', | ||
license: 'MIT', | ||
version: '1.0', | ||
maxKeyLength: 4, | ||
patterns: [ | ||
[ 'S', 's' ], | ||
[ '([a-z])', function ( $1 ) { | ||
return $1.toUpperCase(); | ||
} ], | ||
[ 'A\'', 'Á' ], | ||
[ 'A/', 'Ⱥ' ], | ||
[ 'C\'', 'Ć' ], | ||
[ 'C/', 'Ȼ' ], | ||
[ 'I\'', 'Í' ], | ||
[ ',', '¸' ], | ||
[ '<', ','], | ||
[ 'K-', '₭' ], | ||
[ 'K_', 'Ḵ' ], | ||
[ 'K;', 'Ḵ' ], | ||
[ 'K\'', 'Ḱ' ], | ||
[ 'L-', 'Ƚ' ], | ||
[ 'N_', 'Ṉ' ], | ||
[ 'N;', 'Ṉ' ], | ||
[ 'S\'', 'Ś' ], | ||
[ 'T/', 'Ⱦ' ], | ||
[ 'T_', 'Ṯ' ], | ||
[ 'T;', 'Ṯ' ], | ||
[ 'T-', 'Ŧ' ], | ||
[ 'W_', 'W̱' ], | ||
[ 'W;', 'W̱' ], | ||
[ 'X;', 'X̱' ], | ||
[ 'X_', 'X̱' ], | ||
] | ||
}; | ||
|
||
$.ime.register( strSencoten ); | ||
}( 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