Working on join (+ small readme fix)

Signed-off-by: HackerNCoder <hackerncoder@encryptionin.space>
This commit is contained in:
HackerNCoder 2022-12-21 04:30:23 +00:00
parent 6572a04b80
commit c11236860a
2 changed files with 5 additions and 5 deletions

View file

@ -6,7 +6,7 @@ It is available from:
- [github](https://github.com/queerscriptors/queerscriptors.org) - [github](https://github.com/queerscriptors/queerscriptors.org)
- [gitlab](https://gitlab.com/queerscriptors/queerscriptors.org) - [gitlab](https://gitlab.com/queerscriptors/queerscriptors.org)
I do not always visit github and gitlab, so either send me an email (hackerncoder@<canonical without lab.>) or ping me on matrix (or if you use discord, general is bridged to matrix so write there) I do not always visit github and gitlab, so either send me an email (hackerncoder@[canonical without lab.]) or ping me on matrix (or if you use discord, general is bridged to matrix so write there)
--- ---

View file

@ -22,8 +22,8 @@
</div> </div>
<div class="card-body"> <div class="card-body">
<p>Once you've created an account you will probable see your dashboard, it's empty since you haven't started working on any translations, so lets fix that. If there are projects where translations in your language have already been started they will be shown in "Suggested translations".</p> <p>Once you've created an account you will probable see your dashboard, it's empty since you haven't started working on any translations, so lets fix that. If there are projects where translations in your language have already been started they will be shown in "Suggested translations".</p>
<p>To find all projects (games) go up to the top and select "Projects" then "Browse all projects". As if writing there are two projects I would recommend working on: Butterfly Soup 2 and website (that's this thing) if you click on either you will find that there are two "components" one is probably called the same as the project: you do not want that one, that is the glossary. The actual translation happens in the other one, we try to name it "translate" or "translations" (or something along those lines) but it can be named anything.</p> <p>To find all projects (games) go up to the top and select "Projects" then "Browse all projects". As of writing there are two projects I would recommend working on: Butterfly Soup 2 and website (that's this thing) if you click on either you will find that there are two "components" one is probably called the same as the project: you do not want that one, that is the glossary. The actual translation happens in the other one, we try to name it "translate" or "translations" (or something along those lines) but it can be named anything.</p>
<p>Once you have found the translations component of the project/game you want to translate you will see a list of languages, maybe yours is in that list, if so just click on it a skip the rest of this paragraph. If not you will want to add your language, most likely weblate will be helpful and show it at the top of the list with a + to the left, you can just click that +. Otherwise use "Start new translation" at the bottom of the list. Then search for your language and choose it and click on "Start new translation", it will take some time to work through everything, so be patient. Once it is done you will be taken to the newly created language</p> <p>Once you have found the translations component of the project/game you want to translate you will see a list of languages, maybe yours is in that list, if so just click on it a skip the rest of this paragraph. If not you will want to add your language, most likely weblate will be helpful and show it at the top of the list with a + to the left, you can just click that +. Otherwise use "Start new translation" at the bottom of the list, then search for your language and choose it and click on "Start new translation". It will take some time to work through everything, so be patient. Once it is done you will be taken to the newly created language</p>
<p>You can now click "Translate" and begin translating! (Also check out Zen mode, found in the upper right corner once you have clicked translate)</p> <p>You can now click "Translate" and begin translating! (Also check out Zen mode, found in the upper right corner once you have clicked translate)</p>
</div> </div>
</div> </div>
@ -37,7 +37,7 @@
<details> <details>
<summary>Ren'Py</summary> <summary>Ren'Py</summary>
<ul> <ul>
<li>As said above, there are characters that are special and therefore need special treatment, e.g. %% or \% instead of % and \\ instead of \. Most likely you will find these things are also in the source language, so you can just copy it over</li> <li>As said above, there are characters that are special and therefore need special treatment, e.g. <code>%%</code> or <code>\%</code> instead of <code>%</code> and <code>\\</code> instead of <code>\</code>. Most likely you will find these things are also in the source language, so you can just copy it over</li>
<ul> <ul>
<li>A full list of special characters <a href="https://renpy.org/doc/html/text.html#escape-characters">can be found in the Ren'Py documentation</a>.</li> <li>A full list of special characters <a href="https://renpy.org/doc/html/text.html#escape-characters">can be found in the Ren'Py documentation</a>.</li>
</ul> </ul>
@ -46,7 +46,7 @@
<li>A full list of what chars and names correspond to what output <a href="https://www.renpy.org/doc/html/text.html#styling-and-text-tags">can be found in the Ren'Py documentation</a>.</li> <li>A full list of what chars and names correspond to what output <a href="https://www.renpy.org/doc/html/text.html#styling-and-text-tags">can be found in the Ren'Py documentation</a>.</li>
</ul> </ul>
</li> </li>
<li>For RTL languages: Usage of <code><i>char</i></code> inside the string, things like <code>{w=0.35}</code>, seem to break Ren'Py. Usage of things like <code>{big}</code> which surround the string seem to be fine.</li> <li>For RTL languages: Usage of <code>{<i>char</i>}</code> inside the string, things like <code>{w=0.35}</code>, seem to break Ren'Py. Usage of things like <code>{big}</code> which surround the string seem to be fine.</li>
</ul> </ul>
</div> </div>
</div> </div>