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/replies.php

    r6033 r6042  
    962962
    963963            // Reply scheduled
    964             9 => sprintf( __( 'Reply scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview topic</a>', 'bbpress' ),
     964            9 => sprintf(
     965                '%1$s <a target="_blank" href="%2$s">%3$s</a>',
     966                sprintf(
     967                    __( 'Reply scheduled for: %s.', 'bbpress' ),
    965968                    // translators: Publish box date format, see http://php.net/date
    966                     date_i18n( __( 'M j, Y @ G:i', 'bbpress' ),
    967                     strtotime( $post_date ) ),
    968                     $topic_url ),
     969                    '<strong>' . date_i18n( __( 'M j, Y @ G:i', 'bbpress' ), strtotime( $post_date ) ) . '</strong>'
     970                ),
     971                $topic_url,
     972                __( 'Preview topic', 'bbpress' )
     973            ),
    969974
    970975            // Reply draft updated
Note: See TracChangeset for help on using the changeset viewer.