CoreBOSBB

Full Version: [solved] Translating module for specific installation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How I can use a translating module to change, for example name module in only one installation ?

I means I don't wish change name of module for all, but only for one client

Is possible?
In that installation create a file called pt_br.custom.php and put inside an array with the specific translation you want for that install:



PHP Code:
<?php
$custom_strings 
= array (
   'label to translate' => 'your translation'
}; 


you can put any label that exists in the main language file you want to override.
These pt_br.custom.php language files must be inside the same directory that the pt_br.lang.php file is.
Thanks!

=)