Page 1 of 1

Re: CompanyDirectory

Posted: Wed Oct 21, 2009 3:15 pm
by tyman00
Translations are dependenant on the translation team. You will have to sweet talk a Dutch member of the translations team to translate it for you.

You can put a feature request for various options for the module in the Feature Request section of the modules profile in the Forge at dev.cmsmadesimple.org.

Re: CompanyDirectory

Posted: Wed Oct 21, 2009 7:38 pm
by Coldman
What I can see is this module already translated.
found nl_NL in lang/ext folder for CompanyDirectory

Re: CompanyDirectory

Posted: Wed Oct 21, 2009 7:41 pm
by RonnyK
Issue was different... The yes/no in this case is coming from logic, not from lang-files....  So the logicals, made the yes/no.

Ronny

Re: CompanyDirectory

Posted: Thu Oct 22, 2009 6:22 pm
by RonnyK
The labels are put with true/false in the output.

You could make the label translatable by modifying the following in your CD-template:
{$customfield->name}: {$customfield->value}

into:
{$customfield->name}: {$mod->Lang($customfield->value)}
In the lang-file add:
$lang['true'] = 'Waar';
$lang['false'] = 'Onwaar';
Ronny