Updated 26 June 2025
The open-source AureusERP system is designed to support multiple languages. This helps global teams use the system in their own language, making it easier to understand and work with.
By offering easy translation options, AureusERP allows users to switch to the language they are most comfortable with. This improves teamwork, reduces mistakes, saves training time, and helps businesses follow local rules.
1. Work with Global Teams Easily
Teams in different countries speak different languages. With multi-language support in ERP like AureusERP, everyone can use the system in their own language. This improves understanding and teamwork
2. Follow Local Laws
Some countries need documents like invoices or tax forms in the local language. AureusERP can create these documents in the right language, helping your business stay legal and efficient.
3. Faster Training and Easy Use
When users see the system in their native language, it’s easier to learn and use. This saves training time and boosts productivity.
Each AureusERP module (like Sales, Invoices, or Purchases Order) includes its own language files. This modular structure makes ERP translation management simple and scalable.
Let’s take the Invoice plugin as an example to show how you can add a new language in AureusERP. In this case, we’ll add support for the Arabic language.
Navigate to the language folder of the Invoice plugin:
plugins/webkul/invoices/resources/lang/
You’ll typically find a default en
folder (English).
Create a new folder named ar
inside the following path:
plugins/Webkul/invoices/resources/lang/ar
Inside this folder, add PHP files corresponding to each language section (e.g., auto-post-bills.php
, invoice-status.php
, etc.). Define the translation keys and provide their Arabic equivalents in each file.
Edit the files inside the new ar
folder and translate all key value pairs.
Example: auto-post-bills.php
Original (English):
<?php
return [
'always' => 'Always',
'ask' => 'Ask after 3 validations without edits',
'never' => 'Never',
];
Translated (Arabic):
<?php
return [
'always' => 'دائمًا',
'ask' => 'اسأل بعد 3 عمليات تحقق بدون تعديلات',
'never' => 'أبدًا',
];
Repeat this process for all translation files in the folder.
Open the .env
file in your project root and set the locale:
APP_LOCALE=ar
This activates Arabic across AureusERP’s interface and modules as shown below.
Adding multi-language support in AureusERP is easy and powerful. With just a few steps, you can make the system more user-friendly for teams around the world. By using Arabic as an example, we showed how you can translate modules like Invoices quickly. This helps improve user experience, saves time, and keeps your business ready for global growth.
Want to enable multi language support in AureusERP but need help?
Feel free to raise a ticket at our Support Portal
Tell us about Your Company
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.