Skip to:
Content

bbPress.org

Changeset 6043


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

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

Props ramiy, thebrandonallen
Fixes #2910

File:
1 edited

Legend:

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

    r6042 r6043  
    812812
    813813            // Updated
    814             1 =>  sprintf( __( 'Forum updated. <a href="%s">View forum</a>', 'bbpress' ), $forum_url ),
     814            1 =>  sprintf(
     815                '%1$s <a href="%2$s">%3$s</a>',
     816                __( 'Forum updated.', 'bbpress' ),
     817                $forum_url,
     818                __( 'View forum', 'bbpress' )
     819            ),
    815820
    816821            // Custom field updated
     
    830835
    831836            // Forum created
    832             6 => sprintf( __( 'Forum created. <a href="%s">View forum</a>', 'bbpress' ), $forum_url ),
     837            6 => sprintf(
     838                '%1$s <a href="%2$s">%3$s</a>',
     839                __( 'Forum created.', 'bbpress' ),
     840                $forum_url,
     841                __( 'View forum', 'bbpress' )
     842            ),
    833843
    834844            // Forum saved
     
    836846
    837847            // Forum submitted
    838             8 => sprintf( __( 'Forum submitted. <a target="_blank" href="%s">Preview forum</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $forum_url ) ) ),
     848            8 => sprintf(
     849                '%1$s <a href="%2$s" target="_blank">%3$s</a>',
     850                __( 'Forum submitted.', 'bbpress' ),
     851                esc_url( add_query_arg( 'preview', 'true', $forum_url ) ),
     852                __( 'Preview forum', 'bbpress' )
     853            ),
    839854
    840855            // Forum scheduled
     
    851866
    852867            // Forum draft updated
    853             10 => sprintf( __( 'Forum draft updated. <a target="_blank" href="%s">Preview forum</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $forum_url ) ) ),
     868            10 => sprintf(
     869                '%1$s <a href="%2$s" target="_blank">%3$s</a>',
     870                __( 'Forum draft updated.', 'bbpress' ),
     871                esc_url( add_query_arg( 'preview', 'true', $forum_url ) ),
     872                __( 'Preview forum', 'bbpress' )
     873            ),
    854874        );
    855875
Note: See TracChangeset for help on using the changeset viewer.