]> granicus.if.org Git - neomutt/commitdiff
opcodes.h: Fix plural messages with "<word>(s)"
authorReis Radomil <reisradomil@fake-box.com>
Tue, 22 May 2018 14:16:12 +0000 (14:16 +0000)
committerRichard Russon <rich@flatcap.org>
Tue, 29 May 2018 03:03:35 +0000 (04:03 +0100)
Due to the implementation details we do not know whether we work with
zero, 1, 12, ... messages/files/.... So in English we use normal plural.
We leave it up to the translator to choose a fitting translation. Some
language might have other means to express this situation.

opcodes.h

index ac891da54530d227da66c47236bebd523330bae3..fa7a79415a331b5ac6f52c52ad738be81fce0c73 100644 (file)
--- a/opcodes.h
+++ b/opcodes.h
@@ -44,9 +44,9 @@
   _fmt(OP_CATCHUP,                        N_("mark all articles in newsgroup as read")) \
   _fmt(OP_CHANGE_DIRECTORY,               N_("change directories")) \
   _fmt(OP_CHECK_NEW,                      N_("check mailboxes for new mail")) \
-  _fmt(OP_COMPOSE_ATTACH_FILE,            N_("attach file(s) to this message")) \
-  _fmt(OP_COMPOSE_ATTACH_MESSAGE,         N_("attach message(s) to this message")) \
-  _fmt(OP_COMPOSE_ATTACH_NEWS_MESSAGE,    N_("attach news article(s) to this message")) \
+  _fmt(OP_COMPOSE_ATTACH_FILE,            N_("attach files to this message")) \
+  _fmt(OP_COMPOSE_ATTACH_MESSAGE,         N_("attach messages to this message")) \
+  _fmt(OP_COMPOSE_ATTACH_NEWS_MESSAGE,    N_("attach news articles to this message")) \
   _fmt(OP_COMPOSE_EDIT_BCC,               N_("edit the BCC list")) \
   _fmt(OP_COMPOSE_EDIT_CC,                N_("edit the CC list")) \
   _fmt(OP_COMPOSE_EDIT_DESCRIPTION,       N_("edit attachment description")) \
   _fmt(OP_DECRYPT_COPY,                   N_("make decrypted copy")) \
   _fmt(OP_DECRYPT_SAVE,                   N_("make decrypted copy and delete")) \
   _fmt(OP_EXTRACT_KEYS,                   N_("extract supported public keys")) \
-  _fmt(OP_FORGET_PASSPHRASE,              N_("wipe passphrase(s) from memory")) \
+  _fmt(OP_FORGET_PASSPHRASE,              N_("wipe passphrases from memory")) \
 
 #ifdef MIXMASTER
 #define OPS_MIX(_fmt) \