Making WordPress.org


Ignore:
Timestamp:
06/17/2024 01:02:28 AM (17 months ago)
Author:
dufresnesteven
Message:

support-forums: Update theme directory breadcrumb to add space.

Related: https://github.com/WordPress/wordpress.org/issues/292

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-directory-compat.php

    r13634 r13825  
    656656        if ( 'plugin' === $this->compat() ) {
    657657            /* translators: %s: link to plugin support or review forum */
    658             $compat_breadcrumb = __( 'Plugin: %s', 'wporg-forums' );
     658            $compat_breadcrumb = str_replace( ' ', ' ', __( 'Plugin: %s', 'wporg-forums' ) );
    659659        } else {
    660660            /* translators: %s: link to theme support or review forum */
    661             $compat_breadcrumb = __( 'Theme: %s', 'wporg-forums' );
     661            $compat_breadcrumb = str_replace( ' ', ' ', __( 'Theme: %s', 'wporg-forums' ) );
    662662        }
    663663
Note: See TracChangeset for help on using the changeset viewer.