Need Help with localization php code to include languages


Hello there,

I have a CMS which I've trying to create localization for. The idea is in the admin area you check a radio button and it changes the language of the entire admin interface. There is a mysql database with a table called nb_settings that has a column called lang. Up to this point I've gotten it to work but am having problems adding additional languages. The localization files have names like lang.nl.php,lang.en.php and so on..

The original code that works is this:

<?php
if($row['lang'] == nl)
{
echo '<input name="lang" type="radio" value="nl" checked="checked" /> '.($_CONSTANTS['NL']).'
'.($_CONSTANTS['EN']).'
'.($_CONSTANTS['DE']).'';
}
elseif($row['lang'] == en)
{
echo ' '.($_CONSTANTS['NL']).'
'.($_CONSTANTS['EN']).'
'.($_CONSTANTS['DE']).'';
}
elseif($row['lang'] == de)
{
echo ' '.($_CONSTANTS['NL']).'
'.($_CONSTANTS['EN']).'
'.($_CONSTANTS['DE']).'';
}
?>

But I am havng trouble adding for more languages. Can anyone help me out with how to add additional languages?

Comments

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion