Quote:
Originally Posted by merkaz
One more suggestion for this mod ..
for example :
In arabic , pages direction is rtl
In english its ltr
it's nice if the mod make the page direction Based on the langauge .
Sorry about my poor english :$ .
|
Right now if you want somesthing to stay not translated at all it is easiest to set 2 lines of code in vb Global Translator hook. First:
Code:
$output = str_replace("NOT_TRANSLATED_TEXT", "<NOT_TRANSLATED_TEXT>", $output);
just before:
Code:
$output=callback($output);
and:
Code:
$output = str_replace("<NOT_TRANSLATED_TEXT>", "NOT_TRANSLATED_TEXT", $output);
just after it. Of course have to change
NOT_TRANSLATED_TEXT to somesthing real. Dave is working on making it product right now, so hope it will be configurable soon