Skip to:
Content
Pages
Categories
Search
Top
Bottom

Multi-language edition

  • Hi, is it possible to allow user to choose which language BP should use? I’d like to offer BP in two or more languages…

Viewing 21 replies - 1 through 21 (of 21 total)

  • yu
    Participant

    @gerbilo

    yeap, me too ))


    bebopcool
    Participant

    @bebopcool

    no information about that but this is a very needed option :)


    felix2009
    Participant

    @felix2009

    It could be a very usefull option, to have that ;)


    21green
    Participant

    @21green

    I think this is an essential request! Instead of adding tons of new features the focus should be on the basic features again; to build a tool that connects people and allows communitation! Everyone who wants to use Buddypress for an international purpose needs multi-language support for the frontend. It would be great to have language filters for the contents like on wordpress.com or facebook.com. If the user prefers swedish instead of english for instance he should only get blog posts/groups and forums in his choosen language. This is definitely one point that should be considered in future development.

    Whats your thoughts about this?


    Alex
    Participant

    @hempsworth

    I’ve mentioned this before but it went ignored, perhaps nobody was interested at the time? lol

    I’m not sure how localization works with BuddyPress, but I’m guessing it just takes the WPLANG constant which can be defined in wp-config.php

    There are language switching plugins out there which define this on a per-user basis, perhaps try getting the basic WPLANG definition feature from this ( http://www.poplarware.com/languageplugin.html ) working with WPMU/BuddyPress?


    21green
    Participant

    @21green

    I gave some thoughts to this topic and my conclusion so far is, that it would be the best solution to set up a WPMU + Buddypress System for each language. The only thing that would be needed is a Plugin that shares the Userdata between these systems. A user who signed up on your swedish installation of WPMU + Buddypress should be able to use this account for your english version too and so on.

    One could do it as on wordpress.com, where wordpress.com is the main website. If You choose a different language, say german (.de) you get redirected to de.wordpress.com and only german content will appear.


    bobthebob01
    Participant

    @bobthebob01

    i know i’m a bit late on that topic but i do agree that it should almost be a core feature to be able to switch language file.

    I’m not talking about having the content translation feature, but the front/back end stuff, basically anything showing on the localization file.

    So a user can decide his default language (among the available ones) for the site.

    It only makes sense: MU for WordPress MU, for BuddyPress/WordPress MU, for MUlti users, for MUlti blogs and for MUlti language.

    I’ve done some research and could not find a black/white solution. it’s seems to be in the grey zone at the moment.

    Has anybody been able to achieve this yet?

    cheers


    jalien
    Participant

    @jalien

    For the backend it’s simply a matter of adding another .mo file to the language folder in /wp-content to get wpmu to be multilingual, the same goes for any other plugins, they each have to have their own .mo file.

    There is a great plugin available which makes translating plugins or even the the wpmu core itself easy, and allows you to do it a little at a time. CodeStyling Localization (I am not affiliated with them in the least, but it is more than great). It allows you to do localization for themes, plugins, mu-plugins, and wpmu base code itself, absolutely awesome.

    http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en

    For the front end and to allow different users of any of the blogs to change the backend easily and quickly I recommend qTranslate.

    http://www.qianqin.de/qtranslate/

    It is easy to use and easy to setup. Non-technical users will immediately know how to use this once it is setup. The setup may not be for non-technical users on their own, but a simple how-to will easily walk anyone through it. This plugin allows visitors to see multilingual content and change the language on the blog front-end (although I haven’t really used it for multilingual switching for the social networking portion of buddypress, I’ll have to play around and see what it can do).

    Each blog can have it’s main language set in the the Settings/General page with the site wide default set in Site Admin/ Options (this is built in to wpmu, it doesn’t need a plugin – it’s been there from before 1.0 if my memory is correct).

    I use English and Japanese (which will often not work when the localization is not done right) so I think these are pretty good plugins that work well with wpmu’s built in localization.


    bobthebob01
    Participant

    @bobthebob01

    thanks jalien for this post, very informative, clear and easy to understand.


    John James Jacoby
    Keymaster

    @johnjamesjacoby

    qTranslate currently has some problems with WPMU and BuddyPress, so unfortunately this isn’t a turn-key solution quite yet. There are a few changes to BP that are patched in the trac, and many changes to qTranslate that need to happen to make this work the way it should.


    Peter Kirn
    Participant

    @peterkirn

    We’re likewise interested in this capability. I guess at the very least, everyone has the same basic goal for the functionality — each user of WPMU would be able to define a localization and language. John, what would be the best place to look if people were interested in contributing to testing patches / tracking this development? Ultimately, is it likely some combination like Jalien is suggesting will work, with other changes in the BP/WPMU backend?


    abcde666
    Participant

    @erich73

    do I understand correctly that I do need to have 2 installations of BuddyPress, 2 installations of WPMU and 2 installations of BB-Press in order to run my website in 2 languages ?

    Appreciate your advise.

    Many thanks,

    Erich


    nig3d
    Participant

    @nig3d

    I resume this post. My main buddypress installation must be in Italian, but I’d like to create a blog inside which uses english text for international users.

    Is it possible?


    still giving
    Participant

    @nonegiven

    bump … is there an admin bar language switcher for 1.2?

    Please note, the .mo or .po files do not do the complete translation job, e.g. not /wp-reg.php etc.


    Philip Tyrer
    Participant

    @amparose

    Any news on multi lingual buddypress installations?

    Two installations can work but it means that users cannot wonder between languages unless they register/log into two separate sites.

    No need for any sort of translation just a way to have segregation without complete isolation.


    Carlos Perez
    Participant

    @carlosepp

    I think the best solution is to have two separate .mo files with the interface translation and set the translation on wp-content/plugins/bp-custom.php (If you havent the file, create one) with the following code
    $lang = substr($_SERVER, 0, 2);
    switch ($lang){
    case ‘en’:
    define( ‘BPLANG’, ‘en’ );
    if ( file_exists( BP_PLUGIN_DIR . ‘/bp-languages/buddypress-en.mo’ ) ) {
    load_textdomain( ‘buddypress’, BP_PLUGIN_DIR . ‘/bp-languages/buddypress-en.mo’ );
    }
    break;
    case ‘es’:
    define( ‘BPLANG’, ‘es’ );
    if ( file_exists( BP_PLUGIN_DIR . ‘/bp-languages/buddypress-es.mo’ ) ) {
    load_textdomain( ‘buddypress’, BP_PLUGIN_DIR . ‘/bp-languages/buddypress-es.mo’ );
    }
    break;
    }
    Check that the filenames are the same

    This code detects automatically the browser language and defines the language.

    Follow this article to find more about this
    https://codex.buddypress.org/buddypress-site-administration/customizing-labels-messages-and-urls/


    John
    Participant

    @johnwinch42

    Thanks for the code @carlosepp, I have a question

    “This code detects automatically the browser language and defines the language.”
    How effective is it and does it work sitewide (not only with the buddypress blog but with all the navigations bar of the network’s blogs)?

    It is possible to use qtranslate to get a multilanguage buddypress website, however, there are issues. When using the non-default language, the ajax-loaded content will display a “No content found” (ie: “There were no groups found”) warning in the default language. Also some items in the ‘activity’ listing do not get translated properly ‘sometimes’, for example, I am using Spanish and English and in the default list produced on the activity page it shows the same message sometimes in English and sometimes in Spanish, it seems pretty random, I haven’t done any investigating why, yet. So while it looks like a possible solution (qtranslate & buddypress), it definitely needs some work.

    did you find some solutions


    Eddie
    Participant

    @resabi

    It would really be great to let our users chose which language they’d like to see our website on. It’s a pitty that such a great software as BuddyPress lacks this option that many others consider as basic. :(

    There’s always numerous Google translate implementations, but that just isn’t what we need.

    I’m guessing some hack could be made with an XProfile field called “language” and a hook to WordPress profile language settings. Unfortunately, I’m not able to code it by myself.


    Quint
    Participant

    @qrahaman

    Native translation based on the local language setting would be sweet. So, Geneveve in France posts her comment/post in French, and when it pops in the activity stream anywhere, that French post is automatically translated to the native language. THEN to take it to the next level, let’s say someone is tutoring the language. The tutor should have the ability to enclose the text he/she doesn’t want translated per the language tutoring exercise; thus, only the text that requires translation is automatically translated. If you’re gonna dream, dream big! ;-)

    Buddypress enables so many possibilities…

Viewing 21 replies - 1 through 21 (of 21 total)
  • The topic ‘Multi-language edition’ is closed to new replies.
Skip to toolbar