Search Results for 'translation'
-
AuthorSearch Results
-
January 22, 2009 at 9:32 pm #36606
In reply to: Translations – to rename parts of BP
oldskoo1ParticipantOk 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
danbpfrParticipantyou’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 AdsitParticipantJanuary 22, 2009 at 3:20 am #36550In reply to: Delete Avatar button translation
Burt AdsitParticipantAndy 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 ?
danbpfrParticipantWouah !
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?
fishbowl81ParticipantPOT 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 PeatlingKeymasterYou 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”
nicolagrecoParticipantChange translations
January 16, 2009 at 1:27 pm #36387In reply to: How i can change in translation words : “Full Name”
arbakMemberYou 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øderlindParticipantIt’s in the site admin: /wp-admin/wpmu-admin.php?page=bp_core_admin_settings
December 28, 2008 at 2:37 pm #35179Obuisson1976ParticipantLes fichiers de langue FR sont disponible dans le codex de buddypress : https://codex.buddypress.org/translations/french-france-fr_fr/
Il y a 2/3 à modifier mais c’est du bon travail. Merci à l’équipe qui a fait la traduction.
J’ai fait un post pour l’installation des fichiers de traduction :
December 7, 2008 at 11:02 am #34169In reply to: Translation Activation
November 28, 2008 at 6:09 pm #34017In reply to: Translation error
Slava AbakumovModeratorI have 2 same errors in Russian translation. But everything is still working. Try not to draw your attention
November 25, 2008 at 4:19 am #33964In reply to: URL Translation
dudboiParticipantAh I figured it out! Textbook case of failure to RTFM. I uploaded member-themes into the themes directory instead of the wp-content directory.
Well, at least I learned a little bit more about how buddypress works through the wonderful invention that is var_dump!
November 24, 2008 at 4:04 am #33946In reply to: URL Translation
dudboiParticipantHmm I have that already. I’ve been trying to figure it out and all that’s turned up so far is my firebug is reporting any component page with a 302 header (Moved Temporarily). I didn’t change my .htaccess file prior upgrading to the latest revision (which only involved file movements. Unless there’s some upgrade process that I’m unaware of).
Very weird.
November 23, 2008 at 2:48 pm #33942In reply to: URL Translation
Andy PeatlingKeymasterLine 11 of bp-core.php:
define( 'BP_CORE_ROOT_COMPONENTS', 'groups' . ',' . MEMBERS_SLUG );
Make sure you have changed ‘groups’ to ‘projects’.
November 23, 2008 at 6:08 am #33937In reply to: URL Translation
dudboiParticipantHey Andy, thanks for the great work, I just checked out r571 and merged the necessary differences. Now it seems that any member page gets rewritten to index.php!
November 23, 2008 at 3:54 am #33934In reply to: URL Translation
Andy PeatlingKeymasterI committed a fix today that should stop the above from happening.
November 23, 2008 at 3:49 am #33933In reply to: URL Translation
dudboiParticipantSorry to hijack this thread, but I’ve been wanting to change the groups URIs, and ok, so I know that groups is hardcoded in.
But I tinkered around with it and basically created a GROUP_SLUG and set that, in my case, to “projects”. Everything works fine (I had to change a few template things but otherwise it’s ok) except I have a teensy weensy problem with the catchuri function
So now all my pages are something like siteurl.com/members/username/projects/action
(siteurl.com/members/username/projects/, siteurl.com/members/username/projects/my-groups, siteurl.com/members/username/projects/group-finder. You get the idea)
And it works fine until I create a wordpress page called projects, then for some reason siteurl.com/members/username/projects rewrites to siteurl.com/projects, which in my case would be the wordpress page instead of the groups memberpage. I’ve tried taking a look at catchuri, and playing around with the is_page function, but even if I try to name the page something else, like say “projects main”, it still ends up trying to add the template into the page, which naturally fails and ends up with the 404 template.
I also don’t know if it’s related, but my wordpress mu is in a subdirectory, which looking at the catchuri code, doesnt seem to deal with subdirectories at the first explosion of the uri to rewrite (but I may be mistaken), so before the explosion of the actual site_uri function, $bp_uri[component_index] ($bp_uri[0]) actually returns me the subdirectory that my wp mu is in. I’m not sure if this is a bug and/or if it affects muy uri rewriting, but I thought I’d mention it.
p.s. when I delete the projects page, members/username/projects rightfully shows me the my-group template.
you can take a look at it here http://donicethings.org/beta
If anyone could help me I’d be most grateful, thanks!
November 21, 2008 at 9:06 pm #33919In reply to: Can’t change language & old members not showing up
Andy PeatlingKeymasterUsers need to add profile data before they will show in any lists. This will change.
I’m not sure why it is not translation, do you have a link?
November 20, 2008 at 2:15 pm #33867In reply to: Translating BuddyPress
dudboiParticipantGreat! Thanks for the help. In the end I just uploaded a nontranslated english MO file to the languages folder. Though it doesn’t really make sense for me to update both the WP MU and BuddyPress languages together.
I mean I suppose it’s useful for people who actually want to do translations, but shouldn’t there be a separate function for buddypress altogether (that perhaps is linked to WP MU?)
November 14, 2008 at 2:28 pm #33705In reply to: I do an spanish translation how i publish?
jveronMemberthx!
November 14, 2008 at 12:01 pm #33703In reply to: URL Translation
thezohan10MemberExcellent, thank you very much
November 14, 2008 at 8:43 am #33701In reply to: URL Translation
Andy PeatlingKeymastermembers can be changed at the top of bp-core.php. The other URLs are not translatable right now.
November 14, 2008 at 7:16 am #33700In reply to: I do an spanish translation how i publish?
DreamcolorParticipantLook at this:
-
AuthorSearch Results