Translate MixERP
MixERP places the language files into the database, which means that you would have to first set up your development environment.
Now, once you have the latest MixERP database, run the following query:
SELECT * FROM localization.get_localization_table('fr');
if you want to translate MixERP in French or improve the current translation. The result will be something like:
id | resource_class | key | original | translated |
---|---|---|---|---|
... | ... | ... | ... | ... |
5 | DbErrors | P3007 | Invalid value date. | Invalid date de valeur. |
... | ... | ... | ... | ... |
125 | Labels | ThisFieldIsRequired | This field is required. | Ce champ est obligatoire. |
... | ... | ... | ... | ... |
- Click here on how to save the result set to a file
- Translate the column translated to your language.
- Discuss and send your translation to community forums.