Make WordPress Core

Changeset 35447


Ignore:
Timestamp:
10/30/2015 02:08:03 AM (8 years ago)
Author:
SergeyBiryukov
Message:

Don't use <strong> in translatable strings in wp-signup.php.

Add translator commments.

Props ramiy.
Fixes #34502.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-signup.php

    r35159 r35447  
    846846
    847847                if ( $active_signup == 'blog' || $active_signup == 'all' )
    848                     printf( '<p><em>' . __( 'The site you were looking for, <strong>%s</strong>, does not exist, but you can create it now!' ) . '</em></p>', $newblog );
     848                    /* translators: %s: site address */
     849                    printf( '<p><em>' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '</em></p>',
     850                        '<strong>' . $newblog . '</strong>'
     851                    );
    849852                else
    850                     printf( '<p><em>' . __( 'The site you were looking for, <strong>%s</strong>, does not exist.' ) . '</em></p>', $newblog );
     853                    /* translators: %s: site address */
     854                    printf( '<p><em>' . __( 'The site you were looking for, %s, does not exist.' ) . '</em></p>',
     855                        '<strong>' . $newblog . '</strong>'
     856                    );
    851857            }
    852858            break;
Note: See TracChangeset for help on using the changeset viewer.