Translation
We use Weblate as translation platform. Please do not edit translation files directly from Git, you have to use Weblate!
If you don't see your locale in the platform you can add it directly in the Weblate interface. Then, if you think there are enough translated strings, please create an issue so we add the new locale in PeerTube!
Translations are manually pulled and merged in PeerTube software and are publicly available in the next official release. You can get a chance to see translations before the official release by going to https://peertube2.cpy.re which is updated every night with the latest PeerTube changes.
How to
- Create an account: https://weblate.framasoft.org/accounts/register/
- Validate your email and follow the link sent
- Create your password (keep the
Current password
field empty) and set up your account - To translate the PeerTube web, visit the PeerTube project page: https://weblate.framasoft.org/projects/peertube/
- To translate the PeerTube mobile application, visit the PeerTube App project page: https://weblate.framasoft.org/projects/peertube-app/
- Choose the file and the locale you want to translate
Files
There are 4 files:
- angular: contains client strings
- player: contains player strings. Most of the strings come from VideoJS, so you can help yourself by using video.js JSON files
- server: contains server strings clients can fetch in JSON format so they don't have to translate common PeerTube strings themselves (iso639 languages, privacies, licences...)
- server-internal: contains internal server strings used in the REST API responses or emails
Tips
Special tags
You must not translate special tags like <x id="INTERPOLATION" ... />
.
For example:
<x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> views
should be in French
<x id="INTERPOLATION" equiv-text="{{ video.publishedAt | myFromNow }}"/> - <x id="INTERPOLATION_1" equiv-text="{{ video.views | myNumberFormatter }}"/> vues
Singular/plural
For singular/plural translations, you must translate values inside {
and }
. Please don't translate the word other
For example:
{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> videos} }
should be in French
{VAR_PLURAL, plural, =0 {Aucune vidéo} =1 {1 vidéo} other {<x id="INTERPOLATION" equiv-text="{{ playlist.videosLength }}"/> vidéos} }