Ticket #3294: trac-3294-phpcs-fix-untranslatable-text.patch
File trac-3294-phpcs-fix-untranslatable-text.patch, 2.3 KB (added by , 5 years ago) |
---|
-
src/includes/forums/functions.php
590 590 591 591 } else { 592 592 $append_error = ( is_wp_error( $forum_id ) && $forum_id->get_error_message() ) ? $forum_id->get_error_message() . ' ' : ''; 593 bbp_add_error( 'bbp_forum_error', __( '<strong>ERROR</strong>: The following problem(s) have been found with your forum:' . $append_error . 'Please try again.', 'bbpress') );593 bbp_add_error( 'bbp_forum_error', sprintf( __( '<strong>ERROR</strong>: The following problem(s) have been found with your forum: %s Please try again.', 'bbpress' ), trim( $append_error ) ) ); 594 594 } 595 595 } 596 596 -
src/includes/replies/functions.php
766 766 767 767 } else { 768 768 $append_error = ( is_wp_error( $reply_id ) && $reply_id->get_error_message() ) ? $reply_id->get_error_message() . ' ' : ''; 769 bbp_add_error( 'bbp_reply_error', __( '<strong>ERROR</strong>: The following problem(s) have been found with your reply:' . $append_error . 'Please try again.', 'bbpress') );769 bbp_add_error( 'bbp_reply_error', sprintf( __( '<strong>ERROR</strong>: The following problem(s) have been found with your reply: %s Please try again.', 'bbpress' ), trim( $append_error ) ); 770 770 } 771 771 } 772 772 -
src/includes/topics/functions.php
713 713 714 714 } else { 715 715 $append_error = ( is_wp_error( $topic_id ) && $topic_id->get_error_message() ) ? $topic_id->get_error_message() . ' ' : ''; 716 bbp_add_error( 'bbp_topic_error', __( '<strong>ERROR</strong>: The following problem(s) have been found with your topic:' . $append_error . 'Please try again.', 'bbpress') );716 bbp_add_error( 'bbp_topic_error', sprintf( __( '<strong>ERROR</strong>: The following problem(s) have been found with your topic: %s Please try again.', 'bbpress' ), trim( $append_error ) ) ); 717 717 } 718 718 } 719 719