Appearance
Setting the Default Application Language
Last updated: 13 Oct 2025
GoBiz allows you to set the application's default language in two ways. We recommend using the Admin Panel, as it does not require editing any configuration files.
Method 1: Using the Admin Panel (Recommended)
Log in to the GoBiz Admin Panel and navigate to:
Settings → General Settings → Default Language
Select your preferred default language from the dropdown menu and save the changes.

Method 2: Editing the Configuration File
If you cannot access the Admin Panel, you can manually change the default language by editing the application configuration.
Open your hosting File Manager (or any server file manager) and navigate to:
text
PROJECT_ROOT/config/app.php
Locate the following configuration:
php
'locale' => 'en',Replace en with your preferred language code.
For example, to set French as the default language:
php
'locale' => 'fr',Save the file after making the change.

Finding Your Language Code
GoBiz uses standard ISO 639 language codes to identify languages.
You can find the appropriate language code here:
https://meta.wikimedia.org/wiki/Template:List_of_language_names_ordered_by_code
Examples
| Language | Code |
|---|---|
| English | en |
| French | fr |
| German | de |
| Spanish | es |
| Italian | it |
| Portuguese | pt |
| Arabic | ar |
| Hindi | hi |
| Tamil | ta |
| Chinese | zh |
| Japanese | ja |
