That will require a mod.freeland88 wrote:is it somehow possible to put the language in the link linking to the forum? (i'm thinking of something like '/forum/index.php?sid=XXX&lang=en' or similar).
The only way I am aware of to do that would be to enter the names in the different languages.freeland88 wrote:is there a way to make the category and forum names and descriptions in different languages, so that every visitor from eg spain or france could read the forum name and description in spanish / french!?
Do you mean entering the name of a forum in every language? like "Support/aide/ayuda/Hilfe"? And the description to it also?david63 wrote:The only way I am aware of to do that would be to enter the names in the different languages.
I do not think that there is but I have an idea that somebody did suggest it fairly recently - you could take a look through the mod requests forum.freeland88 wrote:o you know if there is a modification like that out for phpbb3?
The problem with that idea is that the forum names are held in the database - not the language file, so you would need to have some kind of online/"on the fly" translation tool to do it.freeland88 wrote:maybe it would be possible to use the language file? like enter the forum title in every language file, upload it and let the script call it? are you familiar with the language-file programming of phpbb?
Hellodavid63 wrote: The problem with that idea is that the forum names are held in the database - not the language file, so you would need to have some kind of online/"on the fly" translation tool to do it.
Code: Select all
<dd><input class="text medium" type="text" id="forum_name" name="forum_name" value="{FORUM_NAME}" maxlength="255" /></dd>
Code: Select all
<dd><textarea name="forum_name" rows="2" cols="45">{FORUM_NAME}</textarea></dd>
Code: Select all
function split_name2languages ($input, $lang) {
$tmp = explode('#', $input);
switch ($lang) {
case 'de': $l=1; break;
case 'fr': $l=2; break;
case 'fr-standard': $l=2; break;
case 'it': $l=3; break;
case 'en': $l=4; break;
case 'en-gb': $l=4; break;
default: $l=0; break;
}
if ($tmp[$l]=='') {
$out=$tmp[0];
} else {
$out=$tmp[$l];
}
return $out;
}
Code: Select all
FORUM_NAME' => $row['forum_name'],
Code: Select all
'FORUM_NAME' => split_name2languages($row['forum_name'],$user->data['user_lang']),
... this should be helpfuldavid63 wrote:That will require a mod.freeland88 wrote:is it somehow possible to put the language in the link linking to the forum? (i'm thinking of something like '/forum/index.php?sid=XXX&lang=en' or similar).
From the zip;iSkywalker wrote:Rufuz,
What does it do. That site just shows some download links but there are no information of what they are.
So users can select the language , domainname.com/phpBB3/index.php?lang=nl or something like thatMOD Description wrote:Allows users to quickly change their language by adding ?lang= to the URL.
Here is the related post:iSkywalker wrote:Rufuz,
What does it do. That site just shows some download links but there are no information of what they are.