Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/16/2013 05:21:21 PM (13 years ago)
Author:
djpaul
Message:

Fix missing textdomains in strings on the About screen for new installs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-admin.php

    r7099 r7219  
    381381
    382382                <div class="wrap about-wrap">
    383                         <h1><?php printf( __( 'Welcome to BuddyPress %s' ), $display_version ); ?></h1>
     383                        <h1><?php printf( __( 'Welcome to BuddyPress %s', 'buddypress' ), $display_version ); ?></h1>
    384384                        <div class="about-text">
    385385                                <?php if ( $is_new_install ) : ?>
    386                                         <?php printf( __( 'BuddyPress %s is our safest, fastest, most flexible version ever.' ), $display_version ); ?>
     386                                        <?php printf( __( 'BuddyPress %s is our safest, fastest, most flexible version ever.', 'buddypress' ), $display_version ); ?>
    387387                                <?php else : ?>
    388                                         <?php printf( __( 'Thank you for updating! BuddyPress %s is our safest, fastest, most flexible version ever.' ), $display_version ); ?>
     388                                        <?php printf( __( 'Thank you for updating! BuddyPress %s is our safest, fastest, most flexible version ever.', 'buddypress' ), $display_version ); ?>
    389389                                <?php endif; ?>
    390390                        </div>
    391                         <div class="bp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
     391                        <div class="bp-badge"><?php printf( __( 'Version %s', 'buddypress' ), $display_version ); ?></div>
    392392
    393393                        <h2 class="nav-tab-wrapper">
Note: See TracChangeset for help on using the changeset viewer.