Add contribute translations to learn.robosats documentation

This commit is contained in:
Reckless_Satoshi 2022-05-18 05:31:30 -07:00
parent 79d1ca1ff1
commit b1863fc3ab
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
4 changed files with 52 additions and 10 deletions

View File

@ -32,9 +32,9 @@ docs:
- title: "<i class='fa-solid fa-lightbulb'></i> Understand"
url: /docs/understand/
children:
- title: "<span>&nbsp; &thinsp;<i class='fa-solid fa-timeline'></i> Trade Pipeline</span>"
- title: "<span>&nbsp; &thinsp;<i class='fa-solid fa-timeline'></i>&thinsp;Trade Pipeline</span>"
url: /docs/trade-pipeline/
- title: "<span>&nbsp; &thinsp;<i class='fa-solid fa-percent'></i> Premium</span>"
- title: "<span>&nbsp; &thinsp;&thinsp;<i class='fa-solid fa-percent'></i> Premium</span>"
url: /docs/premium/
- title: "<span>&nbsp; &thinsp;<i class='fa-solid fa-ticket-simple'></i> Bonds</span>"
url: /docs/bonds/

View File

@ -8,7 +8,7 @@ sidebar:
src: "_pages/contribute/00-contribute.md"
---
You can help RoboSats get better:
RoboSats is a fully community driven project. You can help RoboSats get better in many different ways.
1. [Development](/contribute/code/)
2. [Translations](/contribute/languages/)

View File

@ -9,4 +9,46 @@ toc: true
toc_sticky: true
src: "_pages/contribute/02-translations.md"
---
{% include wip %}
RoboSats is a way to exchange BTC for **any currency of the world**. As such, for many users this tool might only be useful if it is available in a language they can understand. Translating RoboSats into a new language is one of the most valuable contributions to the project, as it makes it available to new audience, increasing the reach of this cool freedom tool.
There isn't a lot of text in RoboSats, however it might be best to split the work with another contributor. You can poll in the telegram community @RoboSats and find users willing to split the task.
### How to contribute a new translation.
Simply create a new translation file in `frontend/src/locales` [Link to GitHub](https://github.com/Reckless-Satoshi/robosats/tree/main/frontend/src/locales). In `locales` there is a single file with a json dictionary for every language. In order to create a new translation, simply copy `en.json` (the master text) into a new file named after the language's [ISO 639 two character code](https://www.loc.gov/standards/iso639-2/php/English_list.php).
### Guidelines
Each language `.json` dictionary contains pairs of keys and values in the following format { "key1":"value1", "key2":"value2", ...}. Most keys are the literal English sentence. These simply have to be translated on the right side, for example, in order to translate the `Make Order` button to Spanish we edit the json file to look like this `{... "Make Order":"Crear Orden",...}`.
#### 1. **Not all keys are explicit sentences.**
Some keys are not the English senstence but a variable names e.g. "phone_unsafe_alert". In this case you must take a look at the value originally in `en.json`.
#### 2. **The language dictionary is split into 9 sections.**
The first key of each section is a reference and does not need to be translated. For example, the second section starts with the key:value `"USER GENERATION PAGE - UserGenPage.js": "Landing Page and User Generation"` . It does not need to be translated, it is just information for the translator to understand what part of the app he will be working on.
#### 3. **Try to keep a similar length to the original sentence.**
In most cases it will be okay if the translation is shorter. However, translations that result in a higher character count might break the UI! It might not always be possible to stick to the length of the English sentence. In those cases the UI might have to be changed, contact the responsible person for such a change.
#### 4. **Some sentences contain variables**
For example, {{currencyCode}}. It will insert the currency code where the variable is found. E.g., `"Pay 30 {{currencyCode}}"` will render as "Pay 30 USD".
#### 5. **Some sentences contain HTML tags**
These tags are usually hyperlinks. For example in `{"phone_unsafe_alert": "Use <1>Tor Browser</1> and visit the <3>Onion</3> site."}` the children text of <1> (Tor Browser) will link to the Tor Download website, and the children of <3> will link to the RoboSats Onion site.
#### 6. **It is best to translate from top to bottom of the .json file**
Some text is high priority, some other text is low priority.** Some keys are likely to change soon or they might not be so relevant for the user of the app. The translation files are sorted from top to bottom by the priority of the translation.
#### 7. Use a **spell checker**
Yes, please ;)
#### 8. **Understand the context, where will this string be displayed?**
Literal translations might not work well in some languages. While in English the wording is always similar regardless of the position in the UI, in some languages it might be very different if you are translating a button (the user is taking an action) or if you are simply translating a tooltip. It might be clever to translate the strings while looking at the app. However, many strings can only be found while trading. The testnet RoboSats site is great for this use, as you can explore the whole app simply interacting with it with a testnet lightning wallet. However, if you cannot find where a string is displayed, it might be faster to simply write a message on the telegram group @robosats.
#### 9. **Congratulate yourself**
Seriously. It's so awesome you are helping build freedom tools!

View File

@ -6,12 +6,12 @@ sidebar:
title: "<i class='fa-solid fa-rocket'></i> Quick Start"
nav: docs
---
RoboSats is an easy way to privately exchange Bitcoin for national currencies. It simplifies the peer-to-peer experience and makes use lightning hold invoices to minimize custody and trust requirements. The deterministically generated avatars help users stick to best privacy practices.
RoboSats is an easy way to privately exchange Bitcoin for national currencies It simplifies the peer-to-peer experience and makes use lightning hold invoices to minimize custody and trust requirements.
**Let's go!** To start using RoboSats you only need two things: a [<i class='fa-solid fa-wallet'></i> Lightning Wallet](/docs/wallets/) and a [TOR enabled Web Browser](/docs/tor/).
**Let's go!** To start using RoboSats you only need a [<i class='fa-solid fa-wallet'></i> Lightning Wallet](/docs/wallets/) and a [TOR enabled Web Browser](/docs/tor/).
{: .notice--primary}
1. Get a Lightning enabled Wallet
2. Get Tor Browser
3. Access RoboSats
4. Watch and read simple tutorials
1. Get a Lightning enabled [Wallet](/docs/wallets/)
2. Get [Tor Browser](https://www.torproject.org/download/)
3. Access [RoboSats](/docs/access/)
4. Watch and read simple [tutorials](/watch/en/)