Changeset 1910
- Timestamp:
- 01/06/2009 01:04:42 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bb-admin/admin-header.php
r1575 r1910 25 25 <?php printf( __('Howdy, %1$s!'), bb_get_profile_link( array( 'text' => bb_get_current_user_info( 'name' ) ) ) );?> 26 26 | <?php bb_logout_link(); ?> 27 | <a href="http://bbpress.org/forums/"> Support forums</a>27 | <a href="http://bbpress.org/forums/"><?php _e('Support forums'); ?></a> 28 28 </p> 29 29 </div> -
trunk/bb-admin/index.php
r1799 r1910 10 10 11 11 <div id="dashboard-right-now" class="dashboard"> 12 <h3> Right Now</h3>12 <h3><?php _e('Right Now'); ?></h3> 13 13 <?php 14 14 $forums = get_total_forums(); -
trunk/bb-admin/options-general.php
r1868 r1910 216 216 <option value="identicon"<?php selected( bb_get_option('avatars_default'), 'identicon' ); ?>><?php _e('Identicon'); ?></option> 217 217 </select> 218 <p> Select what style of avatar to display to users without a Gravatar</p>218 <p><?php _e('Select what style of avatar to display to users without a Gravatar:'); ?></p> 219 219 <p class="gravatarDefault"> 220 220 <?php echo bb_get_avatar( 'anotherexample', 30, 'default' ); ?><?php _e('Default'); ?> -
trunk/bb-admin/options-wordpress.php
r1868 r1910 72 72 $selected = ''; 73 73 } 74 $roles .= '<option value="' . $key . '"' . $selected . '> bbPress ' . $value. '</option>' . "\n";74 $roles .= '<option value="' . $key . '"' . $selected . '>' . sprintf( __( 'bbPress %s' ), $value ) . '</option>' . "\n"; 75 75 } 76 76 -
trunk/bb-admin/site.php
r1575 r1910 5 5 6 6 <h2><?php _e('Recount') ?></h2> 7 <p><?php _e("The following checkboxes allow you to recalculate various numbers stored in 8 the database. These numbers are used for things like counting the number of 9 pages worth of posts a particular topic has. You shouldn't need to do do any of 10 this unless you're upgrading from one version to another or are seeing 11 pagination oddities.") ?></p> 7 <p><?php _e("The following checkboxes allow you to recalculate various numbers stored in the database. These numbers are used for things like counting the number of pages worth of posts a particular topic has. You shouldn't need to do do any of this unless you're upgrading from one version to another or are seeing pagination oddities.") ?></p> 12 8 13 9 <form method="post" action="<?php bb_uri('bb-admin/bb-do-counts.php', null, BB_URI_CONTEXT_FORM_ACTION + BB_URI_CONTEXT_BB_ADMIN); ?>"> -
trunk/bb-includes/functions.bb-template.php
r1901 r1910 2017 2017 <table id="admininfo"> 2018 2018 <tr class='form-field<?php if ( in_array( 'role', $error_codes ) ) echo ' form-invalid'; ?>'> 2019 <th scope="row">< ?php _e('User Type'); ?></th>2019 <th scope="row"><label for="admininfo_role"><?php _e('User Type'); ?></label></th> 2020 2020 <td> 2021 <select name="role">2021 <select id="admininfo_role" name="role"> 2022 2022 <?php 2023 2023 foreach( $roles as $r => $n ) { … … 2114 2114 2115 2115 <tr class="<?php echo $class; ?>"> 2116 <th scope="row">< ?php echo $title ?></th>2116 <th scope="row"><label for="<?php echo $name; ?>"><?php echo $title ?></label></th> 2117 2117 <td> 2118 2118 <?php if ( 'checkbox' == $type && isset($label[5]) ) echo "<label for='$name'>"; ?> … … 2131 2131 2132 2132 <?php endif; ?> 2133 <p><?php _e('Inactive users can login and look around but not do anything. 2134 Blocked users just see a simple error message when they visit the site.</p> 2135 <p><strong>Note</strong>: Blocking a user does <em>not</em> block any IP addresses.'); ?></p> 2133 <p><?php _e('Inactive users can login and look around but not do anything. Blocked users just see a simple error message when they visit the site.'); ?></p> 2134 <p><?php _e('<strong>Note</strong>: Blocking a user does <em>not</em> block any IP addresses.'); ?></p> 2136 2135 <?php 2137 2136 }
Note: See TracChangeset
for help on using the changeset viewer.