Skip to:
Content

bbPress.org

Changeset 6045


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

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

Props ramiy, thebrandonallen
Fixes #2912

File:
1 edited

Legend:

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

    r6042 r6045  
    854854        if ( ! empty( $_GET['post_status'] ) && ( bbp_get_spam_status_id() === $_GET['post_status'] ) && current_user_can( 'moderate' ) ) {
    855855            wp_nonce_field( 'bulk-destroy', '_destroy_nonce' );
    856             submit_button( 
     856            submit_button(
    857857                esc_attr__( 'Empty Spam', 'bbpress' ),
    858858                'button-secondary apply',
     
    935935
    936936            // Updated
    937             1 =>  sprintf( __( 'Reply updated. <a href="%s">View topic</a>', 'bbpress' ), $topic_url ),
     937            1 =>  sprintf(
     938                '%1$s <a href="%2$s">%3$s</a>',
     939                __( 'Reply updated.', 'bbpress' ),
     940                $topic_url,
     941                __( 'View topic', 'bbpress' )
     942            ),
    938943
    939944            // Custom field updated
     
    953958
    954959            // Reply created
    955             6 => sprintf( __( 'Reply created. <a href="%s">View topic</a>', 'bbpress' ), $topic_url ),
     960            6 => sprintf(
     961                '%1$s <a href="%2$s">%3$s</a>',
     962                __( 'Reply created.', 'bbpress' ),
     963                $topic_url,
     964                __( 'View topic', 'bbpress' )
     965            ),
    956966
    957967            // Reply saved
     
    959969
    960970            // Reply submitted
    961             8 => sprintf( __( 'Reply submitted. <a target="_blank" href="%s">Preview topic</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $topic_url ) ) ),
     971            8 => sprintf(
     972                '%1$s <a href="%2$s" target="_blank">%3$s</a>',
     973                __( 'Reply submitted.', 'bbpress' ),
     974                esc_url( add_query_arg( 'preview', 'true', $topic_url ) ),
     975                __( 'Preview topic', 'bbpress' )
     976            ),
    962977
    963978            // Reply scheduled
     
    974989
    975990            // Reply draft updated
    976             10 => sprintf( __( 'Reply draft updated. <a target="_blank" href="%s">Preview topic</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $topic_url ) ) ),
     991            10 => sprintf(
     992                '%1$s <a href="%2$s" target="_blank">%3$s</a>',
     993                __( 'Reply draft updated.', 'bbpress' ),
     994                esc_url( add_query_arg( 'preview', 'true', $topic_url ) ),
     995                __( 'Preview topic', 'bbpress' )
     996            ),
    977997        );
    978998
Note: See TracChangeset for help on using the changeset viewer.