diff --git src/includes/admin/admin.php src/includes/admin/admin.php
index a0e1bd8..c250f99 100644
|
|
class BBP_Admin { |
1055 | 1055 | |
1056 | 1056 | // Site errored out, no response? |
1057 | 1057 | if ( is_wp_error( $response ) ) { |
1058 | | 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() ) ); |
| 1058 | 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>' ) ); |
1059 | 1059 | } |
1060 | 1060 | |
1061 | 1061 | // Switch to the new blog |
diff --git src/includes/admin/forums.php src/includes/admin/forums.php
index 246e55c..5eae309 100644
|
|
class BBP_Forums_Admin { |
833 | 833 | 8 => sprintf( __( 'Forum submitted. <a target="_blank" href="%s">Preview forum</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $forum_url ) ) ), |
834 | 834 | |
835 | 835 | // Forum scheduled |
836 | | 9 => sprintf( __( 'Forum scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview forum</a>', 'bbpress' ), |
837 | | // translators: Publish box date format, see http://php.net/date |
838 | | date_i18n( __( 'M j, Y @ G:i', 'bbpress' ), |
839 | | strtotime( $post_date ) ), |
840 | | $forum_url ), |
| 836 | 9 => sprintf( |
| 837 | __( 'Forum scheduled for: %1$s. <a target="_blank" href="%2$s">Preview forum</a>', 'bbpress' ), |
| 838 | // translators: Publish box date format, see http://php.net/date |
| 839 | '<strong>' . date_i18n( __( 'M j, Y @ G:i', 'bbpress' ), |
| 840 | strtotime( $post_date ) ) . '</strong>', |
| 841 | $forum_url |
| 842 | ), |
841 | 843 | |
842 | 844 | // Forum draft updated |
843 | 845 | 10 => sprintf( __( 'Forum draft updated. <a target="_blank" href="%s">Preview forum</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $forum_url ) ) ), |
diff --git src/includes/admin/replies.php src/includes/admin/replies.php
index 2ad892a..c17c2c4 100644
|
|
class BBP_Replies_Admin { |
950 | 950 | 8 => sprintf( __( 'Reply submitted. <a target="_blank" href="%s">Preview topic</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $topic_url ) ) ), |
951 | 951 | |
952 | 952 | // Reply scheduled |
953 | | 9 => sprintf( __( 'Reply scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview topic</a>', 'bbpress' ), |
954 | | // translators: Publish box date format, see http://php.net/date |
955 | | date_i18n( __( 'M j, Y @ G:i', 'bbpress' ), |
956 | | strtotime( $post_date ) ), |
957 | | $topic_url ), |
| 953 | 9 => sprintf( |
| 954 | __( 'Reply scheduled for: %1$s. <a target="_blank" href="%2$s">Preview topic</a>', 'bbpress' ), |
| 955 | // translators: Publish box date format, see http://php.net/date |
| 956 | '<strong>' . date_i18n( __( 'M j, Y @ G:i', 'bbpress' ), |
| 957 | strtotime( $post_date ) ) . '</strong>', |
| 958 | $topic_url |
| 959 | ), |
958 | 960 | |
959 | 961 | // Reply draft updated |
960 | 962 | 10 => sprintf( __( 'Reply draft updated. <a target="_blank" href="%s">Preview topic</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $topic_url ) ) ), |
diff --git src/includes/admin/topics.php src/includes/admin/topics.php
index d515db0..f372e60 100644
|
|
class BBP_Topics_Admin { |
1103 | 1103 | 8 => sprintf( __( 'Topic submitted. <a target="_blank" href="%s">Preview topic</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $topic_url ) ) ), |
1104 | 1104 | |
1105 | 1105 | // Topic scheduled |
1106 | | 9 => sprintf( __( 'Topic scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview topic</a>', 'bbpress' ), |
1107 | | // translators: Publish box date format, see http://php.net/date |
1108 | | date_i18n( __( 'M j, Y @ G:i', 'bbpress' ), |
1109 | | strtotime( $post_date ) ), |
1110 | | $topic_url ), |
| 1106 | 9 => sprintf( |
| 1107 | __( 'Topic scheduled for: %1$s. <a target="_blank" href="%2$s">Preview topic</a>', 'bbpress' ), |
| 1108 | // translators: Publish box date format, see http://php.net/date |
| 1109 | '<strong>' . date_i18n( __( 'M j, Y @ G:i', 'bbpress' ), |
| 1110 | strtotime( $post_date ) ) . '</strong>', |
| 1111 | $topic_url |
| 1112 | ), |
1111 | 1113 | |
1112 | 1114 | // Topic draft updated |
1113 | 1115 | 10 => sprintf( __( 'Topic draft updated. <a target="_blank" href="%s">Preview topic</a>', 'bbpress' ), esc_url( add_query_arg( 'preview', 'true', $topic_url ) ) ), |