Search Results for 'translation'
-
AuthorSearch Results
-
February 14, 2009 at 12:10 pm #37879
In reply to: Translations – to rename parts of BP
universal
MemberI think more logical is to use WPLANG:
if ( file_exists( MUPLUGINDIR . ‘/bp-languages/buddypress-‘ . WPLANG . ‘.mo’ ) )
load_textdomain( ‘buddypress’, MUPLUGINDIR . ‘/bp-languages/buddypress-‘ . WPLANG . ‘.mo’ );
As my system locale is different.
February 14, 2009 at 11:53 am #37878In reply to: RC-1: no widgets?
roomer
MemberI’ve the same problem… but.. not in english! maybe, for the time being, you can set your translation back to english. If I find a solution I will put it here.
February 13, 2009 at 7:47 pm #37844In reply to: Localization problems in 1.0b1 and 1.0b2
MartinNr5
ParticipantYes, Swedish.
I’m 85% done and should be able to wrap the RC1 translation up over the weekend.
February 11, 2009 at 9:10 pm #37717In reply to: Buddypress home theme is non localizable
plrk
ParticipantMartinNr5: need help with the Swedish translation? I was about to start doing that next week, but I see no need to re-do finished work.
February 11, 2009 at 7:52 am #37675In reply to: Buddypress home theme is non localizable
jurmous
ParticipantThere is one PO file indeed for BuddyPress components. And I think the language pieces in the buddypress home theme should be separate so people can more easily change the language in of the theme without compromising the translations for BuddyPress itself.
Shouldn’t be there a language file for the home theme?
Ah nice to have also a swedish version soon
February 10, 2009 at 12:03 pm #37606In reply to: Dutch Translation / Nederlandse vertaling
jurmous
ParticipantThanks, I seemed to have missed the subpage construction when I edited the page.
The translation is now online!
February 10, 2009 at 11:13 am #37604In reply to: Dutch Translation / Nederlandse vertaling
Arturo
Participantregister and create a page for this translation in the codex section like other languages.
February 8, 2009 at 8:33 pm #37496In reply to: Date Format Issue
MartinNr5
ParticipantThat sounds like you need an updated translation file for german.
The BP 1.0b2 release added a few more lines to be translated to the mix.
February 5, 2009 at 6:31 pm #37288In reply to: bp-admin-bar: Random Blog problem
maagic-net
ParticipantThanks burtadsit! Patch truly solved the randomize problem.
For the language problem: I would be happy if there could be a toggle that siteadmin can decide what translation should unlogged user see always in bp-admin-bar.. if it is considered as a feature.

