From 1fe6318b51f220384825141ded45ac18a07f18f5 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sun, 4 Feb 2018 15:15:55 -0800 Subject: [PATCH] Fix history menu title. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Remove an accidental leading space. Thanks to Vincent Lefèvre for noticing the problem and providing a patch! --- history.c | 2 +- po/fr.po | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/history.c b/history.c index a4b2b837..15024aab 100644 --- a/history.c +++ b/history.c @@ -519,7 +519,7 @@ static void history_menu (char *buf, size_t buflen, char **matches, int match_co char helpstr[LONG_STRING]; char title[STRING]; - snprintf (title, sizeof (title), _(" History '%s'"), buf); + snprintf (title, sizeof (title), _("History '%s'"), buf); menu = mutt_new_menu (MENU_GENERIC); menu->make_entry = history_entry; diff --git a/po/fr.po b/po/fr.po index 2821b042..972076a4 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2394,8 +2394,8 @@ msgstr "Mauvais format de fichier d'historique (ligne %d)" # , c-format #: history.c:522 #, c-format -msgid " History '%s'" -msgstr " Historique '%s'" +msgid "History '%s'" +msgstr "Historique '%s'" #: hook.c:97 msgid "current mailbox shortcut '^' is unset" -- 2.50.1