This guide applies to FileRun version
2026.0.1or newer
Adding a new language is done by creating a new folder inside customizables/translations.
The name of the folder will be the name of the language.
The romanian translation is the reference one. That is, the translation which is the most carefully adjusted so that it matches the logic and the nuance of the text utilization throghout the application.
It can be found inside apps/Core/!includes/translations/romanian.
Here is an example on how you customize a single phrase (Sign in from the login page):
mkdir customizables/translations/french (french is used for this example)apps/Core/!includes/translations/romanian, to find its location. You will find Sign in inside the Core/Login.php file.customizables/translations/french/Core.customizables/translations/french/Core/Login.php. 1<?php
2return [
3 'Sign in' => 'Connexion',
4];