Changes between Initial Version and Version 1 of Ticket #4593
- Timestamp:
- 07/10/2019 12:35:37 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4593 – Description
initial v1 1 1 Current link to https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Installation is hardcoded, it should be made customizable (to local codex or helphub page) by locale managers (precisely - wordpress-org meta project translators) 2 2 3 Code reference: https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download.php?marks=119#L120{{{#!php 3 Code reference: https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download.php?marks=119#L120 4 5 {{{#!php 4 6 <?php 5 7 /* translators: URL to installation guide */ 6 119 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' ) ), 7 120 'https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Installation' 8 121 ); 8 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' ) ), 9 'https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Installation' 9 10 }}}