publiccode.si/TRANSLATE.md

150 lines
6.4 KiB
Markdown
Raw Permalink Normal View History

# How to translate publiccode.eu
2017-09-07 23:08:56 +02:00
Translating the publiccode.eu website isn't really hard but may be a bit
different from what you worked with before. Before starting, please read the
[README.md](https://git.fsfe.org/pmpc/website/src/master/README.md) file which
will give you an overview of how this website is structured and built.
## Coordination
We experienced a large amount of people willing to contribute translations for
the campaign. While this is great, it requires a lot of coordination. So before
starting a translation:
- Please become member of FSFE's [translators mailing
list](https://lists.fsfe.org/mailman/listinfo/translators).
- Write to the list that you'd like to start a translation to language
XY. Please use [XY] in the mail's subject so members can filter the
languages they need
- Please check whether there are already ongoing translations in your
language by reading the latest mails in the [list's
archive](https://lists.fsfe.org/mailman/private/translators/) or
checking [open Pull
Requests](https://git.fsfe.org/pmpc/website/pulls).
More information about FSFE's translators team can be found on its [general information page](https://fsfe.org/contribute/translators/).
## Preparations
2017-09-07 23:08:56 +02:00
You should already have cloned the Git repository to your computer and be
familiar with working with Git. You find the necessary instructions and links
to tutorials in the aforementioned README file. Don't be afraid: you don't have
to be a programmer to get Git working for you :)
What you should have:
2017-09-18 14:34:29 +02:00
- An account on git.fsfe.org (see [README.md#contribute](https://git.fsfe.org/pmpc/website/src/master/README.md#contribute))
2017-09-08 12:07:54 +02:00
- Know how to clone, pull, commit, and push with Git (read the [general
2018-06-11 09:31:35 +02:00
Git guides](https://wiki.fsfe.org/TechDocs/Git) and the [typical
Git workflow](https://wiki.fsfe.org/TechDocs/Git/Workflow))
- Optional: Hugo installed on your computer
- Optional: The ability to run Bash scripts from command line
## Translatable files
2017-09-07 23:08:56 +02:00
There are a few locations where you find translatable files. All of them are
2018-03-23 14:22:30 +01:00
inside the `site/` directory. Please note that we can only accept complete
translations of the website for technical reasons, except for the video
subtitles.
### Content/
2017-09-07 23:08:56 +02:00
In `content/` are the sub-pages like [/privacy](https://publiccode.eu/privacy).
All files are written in the [Markdown
syntax](https://en.wikipedia.org/wiki/Markdown) which is very easy to learn and
much more comfortable to write and translate than HTML.
2022-04-22 16:06:12 +02:00
Note that there is also a sub-directory called `openletter` which files should
be translated as well!
2017-09-07 23:08:56 +02:00
In all files you'll find a *header* which starts and ends with `---` (three
dashes). In this header, all you have to translate is the `title:` value which
defines the title and headline of the page. The other values like `type` and
`layout` stay the same over all languages.
2017-09-07 23:08:56 +02:00
The majority of the file is just text with very little markdown syntax. You
should keep markup like `**`, `>`, `[fs]`, or `{{< fsdefinition >}}`. For
hyperlinks like `[TEXT](http://link)`, please only translate the content inside
the quare brackets (TEXT), the link has to stay the same obviously.
2018-06-11 09:31:35 +02:00
### i18n/
2018-06-11 09:31:35 +02:00
Here you can find one file for each language e.g. `en.toml` for English,
`de.toml` for German. For each language we use [ISO 3166-1 alpha2
codes](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements).
2018-06-11 09:31:35 +02:00
If your language isn't present, copy the file `en.toml` and
2017-09-07 23:08:56 +02:00
rename it according to your two-letter language code. Then open it and
translate all strings you find (there are only a few marked which you cannot
translate).
2017-09-07 23:08:56 +02:00
Some strings contain the Markdown links you already know (`[TEXT](LINK)`).
Again, please just translate the TEXT part, not the LINK.
2017-09-07 23:08:56 +02:00
At some occasions you'll find a variable like `$INDS`. Leave them as is, they
will automatically replaced by numbers or similar auto-generated content.
2017-09-07 23:08:56 +02:00
Regarding the campaign name *Public Money, Public Code*. In the past we haven't
made good experiences with translating such campaign names. All our graphics,
logos, and other communication is using this brand. So if you can, just stick
to the English term.
For information about these translation strings, please go to [the official Hugo
documentation](https://gohugo.io/content-management/multilingual/#translation-of-strings).
2018-03-23 14:22:30 +01:00
### static/video-subs/
2022-04-22 16:06:12 +02:00
In this folder you can find the time-coded subtitles for the PMPC video. They
exist in the WebVTT format. Unlike the other files, you don't necessarily need
to provide a translation of the subtitles in order to allow us to localise the
2018-03-23 14:22:30 +01:00
website.
2018-06-11 09:31:35 +02:00
### config.toml
2022-04-22 16:06:12 +02:00
To activate your new language, please add it to
[config.toml](https://git.fsfe.org/pmpc/website/src/branch/master/site/config.toml).
Please do not change any existing content here. Your entry could look
like this:
2018-06-11 09:31:35 +02:00
```
[Languages.sv]
languageCode = "sv" # <-- two letter code
languageName = "Svenska" # <-- name of your language in your language
```
2017-09-08 12:07:54 +02:00
## Where to upload the translations?
2017-09-08 12:07:54 +02:00
**Before submitting** the translations you can test them locally if you
have Hugo installed and are able to execute Bash scripts on your command
line. Please refer to [build section in
README.me](https://git.fsfe.org/pmpc/website/src/master/README.md#build)
for instructions.
2017-09-08 12:07:54 +02:00
You're welcome to work with the Git repository to upload your
translations. If you feel confident enough with Git, please open a pull
request of a separate branch in this repository or your fork. @max.mehl
can help you if you have questions or lack permissions.
For Git, there are three ways which are explained in the aforementioned
build README section:
2022-04-22 16:06:12 +02:00
1. Git Pull Requests from your repository forks
2017-09-08 12:07:54 +02:00
2. Git pushes to the central master branch (requires write access)
3. Edit the files directly in the git.fsfe.org web interface (requires
write access)
2017-09-07 23:08:56 +02:00
If you are unsure, you can also send the translations to [FSFE's translators
list](https://lists.fsfe.org/mailman/listinfo/translators) to let them
proofread by other speakers of your language.
## How to show missing translations?
2022-04-22 16:06:12 +02:00
If a string in your language isn't translated, the default English
version will be used. To find out which parts are missing, you need
`hugo` installed on your computer.
2022-04-22 16:06:12 +02:00
Please navigate to the `site/` subdirectory and execute `hugo
--i18n-warnings | grep i18n`. This shows a list of all missing
translations of all languages. Please look out for your language code
in the third column. The fourth column shows the name of the string
which is missing in your i18n file.