CoreBOSBB

Full Version: [ solved ] pt_br file for payments module
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I revised some terms for payments module
Please use custom_strings for this
Sorry, dont understand ...

I revised all terms for cobropago and missed terms in pt_lang file ..
create a file named like this:


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
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?
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
Thanks!