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
akuma06 2646bc2db8 This is a prelimenary work
Showing how we can remove services, preventing cyclic imports and lessing the number of imports.
Now db is in models. Db and models are highly tightened, according to go standards, you should put them in the same package.
In models, there are folders separating the different methods used to modify the models. For example, if you want to create a user, you have to use /models (for the user struct) and /models/user (for creating a user.
However, if you want to delete a torrent, you just have to import /models and do torrent.Delete(definitely bool).

By the way packages in models are the plural name of a model. For example, you have torrent.go for a torrent model and its package torrents for db stuff related functions (Find, Create, Some helpers)
2017-06-29 00:44:07 +02:00
..
ca-es.json Update Catalan translation (#981) 2017-06-12 09:13:30 +10:00
de-de.all.json typo 2017-06-07 16:14:50 +02:00
en-us.all.json This is a prelimenary work 2017-06-29 00:44:07 +02:00
es-es.all.json HTML tag fixes #904 2017-06-06 22:46:05 +02:00
fr-fr.all.json Updated translation. (#1048) 2017-06-21 20:51:51 +10:00
hu-hu.all.json HTML tag fixes #904 2017-06-06 22:46:05 +02:00
is-is.all.json HTML tag fixes #904 2017-06-06 22:46:05 +02:00
it-it.all.json HTML tag fixes #904 2017-06-06 22:46:05 +02:00
ja-jp.all.json Update Japanese translation (#1070) 2017-06-25 21:20:02 +10:00
ko-kr.all.json HTML tag fixes #904 2017-06-06 22:46:05 +02:00
nb-no.all.json HTML tag fixes #904 2017-06-06 22:46:05 +02:00
nl-nl.all.json Update nl-nl.all.json 2017-06-25 01:48:21 +02:00
pt-br.all.json Updated PT-BR ~ (#1027) 2017-06-20 10:06:12 +10:00
pt-pt.all.json HTML tag fixes #904 2017-06-06 22:46:05 +02:00
README.md Update README.md 2017-06-16 19:47:51 +02:00
ro-ro.all.json HTML tag fixes #904 2017-06-06 22:46:05 +02:00
ru-ru.all.json HTML tag fixes #904 2017-06-06 22:46:05 +02:00
sv-se.all.json HTML tag fixes #904 2017-06-06 22:46:05 +02:00
th-th.all.json Update th-th.all.json (#959) 2017-06-07 21:47:49 +10:00
zh-cn.all.json HTML tag fixes #904 2017-06-06 22:46:05 +02:00
zh-tw.all.json HTML tag fixes #904 2017-06-06 22:46: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