{"id":17368139,"url":"https://github.com/juliuste/telephone-keypads","last_synced_at":"2025-08-24T16:36:19.343Z","repository":{"id":39779174,"uuid":"230415366","full_name":"juliuste/telephone-keypads","owner":"juliuste","description":"Language-specific and language-independent telephone keypad assignments according to ETSI ES 202 130.","archived":false,"fork":false,"pushed_at":"2020-05-25T04:15:16.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-18T14:49:30.550Z","etag":null,"topics":["library"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/juliuste.png","metadata":{"files":{"readme":"readme.md","changelog":"changelog.md","contributing":null,"funding":null,"license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-12-27T09:37:29.000Z","updated_at":"2022-05-25T23:31:52.000Z","dependencies_parsed_at":"2022-09-26T18:20:40.841Z","dependency_job_id":null,"html_url":"https://github.com/juliuste/telephone-keypads","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juliuste%2Ftelephone-keypads","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juliuste%2Ftelephone-keypads/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juliuste%2Ftelephone-keypads/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juliuste%2Ftelephone-keypads/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/juliuste","download_url":"https://codeload.github.com/juliuste/telephone-keypads/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249565328,"owners_count":21292427,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["library"],"created_at":"2024-10-15T23:58:31.143Z","updated_at":"2025-04-18T23:58:43.664Z","avatar_url":"https://github.com/juliuste.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# telephone-keypads\n\nLanguage-specific and language-independent telephone keypad assignments according to [**ETSI ES 202 130, _v2.1.1_**](https://www.etsi.org/deliver/etsi_es/202100_202199/202130/02.01.01_50/es_202130v020101m.pdf).\n\n[![npm version](https://img.shields.io/npm/v/telephone-keypads.svg)](https://www.npmjs.com/package/telephone-keypads)\n[![Build status](https://travis-ci.org/juliuste/telephone-keypads.svg?branch=master)](https://travis-ci.org/juliuste/telephone-keypads)\n[![Greenkeeper badge](https://badges.greenkeeper.io/juliuste/telephone-keypads.svg)](https://greenkeeper.io/)\n[![License](https://img.shields.io/github/license/juliuste/telephone-keypads.svg?style=flat)](license)\n\n## Installation\n\n```bash\nnpm install telephone-keypads\n```\n\n## Usage\n\nA telephone keypad generally has the following structure:\n\n```js\n// example: greek keypad\n{\n    \"1\": [],\n    \"2\": [\"α\", \"β\", \"γ\", \"2\", \"ά\", \"a\", \"b\", \"c\"],\n    \"3\": [\"δ\", \"ε\", \"ζ\", \"3\", \"έ\", \"d\", \"e\", \"f\"],\n    \"4\": [\"η\", \"θ\", \"ι\", \"4\", \"ή\", \"ί\", \"ϊ\", \"ΐ\", \"g\", \"h\", \"i\"],\n    \"5\": [\"κ\", \"λ\", \"μ\", \"5\", \"j\", \"k\", \"l\"],\n    \"6\": [\"ν\", \"ξ\", \"ο\", \"6\", \"ό\", \"m\", \"n\", \"o\"],\n    \"7\": [\"π\", \"ρ\", \"σ\", \"ς\", \"7\", \"p\", \"q\", \"r\", \"s\"],\n    \"8\": [\"τ\", \"υ\", \"φ\", \"8\", \"ύ\", \"ϋ\", \"ΰ\", \"t\", \"u\", \"v\"],\n    \"9\": [\"χ\", \"ψ\", \"ω\", \"9\", \"ώ\", \"w\", \"x\", \"y\", \"z\"],\n    \"0\": []\n}\n```\n\nThe following keypads are currently supported:\n\n### Language independent\n\n#### Cyrillic\n\n```js\n// pick one of these methods to import the keypad\nconst cyrillic = require('telephone-keypads').languageIndependent.cyrillic\nconst cyrillic = require('telephone-keypads/language-independent/cyrillic.json')\n```\n\n#### Latin\n\n```js\n// pick one of these methods to import the keypad\nconst latin = require('telephone-keypads').languageIndependent.latin\nconst latin = require('telephone-keypads/language-independent/latin.json')\n```\n\n### Language specific\n\n#### Chinese (Pinyin)\n\n```js\n// pick one of these methods to import the keypad\nconst pinyin = require('telephone-keypads').languageSpecific.pinyin\nconst pinyin = require('telephone-keypads/language-specific/pinyin.json')\n```\n\n#### French\n\n```js\n// pick one of these methods to import the keypad\nconst french = require('telephone-keypads').languageSpecific.french\nconst french = require('telephone-keypads/language-specific/french.json')\n```\n\n#### German\n\n```js\n// pick one of these methods to import the keypad\nconst german = require('telephone-keypads').languageSpecific.german\nconst german = require('telephone-keypads/language-specific/german.json')\n```\n\n#### Greek\n\n```js\n// pick one of these methods to import the keypad\nconst greek = require('telephone-keypads').languageSpecific.greek\nconst greek = require('telephone-keypads/language-specific/greek.json')\n```\n\n#### Hebrew\n\n```js\n// pick one of these methods to import the keypad\nconst hebrew = require('telephone-keypads').languageSpecific.hebrew\nconst hebrew = require('telephone-keypads/language-specific/hebrew.json')\n```\n\n#### Polish\n\n```js\n// pick one of these methods to import the keypad\nconst polish = require('telephone-keypads').languageSpecific.polish\nconst polish = require('telephone-keypads/language-specific/polish.json')\n```\n\n#### Turkish\n\n```js\n// pick one of these methods to import the keypad\nconst turkish = require('telephone-keypads').languageSpecific.turkish\nconst turkish = require('telephone-keypads/language-specific/turkish.json')\n```\n\nFeel free to contribute and add more languages here!\n\n## Contributing\n\nIf you found a bug, want to add support for another language or propose a feature, feel free to visit [the issues page](https://github.com/juliuste/telephone-keypads/issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuliuste%2Ftelephone-keypads","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuliuste%2Ftelephone-keypads","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuliuste%2Ftelephone-keypads/lists"}