X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=support%2Fdoc%2Ftranslation.md;h=58b52f5f80316d4c6e6c3c452e0835177f1871d6;hb=512a575971874a8d271ba245bbb4d02ff24a668e;hp=3ad239278c1e4067671a9d4fce654413d1ec9c66;hpb=2336a0e7fb5d3d4c6d1489e6882b1fa24975d8c7;p=github%2FChocobozzz%2FPeerTube.git diff --git a/support/doc/translation.md b/support/doc/translation.md index 3ad239278..58b52f5f8 100644 --- a/support/doc/translation.md +++ b/support/doc/translation.md @@ -8,9 +8,9 @@ If you don't see your locale in the platform, please [create an issue](https://g ## How to - * Create an account: https://trad.framasoft.org/zanata/ - * Join a language team: https://trad.framasoft.org/zanata/languages - * Go to the PeerTube page https://trad.framasoft.org/zanata/iteration/view/peertube/develop/languages/fr + * Create an account: https://trad.framasoft.org/account/register + * Join a language team: https://trad.framasoft.org/languages + * Go to the PeerTube page https://trad.framasoft.org/iteration/view/peertube/develop * Choose the locale and begin to translate PeerTube! @@ -18,7 +18,33 @@ If you don't see your locale in the platform, please [create an issue](https://g There are 4 files: * **angular**: contains client strings - * **player**: contains player strings - * **server**: contains server strings (language, licence...) + * **player**: contains player strings. + Most of the strings come from VideoJS, so you can help yourself by using [video.js JSON files](https://github.com/videojs/video.js/tree/master/lang) + * **server**: contains server strings (privacies, licences...) * **iso639**: contains iso639 (languages) strings used by PeerTube to describe the audio language of a particular video. It's the reason why these strings should be translated too. There are many strings so do not hesitate to translate only main audio languages. + +## Tips + +### Special tags + +You must not translate special tags like ``. + +For example: +``` - views``` + +should be in french +``` - vues``` + + +### Singular/plural + +For singular/plural translations, you must translate values inside `{` and `}`. + +For example: + +```{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other { videos} }``` + +should be in french + +```{VAR_PLURAL, plural, =0 {Aucune vidéos} =1 {1 vidéo} other { vidéos} }```