From 644e7c485a4975e8abbf7ada043b65652f868215 Mon Sep 17 00:00:00 2001 From: Shea Bunge Date: Tue, 18 Dec 2018 02:02:37 +1100 Subject: [PATCH] Fix incorrect translator comment --- languages/code-snippets.pot | 2 +- php/class-contextual-help.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/languages/code-snippets.pot b/languages/code-snippets.pot index b2594316..6b1d5cd1 100644 --- a/languages/code-snippets.pot +++ b/languages/code-snippets.pot @@ -216,7 +216,7 @@ msgstr "" msgid "Exporting" msgstr "" -#. translators: %s: URL to Import Snippets admin menu +#. translators: %s: URL to Manage Snippets admin menu #: php/class-contextual-help.php:143 msgid "You can save your snippets to a Code Snippets (.xml) export file using the Manage Snippets page." msgstr "" diff --git a/php/class-contextual-help.php b/php/class-contextual-help.php index 9d586ca2..995ea2a6 100644 --- a/php/class-contextual-help.php +++ b/php/class-contextual-help.php @@ -139,7 +139,7 @@ private function load_import_help() { $this->screen->add_help_tab( array( 'id' => 'export', 'title' => __( 'Exporting', 'code-snippets' ), - /* translators: %s: URL to Import Snippets admin menu */ + /* translators: %s: URL to Manage Snippets admin menu */ 'content' => '

' . sprintf( __( 'You can save your snippets to a Code Snippets (.xml) export file using the Manage Snippets page.', 'code-snippets' ), $manage_url ) . '

', ) ); }