Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'translation'

Viewing 25 results - 926 through 950 (of 1,098 total)
  • Author
    Search Results
  • #50460
    Paul Wong-Gibbs
    Keymaster

    If you translate the default theme, that’s all you do – you don’t have to change any of the images *unless you want to*. Good luck!

    advinci
    Participant

    Ok… I reverted the chaos, still some words aren’t translated in the template.

    You can see here the words that don’t appear to be translated although they are: http://blogi.ee/groups

    For example: Groups Listing, Members, etc

    And the BP language file here: http://blogi.ee/wp-content/plugins/buddypress/bp-languages/buddypress-et_ET.mo

    plrk
    Participant

    It may be so that the translation functions for these strings are missing in your releases. You should update to WPMU 2.8.1 (or 2.8.2) and BP 1.0.3 anyways.

    WPMU translation files should reside in:

    wp-content/languages/

    and BP translation files should reside in:

    wp-content/plugins/buddypress/bp-languages/

    If you’d like more help, please provide a link to the language files you are using, and where and what strings are not translated.

    #49945

    In reply to: bp-custom-php help

    3612275
    Inactive

    I’m trying to do this as well, however, it’s not working. I have my buddypress.po and buddypress.mo in my bp-languages folder and I uploaded a new bp-custom.php to the /plugins/ folder however, from there how do I enable the new translation?

    I’m using:

    <?php
    define( 'BPLANG', 'mysite' );
    if ( file_exists( BP_PLUGIN_DIR . '/bp-languages/buddypress-' . BPLANG . '.mo' ) ) {
    load_textdomain( 'buddypress', BP_PLUGIN_DIR . '/bp-languages/buddypress-' . BPLANG . '.mo' );
    }
    ?>

    #49495

    In reply to: Translation issues

    mlemberg
    Participant

    Thanks for the responses!

    #49494
    3510307
    Inactive

    I’ve found the bug.

    It’s the german translation. If I switch the language to english, everything works fine.

    Greeting, Dirk

    Andy Peatling
    Keymaster

    This is all fixed in the latest 1.0 branch if people want to use that. Feel free to make this above change before I release 1.0.4 with these fixes and some other updates.

    Apologies for the oversight on translation, it serves me right rushing to get 1.0.3 out for those who had upgraded to 2.8.1!

    #49444

    In reply to: Translation issues

    Jeff Sayre
    Participant

    https://buddypress.org/forums/topic/103-site-wide-activity-widget-not-translating

    Andy is aware of some missing instances of the translation function. But, if you are noticing areas of BP that seem to be missing the translation function, please first search trac to see if they have been reported. If not, then open a new ticket. It is better to over report than under report.

    #49439
    Andy Peatling
    Keymaster

    My fault, in all the rush to get it working I missed the translation functions on the names. I will fix this and some other things and release a new version soon.

    #49428

    In reply to: Translation issues

    danbpfr
    Participant

    Read here:

    #49426

    In reply to: Translation issues

    mlemberg
    Participant

    Bump!

    #49372

    In reply to: Translation issues

    mlemberg
    Participant

    Bump!

    #48915

    In reply to: BuddyBar for bbPress

    matthijsv
    Participant

    @transposh:

    Problem seems to be with the output buffering.

    Output is getting buffered on initialization and my guess is that it is somehow never flushed.

    init_global_vars();

    if (isset($_POST['translation_posted'])) {
    update_translation();
    }
    elseif (isset($_GET['tr_token_hist'])) {
    get_translation_history($_GET['tr_token_hist'], $_GET['lang']);
    }
    elseif (isset($_GET['tp_gif'])) {
    $trans_gif_64 = "R0lGODlhAQABAIAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==";
    header("Content-type: image/gif");
    print(base64_decode($trans_gif_64));
    exit;
    }
    else {
    //set the callback for translating the page when it's done
    ob_start("process_page");
    }
    }

    When I comment out the ob_start line forums are working. Will test Transposh in a bit.

    r-a-y
    Keymaster

    Try this:

    <li<?php if ( is_page('games') ) {?> class="selected"<?php } ?>><a href="<?php echo get_option('home') ?>/games" title="Games">Games</a></li>

    I removed bp_is_page() and replaced it with is_page(), since bp_is_page() is only specific to BP components.

    Also I removed the _e and echo references to “Games”. Chances are you won’t be using a translation patch editor.

    #48856

    In reply to: BuddyBar for bbPress

    matthijsv
    Participant

    Thanks for your support!

    Figured it out: Transposh Translation Filter was causing the blank page. http://transposh.org/

    Burt Adsit
    Participant

    Translation issues so far found have been addressed in bpc trunk:

    http://svn.wp-plugins.org/bpcontents/trunk

    takuya
    Participant

    I just hope translation file is added soon, so I can translate into Japanese.

    #48295
    Jeff Sayre
    Participant

    Great! I’m glad this helped.

    #48286
    Ishimwe
    Participant

    Hi jeff,

    thank you so much. The first one seems so easy and well documented!!!

    #48259
    Jeff Sayre
    Participant
    #48236
    3318273
    Inactive

    Snyggt!

    #48141

    In reply to: Swahili Translation

    Ishimwe
    Participant

    Thanks Andy,

    but meanwhile, while I want to “test” how it looks before sharing it with the world should I be able to install it and check how it would be? That’s what I am trying to accomplish for the moment because there doesn’t seem to be an elaborate document on how to install language files for other languages in buddypress. AT LEAST I haven’t found any.

    After that I will go on to another language (kirundi), . . .

    #48124

    In reply to: Swahili Translation

    Burt Adsit
    Participant

    There is a translation svn repo in the works. From the buddypress-dev mailing list 6/25/2009:

    “The plan is in the next week or two to have a subversion repository set up for your language files. Each time you make a change, please keep the repo up to date with the latest version. I’ll give a weeks notice when a launch is close, so you can make sure your translations are up to date.

    I’ll then take the latest for each language and bundle them in the bp-languages folder.”

    Andy Peatling

    You can subscribe to the list here: http://lists.automattic.com/mailman/listinfo/buddypress-dev

    #47977
    Allen Weiss
    Participant

    I have done everything people appear to be saying, but still don’t get the translation (a very simple change from Avatar to Photo. I made the .po and .mo (using PoEdit) and uploaded them to the server

    buddypress-Alumni.po and .mo are in the /bp-languages folder and the bp_custom.php is the /plugs/buddypress folder, with this code

    <?php

    define( ‘BPLANG’, ‘Alumni’ );

    if ( file_exists( BP_PLUGIN_DIR . ‘/bp-languages/buddypress-‘ . BPLANG . ‘.mo’ ) ) {

    load_textdomain( ‘buddypress’, BP_PLUGIN_DIR . ‘/bp-languages/buddypress-‘ . BPLANG . ‘.mo’ );

    }

    ?>

    Last step seems to be reloading Buddypress (although I’m not sure how to do this).

    Any clue what I should be doing differently to get this to work?

    Thanks

    #47855

    In reply to: Photo, not avatar

    Paul Wong-Gibbs
    Keymaster

    The trick would be to use a custom “translation” – this way when you upgrade, you won’t have to manually merge lots of files.

    See Customizing Labels, Messages, and URLs.

Viewing 25 results - 926 through 950 (of 1,098 total)
Skip to toolbar