Addons:Language

From GExtension Wiki
Revision as of 09:59, 30 August 2020 by Ibot3 (talk | contribs) (→‎Content)
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 $language['<identifier>'] = '<translation>'. For example:

$language['changes_unsafed'] = 'Unsafed Changes';
$language['category_create'] = 'Create Category';
$language['payment_pending'] = 'Your payment is pending...';
...