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
kilo 870b72f1e9 "No comments" message, avatar in comments, classic theme improvements, some other changes, Old Navigation (#1545)
* Update view.jet.html

* Update en-us.all.json

* Update view.jet.html

* Update CHANGELOG.md

* fix travis

* Update classic.css

* Update view.jet.html

* Update main.css

* Update classic.css

* Update classic.css

* Update classic.css

* add link to user page & avatar in comment

* stylisation for avatar in main.css

* Update classic.css

* Fix wrongly placed ::before

* Add rule list to terms of service

* import rules on register

* fix refine-container-2's inputs

* Update base.jet.html

* Update en-us.all.json

* Update CHANGELOG.md

* GenNav changes to constantly put HTML for nav arrows regardless of page

* css changes for website nav etc etc

* add OldNav global variable

* Add OldNav to test.go

* Update publicSettings.go

* change OldNav's value type

* Old navigation in settings

* add OldNav in user variables

* add oldNav input handler in settings.go

* Change OldNav's default value into false

* Create OldNav.jet.html

* Update search.jet.html

* remove character that had nothing to do here

* fix wrong variable name

* fix worng variable name and travis

* Update classic.css

* Add sort order & type to old nav

* add toString() function in test

* add toString() function

* translation string for oldnav setting

* Use translation string in settings.jet.html

* fix few html errors

* ditto

* travis fix test

* remove useless charset

* remove useless things

* add spaces before attributes

* attempt at fixing travis 2

* fix wrong variable name

* Update classic.css

* fix travis plsss
2017-09-11 19:45:39 +02:00
..
ca-es.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
CHANGELOG.md "No comments" message, avatar in comments, classic theme improvements, some other changes, Old Navigation (#1545) 2017-09-11 19:45:39 +02:00
de-de.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
en-us.all.json "No comments" message, avatar in comments, classic theme improvements, some other changes, Old Navigation (#1545) 2017-09-11 19:45:39 +02:00
es-es.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
fr-fr.all.json Updated translation. (#1546) 2017-09-11 00:43:55 +02:00
hu-hu.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
in-id.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
is-is.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
it-it.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
ja-jp.all.json Update ja-jp.all.json (#1547) 2017-09-11 13:22:49 +02:00
ko-kr.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
nb-no.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
nl-nl.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
pt-br.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
pt-pt.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
README.md Update README.md 2017-06-16 19:47:51 +02:00
ro-ro.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
ru-ru.all.json Update ru-ru.all.json (#1532) 2017-09-08 12:52:11 +02:00
sv-se.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
th-th.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
zh-cn.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05:00
zh-tw.all.json Update doko.moe to uw0.xyz 2017-09-05 17:37:52 -05: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