Difference between revisions of "Addons:Language"

From GExtension Wiki
Jump to navigation Jump to search
Line 8: Line 8:
  
 
After that, language strings can be added with the pattern $language['<identifier>'] = '<translation>'. For example:
 
After that, language strings can be added with the pattern $language['<identifier>'] = '<translation>'. For example:
  $language['changes_unsaged'] = 'Unsafed Changes';
+
  $language['changes_unsafed'] = 'Unsafed Changes';
 
  $language['category_create'] = 'Create Category';
 
  $language['category_create'] = 'Create Category';
 
  $language['payment_pending'] = 'Your payment is pending...';
 
  $language['payment_pending'] = 'Your payment is pending...';

Revision as of 09:59, 30 August 2020

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...';
...