diff --git a/languages/_s.pot b/languages/_s.pot index 22e332b9..33006483 100644 --- a/languages/_s.pot +++ b/languages/_s.pot @@ -9,7 +9,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2020-04-10T15:22:10+00:00\n" +"POT-Creation-Date: 2020-04-17T21:03:15+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.4.0\n" "X-Domain: _s\n" @@ -86,11 +86,11 @@ msgstr "" msgid "Primary" msgstr "" -#: functions.php:128 +#: functions.php:130 msgid "Sidebar" msgstr "" -#: functions.php:130 +#: functions.php:132 msgid "Add widgets here." msgstr "" @@ -146,12 +146,12 @@ msgstr "" msgid "Edit %s" msgstr "" -#: inc/woocommerce.php:227 +#: inc/woocommerce.php:186 msgid "View your shopping cart" msgstr "" #. translators: number of items in the mini cart. -#: inc/woocommerce.php:231 +#: inc/woocommerce.php:190 msgid "%d item" msgid_plural "%d items" msgstr[0] "" @@ -162,6 +162,14 @@ msgstr[1] "" msgid "Search Results for: %s" msgstr "" +#: single.php:23 +msgid "Previous:" +msgstr "" + +#: single.php:24 +msgid "Next:" +msgstr "" + #: template-parts/content-none.php:14 msgid "Nothing Found" msgstr "" diff --git a/single.php b/single.php index 4d60b1e7..86319dc2 100644 --- a/single.php +++ b/single.php @@ -19,7 +19,12 @@ get_header(); get_template_part( 'template-parts/content', get_post_type() ); - the_post_navigation(); + the_post_navigation( + array( + 'prev_text' => '' . esc_html__( 'Previous:', '_s' ) . ' %title', + 'next_text' => '' . esc_html__( 'Next:', '_s' ) . ' %title', + ) + ); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) :