-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from ajitq/feature/inscript
Add Indic-language INSCRIPT keyboards.
- Loading branch information
Showing
2 changed files
with
70 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,3 @@ | ||
This adds several Indic-language input methods to Chrome OS. In particular, adds support for several Inscript layouts (https://en.wikipedia.org/wiki/InScript_keyboard). | ||
|
||
All of the input methods in this extension are based on [XKB](../example/xkb/README.md). |
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,67 @@ | ||
{ | ||
"name": "Inscript keyboards", | ||
"version": "1.0", | ||
"manifest_version": 3, | ||
"description": "Indic language keyboards in Inscript", | ||
"permissions": [ | ||
"input" | ||
], | ||
"input_components": [ | ||
{ | ||
"name": "Hindi (Inscript)", | ||
"type": "ime", | ||
"id": "ajitnarayanan_inscript_xkb_in_hi", | ||
"description": "Hindi Devanagari (Inscript) layout", | ||
"language": ["hi"], | ||
"layouts": ["in(deva)"] | ||
}, | ||
{ | ||
"name": "Marathi (Inscript)", | ||
"type": "ime", | ||
"id": "ajitnarayanan_inscript_xkb_in_mr", | ||
"description": "Marathi (Inscript) layout", | ||
"language": ["mr"], | ||
"layouts": ["in(deva)"] | ||
}, | ||
{ | ||
"name": "Kannada (Inscript)", | ||
"type": "ime", | ||
"id": "ajitnarayanan_inscript_xkb_in_kan", | ||
"description": "Kannada (Inscript) layout", | ||
"language": ["kn"], | ||
"layouts": ["in(kan)"] | ||
}, | ||
{ | ||
"name": "Odia (Inscript)", | ||
"type": "ime", | ||
"id": "ajitnarayanan_inscript_xkb_in_ori", | ||
"description": "Odia (Inscript) layout", | ||
"language": ["or"], | ||
"layouts": ["in(ori)"] | ||
}, | ||
{ | ||
"name": "Telugu (Inscript)", | ||
"type": "ime", | ||
"id": "ajitnarayanan_inscript_xkb_in_tel", | ||
"description": "Telugu (Inscript) layout", | ||
"language": ["te"], | ||
"layouts": ["in(tel)"] | ||
}, | ||
{ | ||
"name": "Malayalam (Enhanced Inscript)", | ||
"type": "ime", | ||
"id": "ajitnarayanan_inscript_xkb_in_mal", | ||
"description": "Malayalam (Inscript) layout", | ||
"language": ["ml"], | ||
"layouts": ["in(mal)"] | ||
}, | ||
{ | ||
"name": "Bangla (India, Baisakhi Inscript)", | ||
"type": "ime", | ||
"id": "ajitnarayanan_inscript_xkb_in_ben", | ||
"description": "Bangla (Inscript) layout", | ||
"language": ["bn"], | ||
"layouts": ["in(ben)"] | ||
} | ||
] | ||
} |