Skip to main content

Language

d
Written by dhru soft
Updated over 3 months ago

Language Files

All client-facing text strings are stored in the language files, which can be edited or translated.

Adding a New Language

1. Duplicate English.txt from the /language/ directory.

2. Rename the file (e.g., Spanish.txt) β€” no special characters.

3. Translate all the strings inside the file.

4. Save and upload the file to the /language/ directory.

⚠️ Be careful not to delete quotation marks (") or semicolons (;) to avoid syntax errors.

Editing Existing Language Strings

You can modify any existing label by editing the relevant language file.

Example:

Original in English.txt:

$lng_languag["validationerror"] = 'value is not valid';

Updated:

$lng_languag["validationerror"] = 'invalid value';

Save and re-upload the updated file to apply the changes.

Did this answer your question?