]> granicus.if.org Git - neomutt/commitdiff
Make an error message ready for translation. From Gero Treuner.
authorThomas Roessler <roessler@does-not-exist.org>
Mon, 26 Jul 1999 18:25:22 +0000 (18:25 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Mon, 26 Jul 1999 18:25:22 +0000 (18:25 +0000)
recvattach.c

index 8a5f3a70e62f70b4f0dcb8cd18717c7d5e62925e..bf0a091c7595fb15584a2cd0cd1d2d05c002cc4b 100644 (file)
 #include <string.h>
 #include <errno.h>
 
+static const char Mailbox_is_read_only[] = N_("Mailbox is read-only.");
+
 #define CHECK_READONLY if (Context->readonly) \
 {\
     mutt_flushinp (); \
-    mutt_error _("Mailbox is read-only."); \
+    mutt_error _(Mailbox_is_read_only); \
     break; \
 }