Changeset 4760
- Timestamp:
- 02/07/2013 02:21:45 AM (13 years ago)
- Location:
- trunk/includes/admin
- Files:
-
- 2 edited
-
admin.php (modified) (5 diffs)
-
settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/admin/admin.php
r4749 r4760 1318 1318 1319 1319 <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> 1323 1323 1324 1324 <h2 class="nav-tab-wrapper"> 1325 1325 <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’s New' ); ?>1326 <?php _e( 'What’s New', 'bbpress' ); ?> 1327 1327 </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' ); ?> 1329 1329 </a> 1330 1330 </h2> … … 1400 1400 1401 1401 <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> 1403 1403 </div> 1404 1404 … … 1421 1421 1422 1422 <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> 1425 1425 <div class="bbp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div> 1426 1426 1427 1427 <h2 class="nav-tab-wrapper"> 1428 1428 <a href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'bbp-about' ), 'index.php' ) ) ); ?>" class="nav-tab"> 1429 <?php _e( 'What’s New' ); ?>1429 <?php _e( 'What’s New', 'bbpress' ); ?> 1430 1430 </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' ); ?> 1432 1432 </a> 1433 1433 </h2> … … 1487 1487 </ul> 1488 1488 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> 1490 1490 <p class="wp-credits-list"> 1491 1491 <a href="http://profiles.wordpress.org/alexvorn2">alexvorn2</a>, … … 1528 1528 1529 1529 <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> 1531 1531 </div> 1532 1532 -
trunk/includes/admin/settings.php
r4683 r4760 1353 1353 // Help Sidebar 1354 1354 $current_screen->set_help_sidebar( 1355 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .1355 '<p><strong>' . __( 'For more information:', 'bbpress' ) . '</strong></p>' . 1356 1356 '<p>' . __( '<a href="http://codex.bbpress.org" target="_blank">bbPress Documentation</a>', 'bbpress' ) . '</p>' . 1357 1357 '<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.