21 lines
1.2 KiB
PHP
21 lines
1.2 KiB
PHP
<?PHP
|
|
// Open this site on your webserver for a better readable
|
|
echo 'When you want to add a new language, you can take the current<br>';
|
|
echo 'language file like "core_en_english_gb.php".<br><br>';
|
|
echo 'Copy and paste the new file inside this folder (languages/)<br><br>';
|
|
echo '<u>Naming convention:</u><br>';
|
|
echo '- fix beginning with "core"<br>';
|
|
echo '- seperator with underscore "_"<br>';
|
|
echo '- 2 digits with country code (https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)<br>';
|
|
echo '- seperator with underscore "_"<br>';
|
|
echo '- name of the language; do NOT translate the name in english, use the native name instead!<br>';
|
|
echo '- seperator with underscore "_"<br>';
|
|
echo '- code of the country flag (libs/flags/) - without file extension<br>';
|
|
echo '- file extension ".php"<br><br><br>';
|
|
echo 'Translate the textes to the wished language inside your copied file.<br>';
|
|
echo 'Be sure, you are using encoding UTF-8 (without BOM!).<br><br>';
|
|
echo 'Send the translated file to admin@ts-n.net<br>';
|
|
echo 'We will implement it with the next release!<br><br>';
|
|
echo '<b>Thx for all who supports this project!!!</b><br>';
|
|
echo 'We will honor you and name you on the info page.';
|
|
?>
|