From 235f11925b660110d07bf7d4ad423d2b7099133d Mon Sep 17 00:00:00 2001 From: Jaye Hernandez Date: Sun, 31 May 2020 20:03:41 +0800 Subject: [PATCH] Add romanization --- docs/new_language.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/new_language.md b/docs/new_language.md index e66b5a63..54b940d8 100644 --- a/docs/new_language.md +++ b/docs/new_language.md @@ -19,13 +19,15 @@ Format: - **voice** attribute: Choose voice in the supported [ResponsiveVoice API voices](https://github.com/jayehernandez/letra-extension/blob/master/docs/supported_voices.md) - **flag** attribute: Choose the flag emoji from twemoji-awesome's [list of CSS classes](https://github.com/jayehernandez/letra-extension/blob/master/client/src/style/twemoji-awesome.scss) +- [**romanization**](https://en.wikipedia.org/wiki/Romanization) attribute: For selected languages only Example: ```sh { "german": { - voice: "Deutsch Female", - flag: "german" + "voice": "Deutsch Female", + "flag": "german", + "romanization": "" } } ``` @@ -69,5 +71,6 @@ I made a [reference sheet](https://docs.google.com/spreadsheets/d/1XFWxJPyVvlG-X - [ ] ➕ Added a new JSON object in the `server/data/languages.json` file. - [ ] Added the **voice** 🎤 attribute supported by ResponsiveVoice API. - [ ] Added the **flag** 🏳 atrribute in the format of the twemoji-awesome CSS syntax. +- [ ] Added the **romanization** atrribute for appropriate languages. - [ ] ➕ Created the `{language.json}` file inside the `server/data/words` folder containing the list of the 3000 words. - [ ] Removed duplicates and noted 🗒 them in the Pull Request.