Changeset 45412
- Timestamp:
- 05/25/2019 02:23:27 PM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-automatic-updater.php
r45207 r45412 739 739 // Add a note about the support forums. 740 740 $body .= "\n\n" . __( 'If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.' ); 741 $body .= "\n" . __( 'https://wordpress.org/support/ ' );741 $body .= "\n" . __( 'https://wordpress.org/support/forums/' ); 742 742 } 743 743 -
trunk/src/wp-admin/includes/plugin-install.php
r45185 r45412 176 176 /* translators: %s: support forums URL */ 177 177 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 178 __( 'https://wordpress.org/support/ ' )178 __( 'https://wordpress.org/support/forums/' ) 179 179 ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), 180 180 headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE … … 189 189 /* translators: %s: support forums URL */ 190 190 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 191 __( 'https://wordpress.org/support/ ' )191 __( 'https://wordpress.org/support/forums/' ) 192 192 ), 193 193 $request->get_error_message() … … 204 204 /* translators: %s: support forums URL */ 205 205 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 206 __( 'https://wordpress.org/support/ ' )206 __( 'https://wordpress.org/support/forums/' ) 207 207 ), 208 208 wp_remote_retrieve_body( $request ) -
trunk/src/wp-admin/includes/theme.php
r45298 r45412 506 506 /* translators: %s: support forums URL */ 507 507 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 508 __( 'https://wordpress.org/support/ ' )508 __( 'https://wordpress.org/support/forums/' ) 509 509 ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), 510 510 headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE … … 520 520 /* translators: %s: support forums URL */ 521 521 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 522 __( 'https://wordpress.org/support/ ' )522 __( 'https://wordpress.org/support/forums/' ) 523 523 ), 524 524 $request->get_error_message() … … 535 535 /* translators: %s: support forums URL */ 536 536 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 537 __( 'https://wordpress.org/support/ ' )537 __( 'https://wordpress.org/support/forums/' ) 538 538 ), 539 539 wp_remote_retrieve_body( $request ) -
trunk/src/wp-admin/includes/translation-install.php
r42343 r45412 61 61 /* translators: %s: support forums URL */ 62 62 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 63 __( 'https://wordpress.org/support/ ' )63 __( 'https://wordpress.org/support/forums/' ) 64 64 ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), 65 65 headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE … … 75 75 /* translators: %s: support forums URL */ 76 76 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 77 __( 'https://wordpress.org/support/ ' )77 __( 'https://wordpress.org/support/forums/' ) 78 78 ), 79 79 $request->get_error_message() … … 87 87 /* translators: %s: support forums URL */ 88 88 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 89 __( 'https://wordpress.org/support/ ' )89 __( 'https://wordpress.org/support/forums/' ) 90 90 ), 91 91 wp_remote_retrieve_body( $request ) -
trunk/src/wp-admin/includes/update.php
r45185 r45412 133 133 /* translators: %s: support forums URL */ 134 134 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 135 __( 'https://wordpress.org/support/ ' )135 __( 'https://wordpress.org/support/forums/' ) 136 136 ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), 137 137 headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE -
trunk/src/wp-admin/theme-install.php
r45140 r45412 61 61 /* translators: %s: support forums URL */ 62 62 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 63 __( 'https://wordpress.org/support/ ' )63 __( 'https://wordpress.org/support/forums/' ) 64 64 ), 65 65 'tryAgain' => __( 'Try Again' ), -
trunk/src/wp-includes/customize/class-wp-customize-themes-section.php
r45395 r45412 88 88 /* translators: %s: support forums URL */ 89 89 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 90 __( 'https://wordpress.org/support/ ' )90 __( 'https://wordpress.org/support/forums/' ) 91 91 ); 92 92 ?> -
trunk/src/wp-includes/update.php
r45190 r45412 156 156 /* translators: %s: support forums URL */ 157 157 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 158 __( 'https://wordpress.org/support/ ' )158 __( 'https://wordpress.org/support/forums/' ) 159 159 ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), 160 160 headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE … … 380 380 /* translators: %s: support forums URL */ 381 381 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 382 __( 'https://wordpress.org/support/ ' )382 __( 'https://wordpress.org/support/forums/' ) 383 383 ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), 384 384 headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE … … 565 565 /* translators: %s: support forums URL */ 566 566 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 567 __( 'https://wordpress.org/support/ ' )567 __( 'https://wordpress.org/support/forums/' ) 568 568 ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), 569 569 headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE -
trunk/src/wp-login.php
r45405 r45412 951 951 __( '<strong>ERROR</strong>: Cookies are blocked due to unexpected output. For help, please see <a href="%1$s">this documentation</a> or try the <a href="%2$s">support forums</a>.' ), 952 952 __( 'https://wordpress.org/support/article/cookies/' ), 953 __( 'https://wordpress.org/support/ ' )953 __( 'https://wordpress.org/support/forums/' ) 954 954 ) 955 955 );
Note: See TracChangeset
for help on using the changeset viewer.