EDIT: Just tested that the translation effect is same is user logged in or not. Bar changes from blog to another, depending the current blog language setting. It’s annoying I think. When user selects a language he/she wants to use, shouldn’t the it be the same all around the site?
February 5, 2009 at 3:25 pm #37277In reply to: Several widgets disappear when .mo file installed
Burt Adsit
ParticipantHowdy. I’m not sure why there is a problem. Here’s what I think is happening.
register_sidebar_widget( __(‘Members’, ‘buddypress’), ‘bp_core_widget_members’);
That registers the members widget with translation. If in your .mo and .po file the word “Members” is translated then it should work fine. This is what you are doing?
February 5, 2009 at 2:16 pm #37276In reply to: bp-admin-bar: Random Blog problem
Burt Adsit
ParticipantLooking at the random blogs problem now. Don’t know about the translation question. I’ll have to investigate that.
OK. Random blog question is actually a bug. Ticket and patch for the fix is: https://trac.buddypress.org/ticket/445
I understand your admin bar language question but can’t decide if it’s a bug or an enhancement. I’ll post it as a bug and it will get noticed that way. Andy can decide if it’s more along the lines of an enhancement by changing it’s status.
I know. I’m being lazy by delegating the issue upward.
February 4, 2009 at 11:24 pm #37250In reply to: Several widgets disappear when .mo file installed
hanfelt
MemberMartinNr5: Was just starting do translate to swedish for my site http://www.ronaldblogg.se go and check it out. Would you like to share your translation?
Hope to hear from you..
January 27, 2009 at 10:02 pm #36815In reply to: Several widgets disappear when .mo file installed
MartinNr5
ParticipantI have created a bug for this in the bugtracker as this affects my Swedish translation as well.
January 27, 2009 at 11:34 am #36774In reply to: Translating BuddyPress
danbpfr
ParticipantHi folks !
The WPMU pot file exist !
You can found it here:
http://svn.automattic.com/wordpress-i18n/pot/mu/trunk/wordpress.pot
The file contains all the lines for wp, but also for wpmu.
I translated it in french for 2.7 beta without problems; Just take care off many plural forms who need to be translated too…
I’m looking for a bbPress translation who works. Actually, the forums are only half translated. If somebody has a solution ?
January 23, 2009 at 3:42 am #36611In reply to: Translations – to rename parts of BP
danbpfr
Participanthi oldskoo,
you get wrong by retrieving the (get locale() because at the next update of your bp-core.php file, this will be back again.
And what do you think what are the language settings on site and blogs for ?
wp-content/mu-plugins/bp-languages/buddypress-' . get_locale(). '.mo'this line means /path/to/your/locale language settings and call the translation file buddypres-en.mo (note the hyphen)
get_locale() comes sometimes along with get_domain(), who entend something like en_US.mo or de_DE…
You will find some functions using locale() and domain() in wp-includesl10n.php
wich is one of the language setting file.
January 22, 2009 at 9:32 pm #36606In reply to: Translations – to rename parts of BP
oldskoo1
ParticipantOk i found a few sites that made a bit more sense and i pieced all the bits together.
I downloaded the POT file fomr the bp SVN.
Downloaded a program called POEDIT
Created a new catalog from the PO file
Made my translations
Save the file which created an MO file
Eventually figured out i needed to upload my MO file to the bp-languages DIR in the mu-plugins DIR of WP
Then i opened up bp-core.php and found the line
(`)
if ( file_exists( ABSPATH . ‘wp-content/mu-plugins/bp-languages/buddypress-‘ . get_locale(). ‘.mo’ ) )
load_textdomain( ‘buddypress’, ABSPATH . ‘wp-content/mu-plugins/bp-languages/buddypress-‘ . get_locale() . ‘.mo’ );
(`)
I couldn’t find out anything on get_locale() function that mean’t anything to me so i just removed get_locale() and replaced it with my .mo filename.
January 22, 2009 at 12:41 pm #36573In reply to: Delete Avatar button translation
danbpfr
Participantyou’re right, but this little problem is already solved in the latest trunk.
So i suppose Andy or someone else read my post
January 22, 2009 at 3:25 am #36552In reply to: Avatar upload photo translation ?
Burt Adsit
ParticipantJanuary 22, 2009 at 3:20 am #36550In reply to: Delete Avatar button translation
Burt Adsit
ParticipantAndy loves these kinda posts. He doesn’t always get here to see them before they float off the main page though. The best thing is to put in a trac ticket with your find. It reminds him. https://trac.buddypress.org/newticket
January 21, 2009 at 10:34 pm #36543In reply to: Avatar upload photo translation ?
danbpfr
ParticipantWouah !
Thank you for the translation in today’s pot file !
Ca c’est du service !
Dan
January 21, 2009 at 4:32 pm #36530In reply to: What does POT stand for?
fishbowl81
ParticipantPOT and PO Files
To provide a template for translations, the English menu and dialog texts of a program are stored in text files with the extension .pot (short for “PO Template” like .po stands for “Portable Object”.)
If you open up the file and look it would have given so some hints.
Brad
January 20, 2009 at 12:39 am #36498In reply to: Rename Wire Link
Andy Peatling
KeymasterYou could create a custom translation file and rename everything how you like.
January 17, 2009 at 7:58 pm #36429In reply to: Changing “Friends” to “Contacts”
nicolagreco
ParticipantChange translations
January 16, 2009 at 1:27 pm #36387In reply to: How i can change in translation words : “Full Name”
arbak
MemberYou right thank you very much. Have a good day.
January 16, 2009 at 1:09 pm #36384In reply to: How i can change in translation words : “Full Name”
Per Søderlind
ParticipantIt’s in the site admin: /wp-admin/wpmu-admin.php?page=bp_core_admin_settings
-
AuthorSearch Results