Skip to content

Commit

Permalink
Merge pull request #138 from ajitq/feature/inscript
Browse files Browse the repository at this point in the history
Add Indic-language INSCRIPT keyboards.
  • Loading branch information
jpalmer authored Aug 14, 2024
2 parents 694b6d5 + 064986b commit 6d13d70
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
3 changes: 3 additions & 0 deletions indic/README.md
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).
67 changes: 67 additions & 0 deletions indic/manifest.json
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)"]
}
]
}

0 comments on commit 6d13d70

Please sign in to comment.