Make WordPress Core

Changeset 30936


Ignore:
Timestamp:
12/16/2014 10:01:32 PM (11 years ago)
Author:
SergeyBiryukov
Message:

Merge Twenty Fifteen commits [30834], [30845] to the 4.1 branch.

Location:
branches/4.1/src/wp-content/themes/twentyfifteen
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.1/src/wp-content/themes/twentyfifteen/languages/twentyfifteen.pot

    r30814 r30936  
    55"Project-Id-Version: Twenty Fifteen 1.0\n"
    66"Report-Msgid-Bugs-To: http://wordpress.org/tags/twentyfifteen\n"
    7 "POT-Creation-Date: 2014-12-10 23:27:35+00:00\n"
     7"POT-Creation-Date: 2014-12-14 12:26:59+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
     
    117117#. by Noto Sans, translate this to 'off'. Do not translate into your own
    118118#. language.
    119 #: functions.php:157
     119#: functions.php:158
    120120msgctxt "Noto Sans font: on or off"
    121121msgid "on"
     
    125125#. by Noto Serif, translate this to 'off'. Do not translate into your own
    126126#. language.
    127 #: functions.php:162
     127#: functions.php:163
    128128msgctxt "Noto Serif font: on or off"
    129129msgid "on"
     
    133133#. by Inconsolata, translate this to 'off'. Do not translate into your own
    134134#. language.
    135 #: functions.php:167
     135#: functions.php:168
    136136msgctxt "Inconsolata font: on or off"
    137137msgid "on"
     
    141141#. language, translate this to 'greek', 'cyrillic', 'devanagari' or
    142142#. 'vietnamese'. Do not translate into your own language.
    143 #: functions.php:172
     143#: functions.php:173
    144144msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
    145145msgid "no-subset"
    146146msgstr ""
    147147
    148 #: functions.php:226
     148#: functions.php:231
    149149msgid "expand child menu"
    150150msgstr ""
    151151
    152 #: functions.php:227
     152#: functions.php:232
    153153msgid "collapse child menu"
    154154msgstr ""
     
    291291
    292292#: 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>"
     293msgid "Next"
    297294msgstr ""
    298295
    299296#: 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>"
     297msgid "Next post:"
     298msgstr ""
     299
     300#: single.php:36
     301msgid "Previous"
     302msgstr ""
     303
     304#: single.php:37
     305msgid "Previous post:"
    304306msgstr ""
    305307
  • branches/4.1/src/wp-content/themes/twentyfifteen/single.php

    r30781 r30936  
    3131            // Previous/next post navigation.
    3232            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>',
    3539            ) );
    3640
Note: See TracChangeset for help on using the changeset viewer.