216d241143
* alt attribute for ads images * fix <tr> too much * fix missing <tr> that created HTML error * fix wrong translation string name * ditto * fix accepted tags not having background on classic * Put tag table inside upload table * Update classic.css * Remove prefix of dlsite tag on view * Update main.css * 10px bigger website * fix wrong css selector * fix markdown scroll visually broken in classic.css * Add magnet link on torrent file not found page * don't show magnet <a> if empty * Fetch magnet link in download.go and pass it on to torrent_file_missing * add magnet in template_test |
||
---|---|---|
.. | ||
ca-es.json | ||
CHANGELOG.md | ||
de-de.all.json | ||
en-us.all.json | ||
es-es.all.json | ||
fr-fr.all.json | ||
hu-hu.all.json | ||
in-id.all.json | ||
is-is.all.json | ||
it-it.all.json | ||
ja-jp.all.json | ||
ko-kr.all.json | ||
nb-no.all.json | ||
nl-nl.all.json | ||
pt-br.all.json | ||
pt-pt.all.json | ||
README.md | ||
ro-ro.all.json | ||
ru-ru.all.json | ||
sv-se.all.json | ||
th-th.all.json | ||
zh-cn.all.json | ||
zh-tw.all.json |
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