Skip to:
Content

bbPress.org

Changeset 6044


Ignore:
Timestamp:
05/31/2016 05:58:37 AM (9 years ago)
Author:
netweb
Message:

i18n: Avoid using HTML tags in translation strings (includes/admin/topics.php)

Props ramiy, thebrandonallen
Fixes #2911

File:
1 edited

Legend:

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

    r6042 r6044  
    10881088
    10891089            // Updated
    1090             1 =>  sprintf( __( 'Topic updated. <a href="%s">View topic</a>', 'bbpress' ), $topic_url ),
     1090            1 =>  sprintf(
     1091                '%1$s <a href="%2$s">%3$s</a>',
     1092                __( 'Topic updated.', 'bbpress' ),
     1093                $topic_url,
     1094                __( 'View topic', 'bbpress' )
     1095            ),
    10911096
    10921097            // Custom field updated
     
    11061111
    11071112            // Topic created
    1108             6 => sprintf( __( 'Topic created. <a href="%s">View topic</a>', 'bbpress' ), $topic_url ),
     1113            6 => sprintf(
     1114                '%1$s <a href="%2$s">%3$s</a>',
     1115                __( 'Topic created.', 'bbpress' ),
     1116                $topic_url,
     1117                __( 'View topic', 'bbpress' )
     1118            ),
    11091119
    11101120            // Topic saved
     
    11121122
    11131123            // Topic submitted
    1114             8 => sprintf( __( 'Topic submitted. <a target="_blank" href="%s">Preview topic</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $topic_url ) ) ),
     1124            8 => sprintf(
     1125                '%1$s <a href="%2$s" target="_blank">%3$s</a>',
     1126                __( 'Topic submitted.', 'bbpress' ),
     1127                esc_url( add_query_arg( 'preview', 'true', $topic_url ) ),
     1128                __( 'Preview topic', 'bbpress' )
     1129            ),
    11151130
    11161131            // Topic scheduled
     
    11271142
    11281143            // Topic draft updated
    1129             10 => sprintf( __( 'Topic draft updated. <a target="_blank" href="%s">Preview topic</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $topic_url ) ) ),
     1144            10 => sprintf(
     1145                '%1$s <a href="%2$s" target="_blank">%3$s</a>',
     1146                __( 'Topic draft updated.', 'bbpress' ),
     1147                esc_url( add_query_arg( 'preview', 'true', $topic_url ) ),
     1148                __( 'Preview topic', 'bbpress' )
     1149            ),
    11301150        );
    11311151
Note: See TracChangeset for help on using the changeset viewer.