Changeset 12588 for trunk/src/bp-core/admin/bp-core-admin-tools.php
- Timestamp:
- 03/28/2020 01:35:36 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/admin/bp-core-admin-tools.php
r12391 r12588 174 174 } 175 175 176 /* translators: %s: the result of the action performed by the repair tool */ 176 177 $statement = __( 'Counting the number of friends for each user… %s', 'buddypress' ); 177 178 $result = __( 'Failed!', 'buddypress' ); … … 232 233 } 233 234 235 /* translators: %s: the result of the action performed by the repair tool */ 234 236 $statement = __( 'Counting the number of groups for each user… %s', 'buddypress' ); 235 237 $result = __( 'Failed!', 'buddypress' ); … … 274 276 function bp_admin_repair_blog_records() { 275 277 276 / / Description of this tool, displayed to the user.278 /* translators: %s: the result of the action performed by the repair tool */ 277 279 $statement = __( 'Repopulating Blogs records… %s', 'buddypress' ); 278 280 … … 303 305 */ 304 306 function bp_admin_repair_count_members() { 307 /* translators: %s: the result of the action performed by the repair tool */ 305 308 $statement = __( 'Counting the number of active members on the site… %s', 'buddypress' ); 306 309 delete_transient( 'bp_active_member_count' ); … … 317 320 */ 318 321 function bp_admin_repair_last_activity() { 322 /* translators: %s: the result of the action performed by the repair tool */ 319 323 $statement = __( 'Determining last activity dates for each user… %s', 'buddypress' ); 320 324 bp_last_activity_migrate(); … … 408 412 <p> 409 413 <?php esc_html_e( 'BuddyPress keeps track of various relationships between users, groups, and activity items. Occasionally these relationships become out of sync, most often after an import, update, or migration.', 'buddypress' ); ?> 410 <?php printf( esc_html_x( 'Use the %s to repair these relationships.', 'buddypress tools intro', 'buddypress' ), '<a href="' . esc_url( $url ) . '">' . esc_html__( 'BuddyPress Tools', 'buddypress' ) . '</a>' ); ?> 414 <?php 415 printf( 416 /* translators: %s: the link to the BuddyPress repair tools */ 417 esc_html_x( 'Use the %s to repair these relationships.', 'buddypress tools intro', 'buddypress' ), 418 '<a href="' . esc_url( $url ) . '">' . esc_html__( 'BuddyPress Tools', 'buddypress' ) . '</a>' 419 ); 420 ?> 411 421 </p> 412 422 </div>
Note: See TracChangeset
for help on using the changeset viewer.