Difference between revisions of "Addons:Language"
Jump to navigation
Jump to search
Line 12: | Line 12: | ||
$language['payment_pending'] = 'Your payment is pending...'; | $language['payment_pending'] = 'Your payment is pending...'; | ||
... | ... | ||
+ | |||
+ | |||
+ | [[Category:Addons]] |
Revision as of 09:40, 21 May 2017
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 $language['<identifier>'] = '<translation>'. For example:
$language['changes_unsaged'] = 'Unsafed Changes'; $language['category_create'] = 'Create Category'; $language['payment_pending'] = 'Your payment is pending...'; ...