Changeset 8159 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download.php
- Timestamp:
- 01/29/2019 12:08:18 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download.php
r8157 r8159 117 117 /* translators: URL to installation guide */ 118 118 wp_kses_post( __( 'With our famous 5-minute installation, setting up WordPress for the first time is simple. We’ve created a <a href="%1$s">handy guide</a> to see you through the installation process.', 'wporg' ) ), 119 esc_url( 'https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Installation' )119 'https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Installation' 120 120 ); 121 121 ?> … … 130 130 /* translators: URL to WordPress mailing list */ 131 131 wp_kses_post( __( 'Want to get notified about WordPress releases? Join the <a href="%1$s">WordPress Announcements mailing list</a> and we will send a friendly message whenever there is a new stable release.', 'wporg' ) ), 132 esc_url( 'https://wordpress.org/list/' )132 'https://wordpress.org/list/' 133 133 ); 134 134 ?> … … 144 144 wp_kses_post( __( 'We recommend servers running version %1$s or greater of <a href="%2$s">PHP</a> and <a href="%3$s">MySQL</a> version %4$s <em>OR</em> <a href="%5$s">MariaDB</a> version %6$s or greater.', 'wporg' ) ), 145 145 RECOMMENDED_PHP, 146 esc_url( 'https://www.php.net/' ),147 esc_url( 'https://www.mysql.com/' ),146 'https://secure.php.net/', 147 'https://www.mysql.com/', 148 148 '5.6', 149 esc_url( 'https://mariadb.org/' ),149 'https://mariadb.org/', 150 150 '10.0' 151 151 ); … … 156 156 /* translators: 1: URL to Apache website; 2: URL to Nginx website */ 157 157 wp_kses_post( __( 'We also recommend either <a href="%1$s">Apache</a> or <a href="%2$s">Nginx</a> as the most robust options for running WordPress, but neither is required.', 'wporg' ) ), 158 esc_url( 'https://httpd.apache.org/' ),159 esc_url( 'https://nginx.org/' )158 'https://httpd.apache.org/', 159 'https://nginx.org/' 160 160 ); 161 161 ?>
Note: See TracChangeset
for help on using the changeset viewer.