Skip to:
Content

BuddyPress.org

Opened 9 years ago

Closed 9 years ago

Last modified 8 years ago

#6436 closed defect (bug) (fixed)

Untranslated date on admin Activity UI - missing i18n

Reported by: danbp's profile danbp Owned by: djpaul's profile djpaul
Milestone: 2.4 Priority: high
Severity: normal Version: 2.2.3
Component: I18N Keywords: good-first-bug has-patch
Cc: danco38@…

Description

In french, the date looks like this on the admin activity page

Soumis le 14 May 2015 à 18 h 15 min
Soumis le 5 February 2015 à 3 h 20 min
etc...

To solve the problem, I replaced in bp-activity-admin.php:1531

printf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>', 'buddypress' ), bp_activity_get_permalink( $item['id'] ), get_date_from_gmt( $item['date_recorded'], get_option( 'date_format' ) ), get_date_from_gmt( $item['date_recorded'], get_option( 'time_format' ) ) );

by

printf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>', 'buddypress' ), bp_activity_get_permalink( $item['id'] ), date_i18n( get_option( 'date_format' ) , strtotime( $item['date_recorded'] ) ), get_date_from_gmt( $item['date_recorded'], get_option( 'time_format' ) ) );

Not sure if it's the best, but at least, it is working.

Digged a bit on Trac before posting and found #5781 - in case of.

Change History (3)

#1 @DJPaul
9 years ago

  • Keywords good-first-bug added
  • Milestone changed from Awaiting Review to 2.4

Good catch! Let's audit all of these for 2.4 and fix them.

#2 @djpaul
9 years ago

  • Owner set to djpaul
  • Resolution set to fixed
  • Status changed from new to closed

In 10234:

xprofile: fix i18n for date format in admin list table

Fixes #6436

Props danbp for initial patch

#3 @DJPaul
8 years ago

  • Component changed from Locale - i18n to I18N
Note: See TracTickets for help on using tickets.