Changeset 45676
- Timestamp:
- 07/25/2019 10:51:53 PM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/about.php
r45660 r45676 207 207 ); 208 208 209 /* translators: %s: CodexURL */209 /* translators: %s: Documentation URL */ 210 210 __( 'For more information, see <a href="%s">the release notes</a>.' ); -
trunk/src/wp-admin/includes/meta-boxes.php
r45674 r45676 664 664 <?php 665 665 printf( 666 /* translators: %s: CodexURL */666 /* translators: %s: Documentation URL */ 667 667 __( 'Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="%s">Learn more about manual excerpts</a>.' ), 668 668 __( 'https://wordpress.org/support/article/excerpt/' ) … … 701 701 <?php 702 702 printf( 703 /* translators: %s: CodexURL */703 /* translators: %s: Documentation URL */ 704 704 __( 'Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using <a href="%s">pingbacks</a>, no other action necessary.' ), 705 705 __( 'https://wordpress.org/support/article/introduction-to-blogging/#comments' ) … … 738 738 <?php 739 739 printf( 740 /* translators: %s: CodexURL */740 /* translators: %s: Documentation URL */ 741 741 __( 'Custom fields can be used to add extra metadata to a post that you can <a href="%s">use in your theme</a>.' ), 742 742 __( 'https://wordpress.org/support/article/custom-fields/' ) … … 762 762 <?php 763 763 printf( 764 /* translators: %s: CodexURL */764 /* translators: %s: Documentation URL */ 765 765 __( 'Allow <a href="%s">trackbacks and pingbacks</a> on this page' ), 766 766 __( 'https://wordpress.org/support/article/introduction-to-blogging/#managing-comments' ) -
trunk/src/wp-admin/options-general.php
r45674 r45676 96 96 <?php 97 97 printf( 98 /* translators: %s: CodexURL */98 /* translators: %s: Documentation URL */ 99 99 __( 'Enter the address here if you <a href="%s">want your site home page to be different from your WordPress installation directory</a>.' ), 100 100 __( 'https://wordpress.org/support/article/giving-wordpress-its-own-directory/' ) -
trunk/src/wp-admin/options-permalink.php
r45674 r45676 174 174 <?php 175 175 printf( 176 /* translators: %s: CodexURL */176 /* translators: %s: Documentation URL */ 177 177 __( 'WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="%s">number of tags are available</a>, and here are some examples to get you started.' ), 178 178 __( 'https://wordpress.org/support/article/using-permalinks/' ) -
trunk/src/wp-admin/setup-config.php
r45674 r45676 187 187 </strong> 188 188 <?php 189 /* translators: %s: CodexURL */189 /* translators: %s: Documentation URL */ 190 190 printf( 191 191 __( 'Need more help? <a href="%s">We got it</a>.' ), -
trunk/src/wp-includes/formatting.php
r45674 r45676 4692 4692 if ( 'permalink_structure' === $option && '' !== $value && ! preg_match( '/%[^\/%]+%/', $value ) ) { 4693 4693 $error = sprintf( 4694 /* translators: %s: CodexURL */4694 /* translators: %s: Documentation URL */ 4695 4695 __( 'A structure tag is required when using custom permalinks. <a href="%s">Learn more</a>' ), 4696 4696 __( 'https://wordpress.org/support/article/using-permalinks/#choosing-your-permalink-structure' ) -
trunk/src/wp-includes/functions.php
r45674 r45676 4790 4790 $version = sprintf( __( '(This message was added in version %s.)' ), $version ); 4791 4791 } 4792 /* translators: %s: CodexURL */4792 /* translators: %s: Documentation URL */ 4793 4793 $message .= ' ' . sprintf( 4794 4794 __( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ), -
trunk/src/wp-includes/ms-load.php
r45674 r45676 490 490 } 491 491 $msg .= '<p><strong>' . __( 'What do I do now?' ) . '</strong> '; 492 /* translators: %s: CodexURL */492 /* translators: %s: Documentation URL */ 493 493 $msg .= sprintf( 494 494 __( 'Read the <a href="%s" target="_blank">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' ), -
trunk/src/wp-load.php
r45674 r45676 79 79 ) . '</p>'; 80 80 $die .= '<p>' . sprintf( 81 /* translators: %s: CodexURL */81 /* translators: %s: Documentation URL */ 82 82 __( "Need more help? <a href='%s'>We got it</a>." ), 83 83 __( 'https://wordpress.org/support/article/editing-wp-config-php/' )
Note: See TracChangeset
for help on using the changeset viewer.