Make WordPress Core


Ignore:
Timestamp:
07/25/2020 04:37:34 PM (4 years ago)
Author:
SergeyBiryukov
Message:

I18N: Remove <code> tags in invalid_rest_prepare_callback error message in register_theme_feature() for consistency with other strings.

Follow-up to [48611].

See #50758.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/theme.php

    r48611 r48612  
    31253125                sprintf(
    31263126                    /* translators: %s: prepare_callback */
    3127                     __( 'The %s must be a callable function.' ),
    3128                     '<code>prepare_callback<code>'
     3127                    __( 'The "%s" must be a callable function.' ),
     3128                    'prepare_callback'
    31293129                )
    31303130            );
Note: See TracChangeset for help on using the changeset viewer.