Skip to:
Content

bbPress.org


Ignore:
Timestamp:
05/31/2016 05:50:50 AM (10 years ago)
Author:
netweb
Message:

i18n: Avoid using HTML tags in translation strings

Props ramiy, thebrandonallen
Fixes #2881

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/topics.php

    r6033 r6042  
    11151115
    11161116            // Topic scheduled
    1117             9 => sprintf( __( 'Topic scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview topic</a>', 'bbpress' ),
     1117            9 => sprintf(
     1118                '%1$s <a target="_blank" href="%2$s">%3$s</a>',
     1119                sprintf(
     1120                    __( 'Topic scheduled for: %s.', 'bbpress' ),
    11181121                    // translators: Publish box date format, see http://php.net/date
    1119                     date_i18n( __( 'M j, Y @ G:i', 'bbpress' ),
    1120                     strtotime( $post_date ) ),
    1121                     $topic_url ),
     1122                    '<strong>' . date_i18n( __( 'M j, Y @ G:i', 'bbpress' ), strtotime( $post_date ) ) . '</strong>'
     1123                ),
     1124                $topic_url,
     1125                __( 'Preview topic', 'bbpress' )
     1126            ),
    11221127
    11231128            // Topic draft updated
Note: See TracChangeset for help on using the changeset viewer.