Log in

View Full Version : hack for multiple language support


divisortheory
10-06-2005, 05:10 PM
Well, this is my last attempt at getting help with this problem. I really wish I was better at PHP so I didn't have to keep coming back here and posting this and getting no response, but anyway...

My forum supports multiple languages using the Phrase Manager. This works great for menus, standard text, etc but it doesn't work for the title and description of each forum. The reason is that in the Admin CP I am only allowed to choose one and only name for the forum. Now, regardless of what Language a visitor to the forum chooses, they will only see the one and only one title that I have chosen for the forum (likewise with description).

What I would like is to be able to add a phrase through Phrase Manager, and insert a translation for all of the languages that my forum supports. Then, somehow have the title and description fields reference these variable, and have the vBulletin system choose the correct translation based on the language setting. Just as an example, say I have a simple forum with only one forum called Milk. My forum supports two langauges, English & Spanish. If the user has selected English, I want it to say "Milk", and if the user has selected Spanish, it should say "Leche".

I looked at index.php, and I see some code that could maybe potentially be changed. (btw, I don't know -anything- about PHP although I am experienced in other non web related languages, so I just pinpointed this as potential code, I don't know specifically what its doing)

foreach ($parentlist AS $forumID)
{
$forumTitle =& $vbulletin->forumcache["$forumID"]['title'];
$navbits['forumdisplay.php?' . $vbulletin->session->vars['sessionurl'] . "f=$forumID"] = $forumTitle;
}

What would be some appropriate code to do it and where would I put that code?

Thanks kindly for any suggestions
Zachary Turner

Daniel
10-06-2005, 05:46 PM
Possibly if you post in the correct section, you'd get more help.

Cyricx
10-06-2005, 06:26 PM
First off, yeah wrong forum :)

Second off, not sure if it's possible but perhaps someone else can clue in on this.

First off, lets use the milk example.

Name a forum "milk"

Then add a hook in global_start to do something like


$forum[title] = $vbphrase[forumnames_$forum[title]];


Now, create a global phrase called

forumnames_milk

with a translation for each language Milk, Leche, etc

Wonder if that would work...

If not, you'll have to do like a mass replace in the templates changing

$forum[title]

to

$vbphrase[forumnames_$forum[title]]

and then add a global phrase.

Do that for each forum, that's prolly your best bet *shrug*

divisortheory
10-06-2005, 06:41 PM
Yea I realized after I posted it this was the wrong forum. But then again, I also posted it another more appropriate forum a few days ago, and no response. Anyway thanks for the suggestion, sorry again about the wrong forum :ermm:

Just curious, would it work to actually use Admin CP to set the name and description of the forum to PHP code which indicate a variable name? For example:

Set forum name in Admin CP to

$vbphrase[forumnames_milk]

Then in the index.php read this and instead of simply displaying it for the forum name, look up its value? If that's possible, what would be the code to do it?

Bad Bunny
10-06-2005, 06:56 PM
Yea I realized after I posted it this was the wrong forum. But then again, I also posted it another more appropriate forum a few days ago, and no response. Anyway thanks for the suggestion, sorry again about the wrong forum :ermm:

Just curious, would it work to actually use Admin CP to set the name and description of the forum to PHP code which indicate a variable name? For example:

Set forum name in Admin CP to

$vbphrase[forumnames_milk]

Then in the index.php read this and instead of simply displaying it for the forum name, look up its value? If that's possible, what would be the code to do it?

Last I checked, you can use html code, but I am pretty certain php would not work, since it's thrown right in the middle of the page and not parsed. It would be like me posting some php code here and hoping it would parse.

Marco van Herwaarden
10-06-2005, 07:21 PM
I saw your post and i putted it on my list of hacks to make, but a bit busy right now.

PS moved thread

Cyricx
10-06-2005, 07:24 PM
Yeah, I think you'd have to do it the way I mentioned, otherwise it won't parse the php I don't think.

divisortheory
10-06-2005, 09:04 PM
Thanks for the responses again :) I'll wait and see what Marco has in store for me, in the meantime possibly toying around with a test site running a test database. I suppose I should check this thread for progress updates?

