Changeset 6042
- Timestamp:
- 05/31/2016 05:50:50 AM (9 years ago)
- Location:
- trunk/src/includes/admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/admin.php
r5952 r6042 1061 1061 // Site errored out, no response? 1062 1062 if ( is_wp_error( $response ) ) { 1063 wp_die( sprintf( __( 'Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: <em>%2$s</em>', 'bbpress' ), $siteurl, $response->get_error_message()) );1063 wp_die( sprintf( __( 'Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s', 'bbpress' ), $siteurl, '<em>' . $response->get_error_message() . '</em>' ) ); 1064 1064 } 1065 1065 -
trunk/src/includes/admin/forums.php
r6033 r6042 839 839 840 840 // Forum scheduled 841 9 => sprintf( __( 'Forum scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview forum</a>', 'bbpress' ), 841 9 => sprintf( 842 '%1$s <a target="_blank" href="%2$s">%3$s</a>', 843 sprintf( 844 __( 'Forum scheduled for: %s.', 'bbpress' ), 842 845 // translators: Publish box date format, see http://php.net/date 843 date_i18n( __( 'M j, Y @ G:i', 'bbpress' ), 844 strtotime( $post_date ) ), 845 $forum_url ), 846 '<strong>' . date_i18n( __( 'M j, Y @ G:i', 'bbpress' ), strtotime( $post_date ) ) . '</strong>' 847 ), 848 $forum_url, 849 __( 'Preview forum', 'bbpress' ) 850 ), 846 851 847 852 // Forum draft updated -
trunk/src/includes/admin/replies.php
r6033 r6042 962 962 963 963 // 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' ), 965 968 // 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 ), 969 974 970 975 // Reply draft updated -
trunk/src/includes/admin/topics.php
r6033 r6042 1115 1115 1116 1116 // Topic scheduled 1117 9 => sprintf( __( 'Topic scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview topic</a>', 'bbpress' ), 1117 9 => sprintf( 1118 '%1$s <a target="_blank" href="%2$s">%3$s</a>', 1119 sprintf( 1120 __( 'Topic scheduled for: %s.', 'bbpress' ), 1118 1121 // translators: Publish box date format, see http://php.net/date 1119 date_i18n( __( 'M j, Y @ G:i', 'bbpress' ), 1120 strtotime( $post_date ) ), 1121 $topic_url ), 1122 '<strong>' . date_i18n( __( 'M j, Y @ G:i', 'bbpress' ), strtotime( $post_date ) ) . '</strong>' 1123 ), 1124 $topic_url, 1125 __( 'Preview topic', 'bbpress' ) 1126 ), 1122 1127 1123 1128 // Topic draft updated
Note: See TracChangeset
for help on using the changeset viewer.