Changeset 45932 for trunk/src/wp-admin/options-reading.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-reading.php
r45926 r45932 25 25 'content' => '<p>' . __( 'This screen contains the settings that affect the display of your content.' ) . '</p>' . 26 26 '<p>' . sprintf( 27 /* translators: %s: URL to create a new page */27 /* translators: %s: URL to create a new page. */ 28 28 __( 'You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two <a href="%s">Pages</a>. One will become the homepage, and the other will be where your posts are displayed.' ), 29 29 'post-new.php?post_type=page' 30 30 ) . '</p>' . 31 31 '<p>' . sprintf( 32 /* translators: %s: Documentation URL */32 /* translators: %s: Documentation URL. */ 33 33 __( 'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or a summary. <a href="%s">Learn more about feeds</a>.' ), 34 34 __( 'https://wordpress.org/support/article/wordpress-feeds/' ) … … 94 94 <?php 95 95 printf( 96 /* translators: %s: URL to Pages screen */96 /* translators: %s: URL to Pages screen. */ 97 97 __( 'A <a href="%s">static page</a> (select below)' ), 98 98 'edit.php?post_type=page' … … 105 105 <?php 106 106 printf( 107 /* translators: %s: select field to choose the front page*/107 /* translators: %s: Select field to choose the front page. */ 108 108 __( 'Homepage: %s' ), 109 109 wp_dropdown_pages( … … 122 122 <?php 123 123 printf( 124 /* translators: %s: select field to choose the page for posts*/124 /* translators: %s: Select field to choose the page for posts. */ 125 125 __( 'Posts page: %s' ), 126 126 wp_dropdown_pages( … … 166 166 <?php 167 167 printf( 168 /* translators: %s: Documentation URL */168 /* translators: %s: Documentation URL. */ 169 169 __( 'Your theme determines how content is displayed in browsers. <a href="%s">Learn more about feeds</a>.' ), 170 170 __( 'https://wordpress.org/support/article/wordpress-feeds/' )
Note: See TracChangeset
for help on using the changeset viewer.