Skip to:
Content

bbPress.org

Changeset 4760


Ignore:
Timestamp:
02/07/2013 02:21:45 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Add missing textdomain's for admin component. Props daveshine. Fixes #2197.

Location:
trunk/includes/admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/admin/admin.php

    r4749 r4760  
    13181318
    13191319        <div class="wrap about-wrap">
    1320             <h1><?php printf( __( 'Welcome to bbPress %s' ), $display_version ); ?></h1>
    1321             <div class="about-text"><?php printf( __( 'Thank you for updating to the latest version! bbPress %s goes great with pizza and popcorn, and will nicely complement your community too!' ), $display_version ); ?></div>
    1322             <div class="bbp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
     1320            <h1><?php printf( __( 'Welcome to bbPress %s', 'bbpress' ), $display_version ); ?></h1>
     1321            <div class="about-text"><?php printf( __( 'Thank you for updating to the latest version! bbPress %s goes great with pizza and popcorn, and will nicely complement your community too!', 'bbpress' ), $display_version ); ?></div>
     1322            <div class="bbp-badge"><?php printf( __( 'Version %s', 'bbpress' ), $display_version ); ?></div>
    13231323
    13241324            <h2 class="nav-tab-wrapper">
    13251325                <a class="nav-tab nav-tab-active" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'bbp-about' ), 'index.php' ) ) ); ?>">
    1326                     <?php _e( 'What&#8217;s New' ); ?>
     1326                    <?php _e( 'What&#8217;s New', 'bbpress' ); ?>
    13271327                </a><a class="nav-tab" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'bbp-credits' ), 'index.php' ) ) ); ?>">
    1328                     <?php _e( 'Credits' ); ?>
     1328                    <?php _e( 'Credits', 'bbpress' ); ?>
    13291329                </a>
    13301330            </h2>
     
    14001400
    14011401            <div class="return-to-dashboard">
    1402                 <a href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'bbpress' ), 'options-general.php' ) ) ); ?>"><?php _e( 'Go to Forum Settings' ); ?></a>
     1402                <a href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'bbpress' ), 'options-general.php' ) ) ); ?>"><?php _e( 'Go to Forum Settings', 'bbpress' ); ?></a>
    14031403            </div>
    14041404
     
    14211421
    14221422        <div class="wrap about-wrap">
    1423             <h1><?php printf( __( 'Welcome to bbPress %s' ), $display_version ); ?></h1>
    1424             <div class="about-text"><?php printf( __( 'Thank you for updating to the latest version! bbPress %s is ready to make your community a safer, faster, and better looking place to hang out!' ), $display_version ); ?></div>
     1423            <h1><?php printf( __( 'Welcome to bbPress %s', 'bbpress' ), $display_version ); ?></h1>
     1424            <div class="about-text"><?php printf( __( 'Thank you for updating to the latest version! bbPress %s goes great with pizza and popcorn, and will nicely complement your community too!', 'bbpress' ), $display_version ); ?></div>
    14251425            <div class="bbp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
    14261426
    14271427            <h2 class="nav-tab-wrapper">
    14281428                <a href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'bbp-about' ), 'index.php' ) ) ); ?>" class="nav-tab">
    1429                     <?php _e( 'What&#8217;s New' ); ?>
     1429                    <?php _e( 'What&#8217;s New', 'bbpress' ); ?>
    14301430                </a><a href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'bbp-credits' ), 'index.php' ) ) ); ?>" class="nav-tab nav-tab-active">
    1431                     <?php _e( 'Credits' ); ?>
     1431                    <?php _e( 'Credits', 'bbpress' ); ?>
    14321432                </a>
    14331433            </h2>
     
    14871487            </ul>
    14881488
    1489             <h4 class="wp-people-group"><?php _e( 'Core Contributors to bbPress 2.2', 'bbpress' ); ?></h4>
     1489            <h4 class="wp-people-group"><?php _e( 'Core Contributors to bbPress 2.3', 'bbpress' ); ?></h4>
    14901490            <p class="wp-credits-list">
    14911491                <a href="http://profiles.wordpress.org/alexvorn2">alexvorn2</a>,
     
    15281528
    15291529            <div class="return-to-dashboard">
    1530                 <a href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'bbpress' ), 'options-general.php' ) ) ); ?>"><?php _e( 'Go to Forum Settings' ); ?></a>
     1530                <a href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'bbpress' ), 'options-general.php' ) ) ); ?>"><?php _e( 'Go to Forum Settings', 'bbpress' ); ?></a>
    15311531            </div>
    15321532
  • trunk/includes/admin/settings.php

    r4683 r4760  
    13531353    // Help Sidebar
    13541354    $current_screen->set_help_sidebar(
    1355         '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
     1355        '<p><strong>' . __( 'For more information:', 'bbpress' ) . '</strong></p>' .
    13561356        '<p>' . __( '<a href="http://codex.bbpress.org" target="_blank">bbPress Documentation</a>',    'bbpress' ) . '</p>' .
    13571357        '<p>' . __( '<a href="http://bbpress.org/forums/" target="_blank">bbPress Support Forums</a>', 'bbpress' ) . '</p>'
Note: See TracChangeset for help on using the changeset viewer.