Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/translations
Lamppostmanufacturer 846e9d2b8a Translation Overhaul #2 (#1345)
* Update it-it.all.json

* Update nl-nl.all.json

* Update pt-br.all.json

* Update pt-pt.all.json

* Update ro-ro.all.json

* Update th-th.all.json
2017-08-04 16:05:59 +02:00
..
ca-es.json Update Catalan translation (#1326) 2017-08-03 11:15:30 +10:00
de-de.all.json Update de-de.all.json 2017-08-03 14:39:50 +02:00
en-us.all.json Update en-us.all.json (#1343) 2017-08-04 14:50:30 +02:00
es-es.all.json Update es-es.all.json 2017-08-03 14:46:49 +02:00
fr-fr.all.json Updated translation. (#1347) 2017-08-04 15:18:51 +02:00
hu-hu.all.json Update hu-hu.all.json 2017-08-03 14:47:45 +02:00
is-is.all.json Update is-is.all.json 2017-08-03 14:48:15 +02:00
it-it.all.json Translation Overhaul #2 (#1345) 2017-08-04 16:05:59 +02:00
ja-jp.all.json Update ja-jp.all.json (#1348) 2017-08-04 15:40:30 +02:00
ko-kr.all.json Update ko-kr.all.json 2017-08-03 14:48:46 +02:00
nb-no.all.json Update nb-no.all.json 2017-08-03 14:49:28 +02:00
nl-nl.all.json Translation Overhaul #2 (#1345) 2017-08-04 16:05:59 +02:00
pt-br.all.json Translation Overhaul #2 (#1345) 2017-08-04 16:05:59 +02:00
pt-pt.all.json Translation Overhaul #2 (#1345) 2017-08-04 16:05:59 +02:00
README.md Update README.md 2017-06-16 19:47:51 +02:00
ro-ro.all.json Translation Overhaul #2 (#1345) 2017-08-04 16:05:59 +02:00
ru-ru.all.json Update ru-ru.all.json 2017-08-03 14:49:54 +02:00
sv-se.all.json Update sv-se.all.json 2017-08-03 14:50:34 +02:00
th-th.all.json Translation Overhaul #2 (#1345) 2017-08-04 16:05:59 +02:00
zh-cn.all.json Update zh-cn.all.json 2017-08-03 14:50:50 +02:00
zh-tw.all.json Update zh-tw.all.json 2017-08-03 14:51:05 +02:00

Contributing to translation

You can add your own language support or edit it easily to the website.

Add a language

To add a language you need to copy /translations/en-us.all.json and translate the strings beside the "translation" key. Do not edit "id" which is the id used to display the translation.

You can also, if you have the website installed, create an empty languageCode.all.json (eg. en-us.all.json) and use the following command:

cd translations && goi18n -flat false en-us.all.json languageCode.all.json you need to replace languageCode with the actual language code (eg. en-us)

A new file languageCode.untranslated.json will be created with the new translation strings. Translate them and when it's done, run the following command:

goi18n -flat=false en-us.all.json languageCode.all.json languageCode.untranslated.json you need to replace languageCode with the actual language code (eg. en-us)

After creating a new translation, create a new translation string inside "en-us.all.json", like the following:

    ...
    },
    {
        "id": "language_(languageCode)_name",
        "translation": "(your language name, in English)"
    },
    ...

where languageCode is the newly created ISO code (eg. ja-jp, pt-br).

Before pulling, be sure to delete .unstranslated.json file

Edit a language

To edit a language you can keep tracking of new strings added to en-us.all.json with the use of git and add the new strings manually to your file.

Or you can also, if you have the website installed, use the following command: cd translations && goi18n -flat false en-us.all.json languageCode.all.json you need to replace languageCode with the actual language code (eg. en-us)

A new file languageCode.untranslated.json will be created with the new translation strings. Translate them and when it's done, run the following command:

goi18n -flat=false en-us.all.json languageCode.all.json languageCode.untranslated.json you need to replace languageCode with the actual language code (eg. en-us)

Before pulling, be sure to delete .unstranslated.json file