Skip to:
Content

BuddyPress.org

Opened 12 years ago

Closed 11 years ago

#4922 closed defect (bug) (fixed)

defect translation on admin dashboard

Reported by: chouf1's profile chouf1 Owned by: chouf1's profile chouf1
Milestone: 1.8 Priority: normal
Severity: normal Version: 1.7
Component: Administration Keywords: has-patch early
Cc:

Description

The whole strings in div about-wrap are not internationalized.

Need to be:

div class="wrap about-wrap">
			<h1><?php printf( __( 'Welcome to BuddyPress %s','buddypress' ), $display_version ); ?></h1>
			<div class="about-text">
				<?php if ( $is_new_install ) : ?>
					<?php printf( __( 'BuddyPress %s is our safest, fastest, most flexible version ever.', 'buddypress' ), $display_version ); ?>
				<?php else : ?>
					<?php printf( __( 'Thank you for updating! BuddyPress %s is our safest, fastest, most flexible version ever.', 'buddypress' ), $display_version ); ?>
				<?php endif; ?>
			</div>
			<div class="bp-badge"><?php printf( __( 'Version %s', 'buddypress' ), $display_version ); ?></div>

Change History (3)

#1 @chouf1
12 years ago

Oups ! Forgot to say that the error is in bp-core-admin.php

#2 @boonebgorges
12 years ago

  • Component changed from Core to Administration
  • Keywords early added
  • Milestone changed from Awaiting Review to 1.8

Groan. We are in string freeze, so this is going to have to get fixed in 1.7.1.

#3 @boonebgorges
11 years ago

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

In 6935:

Adds missing textdomains on the admin panels.

Fixes #4922

Props chouf1

Note: See TracTickets for help on using tickets.