Changeset 13772
- Timestamp:
- 06/04/2024 04:20:42 AM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-support-compat.php
r12365 r13772 500 500 if ( 'plugin' === $type ) { 501 501 /* translators: %s: link to plugin support or review forum */ 502 $parent_breadcrumb = __( 'Plugin: %s', 'wporg-forums');502 $parent_breadcrumb = str_replace( ' ', ' ', __( 'Plugin: %s', 'wporg-forums' ) ); 503 503 } else { 504 504 /* translators: %s: link to theme support or review forum */ 505 $parent_breadcrumb = __( 'Theme: %s', 'wporg-forums');505 $parent_breadcrumb = str_replace( ' ', ' ', __( 'Theme: %s', 'wporg-forums' ) ); 506 506 } 507 507 $link = sprintf( $parent_breadcrumb, sprintf(
Note: See TracChangeset
for help on using the changeset viewer.