Changeset 30936
- Timestamp:
- 12/16/2014 10:01:32 PM (11 years ago)
- Location:
- branches/4.1/src/wp-content/themes/twentyfifteen
- Files:
-
- 2 edited
-
languages/twentyfifteen.pot (modified) (6 diffs)
-
single.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.1/src/wp-content/themes/twentyfifteen/languages/twentyfifteen.pot
r30814 r30936 5 5 "Project-Id-Version: Twenty Fifteen 1.0\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/tags/twentyfifteen\n" 7 "POT-Creation-Date: 2014-12-1 0 23:27:35+00:00\n"7 "POT-Creation-Date: 2014-12-14 12:26:59+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=UTF-8\n" … … 117 117 #. by Noto Sans, translate this to 'off'. Do not translate into your own 118 118 #. language. 119 #: functions.php:15 7119 #: functions.php:158 120 120 msgctxt "Noto Sans font: on or off" 121 121 msgid "on" … … 125 125 #. by Noto Serif, translate this to 'off'. Do not translate into your own 126 126 #. language. 127 #: functions.php:16 2127 #: functions.php:163 128 128 msgctxt "Noto Serif font: on or off" 129 129 msgid "on" … … 133 133 #. by Inconsolata, translate this to 'off'. Do not translate into your own 134 134 #. language. 135 #: functions.php:16 7135 #: functions.php:168 136 136 msgctxt "Inconsolata font: on or off" 137 137 msgid "on" … … 141 141 #. language, translate this to 'greek', 'cyrillic', 'devanagari' or 142 142 #. 'vietnamese'. Do not translate into your own language. 143 #: functions.php:17 2143 #: functions.php:173 144 144 msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)" 145 145 msgid "no-subset" 146 146 msgstr "" 147 147 148 #: functions.php:2 26148 #: functions.php:231 149 149 msgid "expand child menu" 150 150 msgstr "" 151 151 152 #: functions.php:2 27152 #: functions.php:232 153 153 msgid "collapse child menu" 154 154 msgstr "" … … 291 291 292 292 #: single.php:33 293 msgctxt "Next post link" 294 msgid "" 295 "<span class=\"meta-nav\">Next <span class=\"screen-reader-text\">post: </" 296 "span></span><span class=\"post-title\">%title</span>" 293 msgid "Next" 297 294 msgstr "" 298 295 299 296 #: single.php:34 300 msgctxt "Previous post link" 301 msgid "" 302 "<span class=\"meta-nav\">Previous <span class=\"screen-reader-text\">post: </" 303 "span></span><span class=\"post-title\">%title</span>" 297 msgid "Next post:" 298 msgstr "" 299 300 #: single.php:36 301 msgid "Previous" 302 msgstr "" 303 304 #: single.php:37 305 msgid "Previous post:" 304 306 msgstr "" 305 307 -
branches/4.1/src/wp-content/themes/twentyfifteen/single.php
r30781 r30936 31 31 // Previous/next post navigation. 32 32 the_post_navigation( array( 33 'next_text' => _x( '<span class="meta-nav">Next <span class="screen-reader-text">post: </span></span><span class="post-title">%title</span>', 'Next post link', 'twentyfifteen' ), 34 'prev_text' => _x( '<span class="meta-nav">Previous <span class="screen-reader-text">post: </span></span><span class="post-title">%title</span>', 'Previous post link', 'twentyfifteen' ) 33 'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'twentyfifteen' ) . '</span> ' . 34 '<span class="screen-reader-text">' . __( 'Next post:', 'twentyfifteen' ) . '</span> ' . 35 '<span class="post-title">%title</span>', 36 'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'twentyfifteen' ) . '</span> ' . 37 '<span class="screen-reader-text">' . __( 'Previous post:', 'twentyfifteen' ) . '</span> ' . 38 '<span class="post-title">%title</span>', 35 39 ) ); 36 40
Note: See TracChangeset
for help on using the changeset viewer.