Addons:Language
Jump to navigation
Jump to search
Language files should be named after this pattern: <2-digit-country-code>.php
For example de.php, fr.php or en.php
Content
The file must contain the following to access the language variable:
global $language;
After that, language strings can be added with the pattern $languag['<identifier>'] = '<translation>'. For example:
$language['changes_unsaged'] = 'Unsafed Changes'; $language['category_create'] = 'Create Category'; $language['payment_pending'] = 'Your payment is pending...'; ...