diff --git a/languages/_s.pot b/languages/_s.pot
index ca72605..8cb5d0e 100644
--- a/languages/_s.pot
+++ b/languages/_s.pot
@@ -116,6 +116,22 @@ msgstr ""
msgid "Primary Menu"
msgstr ""
+#: single.php:21
+msgid "Previous Post"
+msgstr ""
+
+#: single.php:21
+msgid "Previous"
+msgstr ""
+
+#: single.php:22
+msgid "Next Post"
+msgstr ""
+
+#: single.php:22
+msgid "Next"
+msgstr ""
+
#. translators: %s: post date.
#: inc/template-tags.php:29
#, php-format
diff --git a/single.php b/single.php
index 4f058f7..329400a 100644
--- a/single.php
+++ b/single.php
@@ -17,7 +17,10 @@ get_header(); ?>
get_template_part( 'template-parts/content', get_post_format() );
- the_post_navigation();
+ the_post_navigation( array(
+ 'prev_text' => '' . __( 'Previous Post', '_s' ) . '' . __( 'Previous', '_s' ) . ' %title',
+ 'next_text' => '' . __( 'Next Post', '_s' ) . '' . __( '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() ) :