Skip to content

Latest commit

 

History

History
137 lines (89 loc) · 4.59 KB

fix-a-typo-in-existing-translation-of-Deskreen.md

File metadata and controls

137 lines (89 loc) · 4.59 KB

Guide on how to fix a typo in translations of Deskreen

Contents

When editing a translation.json file, don't change the left part of translation before the :. Only change the text between " on right side of : sign.

Example:

Some content of translation.json

...
"Hello": "Hello"
...
Good example, after your change (for example Spanish language support):
...
"Hello": "Hola"
...
Bad example of your change (left side is different than in original):
...
"Greetings": "Hola"
...

Rule of thumb, don't edit a text on a left side of : sign in translation.json file. only edit a text between " on the right side from : symbol.



Fix typo for Deskreen App if you don't know how to code

You can use any simple text editor to edit translation.json file. Good text editors for different operating systems:

  • Windows (Notepad)
  • MacOS (TextEdit)
  • Linux (gedit, mousepad etc.)

Download a files for language with typo from here:

Find translation.json file for language you need to edit here:

host app (that runs on computer)

client viewer app (that runs in a web browser)

You can use any simple text editor to edit translation.json file. Good text editors for different operating systems:

  • Windows (Notepad)
  • MacOS (TextEdit)
  • Linux (gedit, mousepad etc.)

Fix typo for Deskreen Website if you don't know how to code

Follow guides on Deskreen website locales repo

How to download translation.json file

open Raw translation.json file -> right click in browser window -> Save as..

When finished editing translation.json files

You can send me a Google Drive link to these files for translations of Deskreen App or Website, or attach them to email. Send your email with files here: pavlobu@gmail.com Please give different names for the files when attaching them. Also please include what is language name your fix is for. After that we will be adding your typo fix in new release. Thank you!



Fix typo for Deskreen App if you know how to code

Find translation.json file for language you need to edit here:

host app (that runs on computer)

client viewer app (that runs in a web browser)

Fix them and then submit your PR. Thank you!

Fix typo for Deskreen Website if you know how to code

Follow guides on Deskreen website locales repo

When the Deskreen App edits done, then please fix tests if they are broken. And regenerate snapshots if needed.

How to regenerate snapshots if you have tests failing when running yarn test?

in root ./ folder of project run this:

yarn jest --updateSnapshot

in Deskreen Viewer ./app/client folder of project run this:

cd app/client
SKIP_PREFLIGHT_CHECK=true yarn test:nowatch -- -u

Run yarn test-all locally to make sure you don't have any errors, before submitting your PR

IMPORTANT: Please make sure your PR is 1 or maximum 2 commits length. If it is longer than that, you will be asked to squash your PR commits. If you don't know how to squash, refer this guide

After you done fixing, please submit your PR, it will be reviewed and if everything is ok it will be merged and you fix will be included in next release. Thank you!