04-25-2019, 10:10 PM
04-26-2019, 09:21 PM
Please use custom_strings for this
04-26-2019, 09:58 PM
Sorry, dont understand ...
I revised all terms for cobropago and missed terms in pt_lang file ..
I revised all terms for cobropago and missed terms in pt_lang file ..
04-26-2019, 10:14 PM
create a file named like this:
modules/CobroPago/language/pt_br.custom.php
and put this inside:
that will override the default application translations
modules/CobroPago/language/pt_br.custom.php
and put this inside:
PHP Code:
<?php
$custom_strings = array (
** put your translations here **
);
?>
that will override the default application translations
04-28-2019, 05:58 PM
Let me know how translation works in actually version
There are a file, with language in each language module, table translation, and now, custom_string too?
For default how system works with each file/bd table actually?
There are a file, with language in each language module, table translation, and now, custom_string too?
For default how system works with each file/bd table actually?
04-29-2019, 07:57 AM
the escalation is like this:
- search for the string in modules/MODULE/language/xx_xx.lang.php
- search for the string in include/language/xx_xx.lang.php
- search for the string in modules/MODULE/xx_xx.custom.php
- search for the string in Translation module
- return given string
you use xx_xx.custom.php to create custom translations for your clients that will not enter in conflict with the base translation files
- search for the string in modules/MODULE/language/xx_xx.lang.php
- search for the string in include/language/xx_xx.lang.php
- search for the string in modules/MODULE/xx_xx.custom.php
- search for the string in Translation module
- return given string
you use xx_xx.custom.php to create custom translations for your clients that will not enter in conflict with the base translation files
04-29-2019, 11:06 AM
Thanks!