GrendelKhan{TSU
10-29-2005, 01:49 AM
has there been any progress on this?

I'm still majorly stressed out over this (orginally posted this same request ages ago. :()

relevant links on exact same topic (little different in responses and ideas).
https://vborg.vbsupport.ru/showthread.php?t=97638
https://vborg.vbsupport.ru/showthread.php?p=791597#post791597

here was a past post about this (with screenies):

===========================================

This is HUGE problem (the biggest issue) for my forum/s (and I'm sure others):

How do I make it so the forum TITLE links could have titles switch languages according to the language selected??

That is, if a user chooses one language (english, for example) ...the forum titles appear in that English, but if the user switches to another language (Z language, for example), then the forum titles appear in Z language.

(I'm not talking about buttons and phrases! I know this is how the language sets work for BUTTONS and MENU items etc. I have korean and english languages running fine now. )

But there is nothing for dealing with forum titles/thread title links.

Right now, i have to do both languages in one title...which means:

many people see half BROKEN garbage text (VERY distracting and ugly) AND I have to deal with unneccesarily long titles (have to write both english and korean for the same title).
some people want their language first written out first, ie: korean then english in the title, or vice versa. (yes, this actually is an issues sometimes).
often have to make sacrifices in just using one language and ask people to just deal.


I'm postiive others have to deal with the issue as well. And I know this would be giant boost towards internationalizing vbull.

Is their ANY way around this? to make two (multi) language sets available for the FORUM TITLES? (and subforum).

I would GREATLY appreciate any ideas or help.
thank you.


See example screenshots below:

Lea Verou
10-29-2005, 01:56 AM
Although I don't need it, I think this should be in the default vbulletin features...

GrendelKhan{TSU
10-29-2005, 02:08 AM
Although I don't need it, I think this should be in the default vbulletin features...

woohoo!! support!
I think it makes sense. Most everything is handled well with language phrases/packs, EXCEPT the Forum and Category Titles (the meat of the forumhome, imo). see my screen shots above as an example. I think that should be a priority in any efforts to internationalize the product.


That's also why I'm a bit surprised by by kirby's comment:
https://vborg.vbsupport.ru/showpost.php?p=794747&postcount=4
:ermm:

but anyway.... thanks for the support...
hope the word spreads.... so maybe we can at least get hack fix in the meantime. :p ;)

Chris M
10-29-2005, 10:09 AM
If you are restricting it to forum & category titles it would be simple enough to do ;)

If you want it for posts and threads, unless you are going to add every single word of the dictionary to your vBulletin phrases and still try and retain the context of what is being said, don't even bother trying to phrase them ;)

Chris

divisortheory
10-31-2005, 02:02 PM
I talked with MarcoH64 in PM a bit, he said he would get to it in a few weeks (that was a few weeks ago I think). He said to PM him a reminder, so perhaps I'll do that now. BTW, the one he was going to do was restricted to forum titles and categories. Anything else, I agree with Chris would be impractical and probably impossible.

divisortheory
11-01-2005, 04:02 PM
PMed him, he said he still hasn't had a chance. So I'll try again in a few weeks :) Honestly I don't even mind the wait, I'm just happy to have anything at all. I still feel, however, that this should be default in vBulletin at least for subjects and forum titles.

GrendelKhan{TSU
11-02-2005, 11:28 AM
If you are restricting it to forum & category titles it would be simple enough to do ;)

If you want it for posts and threads, unless you are going to add every single word of the dictionary to your vBulletin phrases and still try and retain the context of what is being said, don't even bother trying to phrase them ;)

Chris

roger that. I mentioned that in my original posts (and other threads). wouldn't work for all threads/posts. (unless you could do per thread -- ie: edit it and have a "add alternate title" or something field)

but yes, just restricted to
Categories, Forum titles..oh and forum DESCRIPTIONS would be grand. :)

ie: Basically, everything that appears on the forumhome, and is editable via
admincp >> forums & moderators >> forum manager.

I gave up though on rquests and commissioned someone to do make it cause I really need this.

*sigh* wish me luck!
<fingers crossed>

Marco van Herwaarden
11-02-2005, 12:47 PM
I will be making this - unless someone else do it first - but don't expect it in the next 2 weeks.

Marco van Herwaarden
11-11-2005, 03:26 PM
A first version of a hack for this has been released: Forum Title Language (https://vborg.vbsupport.ru/showthread.php?t=100589)