]> granicus.if.org Git - neomutt/commitdiff
Introducing a us-dist target to create a USG-friendly version of
authorThomas Roessler <roessler@does-not-exist.org>
Tue, 13 Oct 1998 22:32:37 +0000 (22:32 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Tue, 13 Oct 1998 22:32:37 +0000 (22:32 +0000)
mutt.  Additionally, the NEWS file is prepared for 0.95.

13 files changed:
Makefile.am
Makefile.in
NEWS
config.h.in
configure
configure.in
gen_defs
po/POTFILES.in
po/cat-id-tbl.c
po/de.po
po/mutt.pot
po/ru.po
reap.pl [new file with mode: 0755]

index 6a9e064e64be750ebb9bef628634f9648a848617..b22c267f2caadd7a4ff3f7992b58dbd937def3cb 100644 (file)
@@ -19,6 +19,11 @@ mutt_LDADD = @MUTT_LIB_OBJECTS@ $(INTLLIBS)
 mutt_DEPENDENCIES = @MUTT_LIB_OBJECTS@ $(INTLDEPS)
 
 DEFS=-DSHAREDIR=\"$(sharedir)\" -DSYSCONFDIR=\"$(sysconfdir)\"
+INCLUDES="-I./"
+
+non_us_sources = pgp.c pgpinvoke.c pgpkey.c pgppubring.c sha1dgst.c \
+       gnupgparse.c sha.h sha_locl.h \
+       doc/language.txt doc/language50.txt OPS.PGP doc/PGP-Notes
 
 EXTRA_mutt_SOURCES = pgp.c pgpinvoke.c pgpkey.c pgppubring.c sha1dgst.c \
        gnupgparse.c resize.c snprintf.c dotlock.c pop.c imap.c socket.c
@@ -43,7 +48,7 @@ SUBDIRS = doc intl po rx contrib charsets
 
 OPS=$(srcdir)/OPS $(srcdir)/OPS.PGP
 
-keymap_defs.h: $(OPS)
+keymap_defs.h: $(OPS) $(srcdir)/gen_defs
        $(srcdir)/gen_defs $(OPS) > keymap_defs.h
 
 reldate:
@@ -84,3 +89,19 @@ changelog:
 dist-hook:
        -for file in $(BUILT_SOURCES) ; do rm -f $(distdir)/$$file ; done
        -rm -f $(distdir)/config.h
+
+us-distdir: distdir dist-hook
+       mv $(distdir) $(distdir)-us
+
+us-dist: us-distdir
+       for file in $(distdir)-us/*.c $(distdir)-us/*.h ; do \
+               $(srcdir)/reap.pl < $$file > $$file.n && rm $$file && mv $$file.n $$file ; \
+       done
+       for file in $(non_us_sources) ; do \
+               echo "/* This file is only available in the international mutt version */" \
+                       > $(distdir)-us/$$file ; \
+       done
+       echo "This version of mutt may be exported from the US.">  $(distdir)-us/EXPORTABLE
+       -chmod -R a+r $(distdir)-us
+       GZIP=$(GZIP) $(TAR) chozf $(distdir)-us.tar.gz $(distdir)-us
+       -rm -rf $(distdir)-us
index ddb349216da58fb1f7c425876d85ce9c5655b577..0f36ef0df87b091fee91bb992c0e17e0c85c53fd 100644 (file)
@@ -119,6 +119,11 @@ mutt_LDADD = @MUTT_LIB_OBJECTS@ $(INTLLIBS)
 mutt_DEPENDENCIES = @MUTT_LIB_OBJECTS@ $(INTLDEPS)
 
 DEFS=-DSHAREDIR=\"$(sharedir)\" -DSYSCONFDIR=\"$(sysconfdir)\"
+INCLUDES="-I./"
+
+non_us_sources = pgp.c pgpinvoke.c pgpkey.c pgppubring.c sha1dgst.c \
+       gnupgparse.c sha.h sha_locl.h \
+       doc/language.txt doc/language50.txt OPS.PGP doc/PGP-Notes
 
 EXTRA_mutt_SOURCES = pgp.c pgpinvoke.c pgpkey.c pgppubring.c sha1dgst.c \
        gnupgparse.c resize.c snprintf.c dotlock.c pop.c imap.c socket.c
@@ -527,7 +532,7 @@ maintainer-clean
 mutt_dotlock.c: dotlock.c
        cp dotlock.c mutt_dotlock.c
 
-keymap_defs.h: $(OPS)
+keymap_defs.h: $(OPS) $(srcdir)/gen_defs
        $(srcdir)/gen_defs $(OPS) > keymap_defs.h
 
 reldate:
@@ -568,6 +573,22 @@ dist-hook:
        -for file in $(BUILT_SOURCES) ; do rm -f $(distdir)/$$file ; done
        -rm -f $(distdir)/config.h
 
+us-distdir: distdir dist-hook
+       mv $(distdir) $(distdir)-us
+
+us-dist: us-distdir
+       for file in $(distdir)-us/*.c $(distdir)-us/*.h ; do \
+               $(srcdir)/reap.pl < $$file > $$file.n && rm $$file && mv $$file.n $$file ; \
+       done
+       for file in $(non_us_sources) ; do \
+               echo "/* This file is only available in the international mutt version */" \
+                       > $(distdir)-us/$$file ; \
+       done
+       echo "This version of mutt may be exported from the US.">  $(distdir)-us/EXPORTABLE
+       -chmod -R a+r $(distdir)-us
+       GZIP=$(GZIP) $(TAR) chozf $(distdir)-us.tar.gz $(distdir)-us
+       -rm -rf $(distdir)-us
+
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
 .NOEXPORT:
diff --git a/NEWS b/NEWS
index 2169f9cc38ff947ec782c769a046324642790b5a..8a0d296e43c5dc0d112cbf91663a82dfacec173d 100644 (file)
--- a/NEWS
+++ b/NEWS
-Major changes since 0.91.1
---------------------------
-
-- additional format for $hdr_format
-       %L      displays the total size of all visible messages in a
-               limited view
-       %<fmt>  displays current time using strftime(fmt)
-
-- additional operators to the pattern matching lanauge:
-       ~B<pattern>     finds pattern anywhere in the message (more
-                       efficient than ~h %s | ~b %s
-       ~z<size>        finds messages of size <size>
-                       E.g. 
-                        ~z<10k #finds messages smaller than 10KB
-                        ~z>10k #finds messages larger than 10KB
-                        ~z10k  #finds messages exactly 10KB in length
-                        
-
-- the $hdr_format variable is renamed to $index_format
-  $hdr_format is still accepted for backwards compatibility
-
-- new variable $folder_format to display entries in the 'browser' menu.
-
-- new variable $followup_to to control generation of Mail-Followup-To
-  field. You can edit this field and Mutt will not overwrite it.
-
-- new variable $sendmail_wait
-
-  Specifies the number of seconds to wait for the ``sendmail'' process
-  to finish before giving up and putting delivery in the background.
-
-  Mutt interprets the value of this variable as follows:
-
-  >0      number of seconds to wait for sendmail to finish before continuing
-  0       wait forever for sendmail to finish
-  <0      always put sendmail in the background without waiting
-
-  Note that if you specify a value other than 0, the output of the child
-  process will be put in a temporary file.  If there is some error, you
-  will be informed as to where to find the output.
-
-- Variable $sendmail_bounce has been removed. Mutt now passes all
-  recipients on the command line for normal sending. 
-
-- new variable $query_command
-  Adds support for querying an external database for email addresses.
-
-- The $forward_decode variable has been removed. This has been split into 2
-  variables
-
-  $forward_decode - used when $mime_fwd is not set
-  $mime_forward_decode - used when $mime_fwd is set
-
-- new variable $wrap_search. This controls whether searches wrap around the
-  end of the mailbox.
-  
-  When set, searches will wrap around the first (or last) message. When
-  unset, searches will not wrap
-
-
-- New command 'reset' to reset variables to their default compile-time
-  definitions. When used with special keyword 'all', all variables are
-  reset to their default values. When used with the 'set' command and the
-  variable name prefixed with '&', this has the same behaviour as the
-  'reset' command.
-
-  Eg. 
-   reset move
-   reset all
-   set &move
-   set &all
-
-- Function key names used in muttrc need to be enclosed in <>. 
-  Function keys can be used in macros also.
-  
-  Eg. 
-   macro index Y *<PageUp>
-   bind index <down> next-entry
-
-- You can now delete a message's attachments by pressing 'd' (delete-entry)
-  on the attachment in the attachment menu.
-  
-- You can now color index menu entries using the pattern matching language.
-  The 'uncolor' command resets the entry to its default color. The '*'
-  token can be used to reset all index entries to their default colors.
-  
-  Eg.
-    color index blue white ~fvikas
-    color index red white ~z>100k
-    uncolor index ~fvikas
-    uncolor index *
-    
-- mailboxes specified in save-hooks can be %-expanded using $header_format
-
-- the default save mailbox no longer looks at defined `lists'. To get the
-  old behaviour, use
-    save-hook ~l %B
-
-- optional strings in format strings have been extended to allow for an
-  `else' clause.  the new syntax is:
-        %?<testchar>?<if-string>&<else-string>?
-  or if no `else' clause is desired (backwards compatibility):
-        %?<testchar>?<if-string>?
-
-- If new mail is delivered to a folder when Mutt is displaying a limited
-  view of the folder, it is added to the limited view only if it satisfies
-  the current limit criteria.
-
-- the <Tab> key on the command-line now completes commands and variable
-  names. The longest non-ambiguous part is put on the command-line.
-  Entering additional text and using <Tab> will perform completion again.
+Major changes since 0.93
+------------------------
+
+- i18n support of various kinds: Mutt now comes with character set
+  definitions, so it is able to convert character sets you encounter
+  in e-mail messagese to your local display's character set as
+  defined by the $charset configuration variable.  This includes a
+  poorly-tested UTF-8 decoder.
+
+  Additionally, mutt includes GNU gettext support, so you can make
+  it speak your own language.  To use this, just set the environment
+  variable "LANG" appropriately.
+
+  (For a list of currently supported languages, have a look at the
+  po files in the po subdirectory.)
+
+- There is support for the POP3 "last" command for just fetching the
+  latest unread messages from your POP server.  To enable use of
+  this feature, set the $pop_last configuration option.
+
+- The IMAP code's handling of server-side EXPUNGE messages was
+  fixed, so mutt should now be able to cope with concurrent access
+  to IMAP folders.  This is, e.g., supported by the CMU and MS
+  Exchange IMAP servers.
+
+- mh_sequences support was _dropped_.  The reason is, on the one
+  hand, a major re-write of the mh and maildir folder
+  resynchronization code, and the fact that there is no locking
+  protocol defined for this file.  If you want to use
+  one-file-per-message folders, you should better rely on maildir.
+
+- The new patterns ~g and ~G in the pattern language match PGP
+  signed and encrypted messages, respectively.
+
+- The $smileys configuration variable defines exceptions from the
+  quote-detecting regular expressions.  This can be used to
+  correctly handle lines beginning with smileys such as ":-)" -
+  these lines were detected as quoted text by the old code.
+
+- The syntax for function keys in key bindings and macro definitions
+  has changed:  Instead of "fN", you have to use "<fN>" now.  This
+  is more consistant with the syntax for the other special keys like
+  "<up>", "<down>", and so on.
+
+- We have a new feature named edit-message.  This enables you to
+  edit a message from one of your mail folders and re-send or
+  re-file it afterwards.
+
+- Thread collapsing is there: To control it, we have the two
+  functions collapse-all and collapse-thread, and the configuration
+  variables $collapse_unread and $collapse_jump.
+
+- We have a new set of functions decrypt-{save,copy}. They strip off
+  the initial layer of PGP/MIME encryption.  For "classical"
+  application/pgp messages, they are equivalent to the decode
+  functions, for unencrypted messages they fall back to the normal
+  save functions.
+
+- The build-time "hidden host" option has gone.  Use the
+  $hidden_host configuration variable instead.
+
+- Unknown major MIME types are recognized properly.
+
+- An option $write_bcc controls whether or not the Bcc header is
+  written out to the mail transport agent or not.  Exim users may
+  wish to use this.
+
+- The compose menu tries to detect and smoothly handle changes to
+  attached files.
+
+- On the compose menu, you can generate a "private" copy of an
+  attached file using the get-attachment function.
+
+- sendmail's exit values are properly interpreted, so you will no
+  longer get a "no such file or directory" error when sending mail
+  to a non-existing local user.
+
+- The variable $attach_format controls the look of the compose and
+  attach menus.
+
+- The file browser permits you to view files before selecting them.
+
+- Bug fixes of all kinds.  Look at the ChangeLog file for details.
+
+
 $Id$
index 48343cff1e181c1befb477eac27f4fe136099422..89ea96fb1c21ec6c6f7c93399d2febe55d2334fa 100644 (file)
@@ -1,4 +1,6 @@
 /* config.h.in.  Generated automatically from configure.in by autoheader.  */
+/* $Id$ */
+
 /* Is this the international version? */
 #undef SUBVERSION
 
index 27a60c51a1e83f41dea9513579a8c2f80816b211..95d225a05d58e7446279e06ada46df6a46cfd27d 100755 (executable)
--- a/configure
+++ b/configure
@@ -1181,14 +1181,16 @@ EOF
 
 
 OPS='$(srcdir)/OPS'
-if test -f $srcdir/pgp.c; then
-       SUBVERSION=i
+if test -f $srcdir/EXPORTABLE ; then
+       SUBVERSION="us"
+else
+       SUBVERSION="i"
        PGPPATH=no
-       
+
        # Extract the first word of "gpg", so it can be a program name with args.
 set dummy gpg; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:1192: checking for $ac_word" >&5
+echo "configure:1194: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_GPG'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -1228,11 +1230,11 @@ EOF
 EOF
 
        fi
-       
+
        # Extract the first word of "pgpk", so it can be a program name with args.
 set dummy pgpk; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:1236: checking for $ac_word" >&5
+echo "configure:1238: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_PGPK'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -1277,7 +1279,7 @@ EOF
        # Extract the first word of "pgp", so it can be a program name with args.
 set dummy pgp; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:1281: checking for $ac_word" >&5
+echo "configure:1283: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_PGP'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -1341,7 +1343,7 @@ EOF
 # Extract the first word of "ispell", so it can be a program name with args.
 set dummy ispell; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:1345: checking for $ac_word" >&5
+echo "configure:1347: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_ISPELL'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -1378,7 +1380,7 @@ EOF
 fi
 
 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
-echo "configure:1382: checking how to run the C preprocessor" >&5
+echo "configure:1384: checking how to run the C preprocessor" >&5
 # On Suns, sometimes $CPP names a directory.
 if test -n "$CPP" && test -d "$CPP"; then
   CPP=
@@ -1393,13 +1395,13 @@ else
   # On the NeXT, cc -E runs the code through the compiler's parser,
   # not just through cpp.
   cat > conftest.$ac_ext <<EOF
-#line 1397 "configure"
+#line 1399 "configure"
 #include "confdefs.h"
 #include <assert.h>
 Syntax Error
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:1403: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:1405: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out`
 if test -z "$ac_err"; then
   :
@@ -1410,13 +1412,13 @@ else
   rm -rf conftest*
   CPP="${CC-cc} -E -traditional-cpp"
   cat > conftest.$ac_ext <<EOF
-#line 1414 "configure"
+#line 1416 "configure"
 #include "confdefs.h"
 #include <assert.h>
 Syntax Error
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:1420: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:1422: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out`
 if test -z "$ac_err"; then
   :
@@ -1442,7 +1444,7 @@ echo "$ac_t""$CPP" 1>&6
 if test "${with_slang+set}" = set; then
   withval="$with_slang"
   echo $ac_n "checking if -ltermlib is required""... $ac_c" 1>&6
-echo "configure:1446: checking if -ltermlib is required" >&5
+echo "configure:1448: checking if -ltermlib is required" >&5
 if eval "test \"`echo '$''{'mutt_cv_bsdish'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -1450,7 +1452,7 @@ else
     { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
 else
   cat > conftest.$ac_ext <<EOF
-#line 1454 "configure"
+#line 1456 "configure"
 #include "confdefs.h"
 #include <sys/param.h>
 
@@ -1463,7 +1465,7 @@ main ()
 #endif
 }
 EOF
-if { (eval echo configure:1467: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:1469: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
 then
   mutt_cv_bsdish=yes
 else
@@ -1480,7 +1482,7 @@ fi
 echo "$ac_t""$mutt_cv_bsdish" 1>&6
        
        echo $ac_n "checking for S-Lang""... $ac_c" 1>&6
-echo "configure:1484: checking for S-Lang" >&5
+echo "configure:1486: checking for S-Lang" >&5
        if test $withval = yes; then
                if test -d $srcdir/../slang; then
                        mutt_cv_slang=$srcdir/../slang/src
@@ -1526,16 +1528,16 @@ EOF
        
                
        echo $ac_n "checking if I can compile a test SLang program""... $ac_c" 1>&6
-echo "configure:1530: checking if I can compile a test SLang program" >&5
+echo "configure:1532: checking if I can compile a test SLang program" >&5
        cat > conftest.$ac_ext <<EOF
-#line 1532 "configure"
+#line 1534 "configure"
 #include "confdefs.h"
 
 int main() {
 SLtt_get_terminfo ();
 ; return 0; }
 EOF
-if { (eval echo configure:1539: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:1541: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   echo "$ac_t""yes" 1>&6
 else
@@ -1563,7 +1565,7 @@ fi
 
 
        echo $ac_n "checking for initscr in -lncurses""... $ac_c" 1>&6
-echo "configure:1567: checking for initscr in -lncurses" >&5
+echo "configure:1569: checking for initscr in -lncurses" >&5
 ac_lib_var=`echo ncurses'_'initscr | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -1571,7 +1573,7 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-lncurses  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 1575 "configure"
+#line 1577 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -1582,7 +1584,7 @@ int main() {
 initscr()
 ; return 0; }
 EOF
-if { (eval echo configure:1586: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:1588: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -1605,17 +1607,17 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
 do
 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
-echo "configure:1609: checking for $ac_hdr" >&5
+echo "configure:1611: checking for $ac_hdr" >&5
 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 1614 "configure"
+#line 1616 "configure"
 #include "confdefs.h"
 #include <$ac_hdr>
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:1619: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:1621: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out`
 if test -z "$ac_err"; then
   rm -rf conftest*
@@ -1656,12 +1658,12 @@ fi
 
 
        echo $ac_n "checking for start_color""... $ac_c" 1>&6
-echo "configure:1660: checking for start_color" >&5
+echo "configure:1662: checking for start_color" >&5
 if eval "test \"`echo '$''{'ac_cv_func_start_color'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 1665 "configure"
+#line 1667 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char start_color(); below.  */
@@ -1684,7 +1686,7 @@ start_color();
 
 ; return 0; }
 EOF
-if { (eval echo configure:1688: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:1690: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_start_color=yes"
 else
@@ -1709,12 +1711,12 @@ fi
        for ac_func in typeahead bkgdset curs_set meta use_default_colors
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:1713: checking for $ac_func" >&5
+echo "configure:1715: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 1718 "configure"
+#line 1720 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -1737,7 +1739,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:1741: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:1743: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -1764,12 +1766,12 @@ done
        for ac_func in resizeterm
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:1768: checking for $ac_func" >&5
+echo "configure:1770: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 1773 "configure"
+#line 1775 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -1792,7 +1794,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:1796: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:1798: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -1821,12 +1823,12 @@ fi
 
 
 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
-echo "configure:1825: checking for ANSI C header files" >&5
+echo "configure:1827: checking for ANSI C header files" >&5
 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 1830 "configure"
+#line 1832 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 #include <stdarg.h>
@@ -1834,7 +1836,7 @@ else
 #include <float.h>
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:1838: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:1840: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out`
 if test -z "$ac_err"; then
   rm -rf conftest*
@@ -1851,7 +1853,7 @@ rm -f conftest*
 if test $ac_cv_header_stdc = yes; then
   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
 cat > conftest.$ac_ext <<EOF
-#line 1855 "configure"
+#line 1857 "configure"
 #include "confdefs.h"
 #include <string.h>
 EOF
@@ -1869,7 +1871,7 @@ fi
 if test $ac_cv_header_stdc = yes; then
   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
 cat > conftest.$ac_ext <<EOF
-#line 1873 "configure"
+#line 1875 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 EOF
@@ -1890,7 +1892,7 @@ if test "$cross_compiling" = yes; then
   :
 else
   cat > conftest.$ac_ext <<EOF
-#line 1894 "configure"
+#line 1896 "configure"
 #include "confdefs.h"
 #include <ctype.h>
 #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
@@ -1901,7 +1903,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
 exit (0); }
 
 EOF
-if { (eval echo configure:1905: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:1907: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
 then
   :
 else
@@ -1929,17 +1931,17 @@ for ac_hdr in stdarg.h sys/ioctl.h sysexits.h
 do
 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
-echo "configure:1933: checking for $ac_hdr" >&5
+echo "configure:1935: checking for $ac_hdr" >&5
 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 1938 "configure"
+#line 1940 "configure"
 #include "confdefs.h"
 #include <$ac_hdr>
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:1943: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:1945: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out`
 if test -z "$ac_err"; then
   rm -rf conftest*
@@ -1967,12 +1969,12 @@ done
 
 
 echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6
-echo "configure:1971: checking return type of signal handlers" >&5
+echo "configure:1973: checking return type of signal handlers" >&5
 if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 1976 "configure"
+#line 1978 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <signal.h>
@@ -1989,7 +1991,7 @@ int main() {
 int i;
 ; return 0; }
 EOF
-if { (eval echo configure:1993: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:1995: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
   rm -rf conftest*
   ac_cv_type_signal=void
 else
@@ -2009,12 +2011,12 @@ EOF
 
 
 echo $ac_n "checking for sys_siglist declaration in signal.h or unistd.h""... $ac_c" 1>&6
-echo "configure:2013: checking for sys_siglist declaration in signal.h or unistd.h" >&5
+echo "configure:2015: checking for sys_siglist declaration in signal.h or unistd.h" >&5
 if eval "test \"`echo '$''{'ac_cv_decl_sys_siglist'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 2018 "configure"
+#line 2020 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <signal.h>
@@ -2026,7 +2028,7 @@ int main() {
 char *msg = *(sys_siglist + 1);
 ; return 0; }
 EOF
-if { (eval echo configure:2030: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:2032: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
   rm -rf conftest*
   ac_cv_decl_sys_siglist=yes
 else
@@ -2048,7 +2050,7 @@ fi
 
 
 echo $ac_n "checking size of long""... $ac_c" 1>&6
-echo "configure:2052: checking size of long" >&5
+echo "configure:2054: checking size of long" >&5
 if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -2056,7 +2058,7 @@ else
     { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
 else
   cat > conftest.$ac_ext <<EOF
-#line 2060 "configure"
+#line 2062 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 main()
@@ -2067,7 +2069,7 @@ main()
   exit(0);
 }
 EOF
-if { (eval echo configure:2071: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:2073: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
 then
   ac_cv_sizeof_long=`cat conftestval`
 else
@@ -2088,12 +2090,12 @@ EOF
 
 
 echo $ac_n "checking for pid_t""... $ac_c" 1>&6
-echo "configure:2092: checking for pid_t" >&5
+echo "configure:2094: checking for pid_t" >&5
 if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 2097 "configure"
+#line 2099 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #if STDC_HEADERS
@@ -2124,12 +2126,12 @@ fi
 for ac_func in setegid srand48 strerror
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:2128: checking for $ac_func" >&5
+echo "configure:2130: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 2133 "configure"
+#line 2135 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -2152,7 +2154,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:2156: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:2158: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -2180,12 +2182,12 @@ done
 for ac_func in strcasecmp
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:2184: checking for $ac_func" >&5
+echo "configure:2186: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 2189 "configure"
+#line 2191 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -2208,7 +2210,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:2212: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:2214: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -2238,12 +2240,12 @@ done
 mutt_cv_snprintf=no
 SNPRINTFOBJS=""
 echo $ac_n "checking for snprintf""... $ac_c" 1>&6
-echo "configure:2242: checking for snprintf" >&5
+echo "configure:2244: checking for snprintf" >&5
 if eval "test \"`echo '$''{'ac_cv_func_snprintf'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 2247 "configure"
+#line 2249 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char snprintf(); below.  */
@@ -2266,7 +2268,7 @@ snprintf();
 
 ; return 0; }
 EOF
-if { (eval echo configure:2270: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:2272: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_snprintf=yes"
 else
@@ -2290,12 +2292,12 @@ mutt_cv_snprintf=yes
 fi
 
 echo $ac_n "checking for vsnprintf""... $ac_c" 1>&6
-echo "configure:2294: checking for vsnprintf" >&5
+echo "configure:2296: checking for vsnprintf" >&5
 if eval "test \"`echo '$''{'ac_cv_func_vsnprintf'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 2299 "configure"
+#line 2301 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char vsnprintf(); below.  */
@@ -2318,7 +2320,7 @@ vsnprintf();
 
 ; return 0; }
 EOF
-if { (eval echo configure:2322: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:2324: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_vsnprintf=yes"
 else
@@ -2350,12 +2352,12 @@ fi
 for ac_func in ftruncate
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:2354: checking for $ac_func" >&5
+echo "configure:2356: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 2359 "configure"
+#line 2361 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -2378,7 +2380,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:2382: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:2384: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -2400,7 +2402,7 @@ EOF
 else
   echo "$ac_t""no" 1>&6
 echo $ac_n "checking for chsize in -lx""... $ac_c" 1>&6
-echo "configure:2404: checking for chsize in -lx" >&5
+echo "configure:2406: checking for chsize in -lx" >&5
 ac_lib_var=`echo x'_'chsize | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -2408,7 +2410,7 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-lx  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 2412 "configure"
+#line 2414 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -2419,7 +2421,7 @@ int main() {
 chsize()
 ; return 0; }
 EOF
-if { (eval echo configure:2423: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:2425: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -2453,12 +2455,12 @@ done
 for ac_func in strftime
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:2457: checking for $ac_func" >&5
+echo "configure:2459: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 2462 "configure"
+#line 2464 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -2481,7 +2483,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:2485: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:2487: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -2503,7 +2505,7 @@ EOF
 else
   echo "$ac_t""no" 1>&6
 echo $ac_n "checking for strftime in -lintl""... $ac_c" 1>&6
-echo "configure:2507: checking for strftime in -lintl" >&5
+echo "configure:2509: checking for strftime in -lintl" >&5
 ac_lib_var=`echo intl'_'strftime | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -2511,7 +2513,7 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-lintl  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 2515 "configure"
+#line 2517 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -2522,7 +2524,7 @@ int main() {
 strftime()
 ; return 0; }
 EOF
-if { (eval echo configure:2526: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:2528: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -2556,12 +2558,12 @@ done
 for ac_func in fchdir
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:2560: checking for $ac_func" >&5
+echo "configure:2562: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 2565 "configure"
+#line 2567 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -2584,7 +2586,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:2588: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:2590: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -2636,12 +2638,12 @@ else
   for ac_func in regcomp
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:2640: checking for $ac_func" >&5
+echo "configure:2642: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 2645 "configure"
+#line 2647 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -2664,7 +2666,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:2668: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:2670: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -2740,7 +2742,7 @@ if test "${with_mailpath+set}" = set; then
   mutt_cv_mailpath=$withval
 else
    echo $ac_n "checking where new mail is stored""... $ac_c" 1>&6
-echo "configure:2744: checking where new mail is stored" >&5
+echo "configure:2746: checking where new mail is stored" >&5
 if eval "test \"`echo '$''{'mutt_cv_mailpath'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -2769,7 +2771,7 @@ EOF
 
 
        echo $ac_n "checking if $mutt_cv_mailpath is world writable""... $ac_c" 1>&6
-echo "configure:2773: checking if $mutt_cv_mailpath is world writable" >&5
+echo "configure:2775: checking if $mutt_cv_mailpath is world writable" >&5
 if eval "test \"`echo '$''{'mutt_cv_worldwrite'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -2777,7 +2779,7 @@ else
     { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
 else
   cat > conftest.$ac_ext <<EOF
-#line 2781 "configure"
+#line 2783 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -2791,7 +2793,7 @@ int main (int argc, char **argv)
        exit (1);
 }
 EOF
-if { (eval echo configure:2795: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:2797: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
 then
   mutt_cv_worldwrite=yes
 else
@@ -2816,7 +2818,7 @@ EOF
        else
 
                echo $ac_n "checking if $mutt_cv_mailpath is group writable""... $ac_c" 1>&6
-echo "configure:2820: checking if $mutt_cv_mailpath is group writable" >&5
+echo "configure:2822: checking if $mutt_cv_mailpath is group writable" >&5
 if eval "test \"`echo '$''{'mutt_cv_groupwrite'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -2824,7 +2826,7 @@ else
     { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
 else
   cat > conftest.$ac_ext <<EOF
-#line 2828 "configure"
+#line 2830 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -2838,7 +2840,7 @@ int main (int argc, char **argv)
        exit (1);
 }
 EOF
-if { (eval echo configure:2842: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:2844: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
 then
   mutt_cv_groupwrite=yes
 else
@@ -2885,7 +2887,7 @@ if test "${with_libdir+set}" = set; then
   mutt_cv_libdir=$withval
 else
    echo $ac_n "checking where to put architecture-dependent files""... $ac_c" 1>&6
-echo "configure:2889: checking where to put architecture-dependent files" >&5
+echo "configure:2891: checking where to put architecture-dependent files" >&5
 if eval "test \"`echo '$''{'mutt_cv_libdir'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -2906,7 +2908,7 @@ if test "${with_sharedir+set}" = set; then
   mutt_cv_sharedir=$withval
 else
    echo $ac_n "checking where to put architecture-independent data files""... $ac_c" 1>&6
-echo "configure:2910: checking where to put architecture-independent data files" >&5
+echo "configure:2912: checking where to put architecture-independent data files" >&5
 if eval "test \"`echo '$''{'mutt_cv_sharedir'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -2931,7 +2933,7 @@ if test "${with_docdir+set}" = set; then
   mutt_cv_docdir=$withval
 else
    echo $ac_n "checking where to put the documentation""... $ac_c" 1>&6
-echo "configure:2935: checking where to put the documentation" >&5
+echo "configure:2937: checking where to put the documentation" >&5
 if eval "test \"`echo '$''{'mutt_cv_docdir'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -2981,7 +2983,7 @@ if test "${enable_pop+set}" = set; then
 EOF
 
        echo $ac_n "checking for socket in -lsocket""... $ac_c" 1>&6
-echo "configure:2985: checking for socket in -lsocket" >&5
+echo "configure:2987: checking for socket in -lsocket" >&5
 ac_lib_var=`echo socket'_'socket | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -2989,7 +2991,7 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-lsocket  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 2993 "configure"
+#line 2995 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -3000,7 +3002,7 @@ int main() {
 socket()
 ; return 0; }
 EOF
-if { (eval echo configure:3004: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:3006: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -3028,7 +3030,7 @@ else
 fi
 
        echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6
-echo "configure:3032: checking for gethostbyname in -lnsl" >&5
+echo "configure:3034: checking for gethostbyname in -lnsl" >&5
 ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -3036,7 +3038,7 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-lnsl  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 3040 "configure"
+#line 3042 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -3047,7 +3049,7 @@ int main() {
 gethostbyname()
 ; return 0; }
 EOF
-if { (eval echo configure:3051: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:3053: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -3087,7 +3089,7 @@ if test "${enable_imap+set}" = set; then
 EOF
 
        echo $ac_n "checking for socket in -lsocket""... $ac_c" 1>&6
-echo "configure:3091: checking for socket in -lsocket" >&5
+echo "configure:3093: checking for socket in -lsocket" >&5
 ac_lib_var=`echo socket'_'socket | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -3095,7 +3097,7 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-lsocket  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 3099 "configure"
+#line 3101 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -3106,7 +3108,7 @@ int main() {
 socket()
 ; return 0; }
 EOF
-if { (eval echo configure:3110: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:3112: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -3134,7 +3136,7 @@ else
 fi
 
        echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6
-echo "configure:3138: checking for gethostbyname in -lnsl" >&5
+echo "configure:3140: checking for gethostbyname in -lnsl" >&5
 ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -3142,7 +3144,7 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-lnsl  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 3146 "configure"
+#line 3148 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -3153,7 +3155,7 @@ int main() {
 gethostbyname()
 ; return 0; }
 EOF
-if { (eval echo configure:3157: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:3159: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -3291,7 +3293,7 @@ fi
 # Extract the first word of "ranlib", so it can be a program name with args.
 set dummy ranlib; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:3295: checking for $ac_word" >&5
+echo "configure:3297: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -3318,12 +3320,12 @@ else
 fi
 
 echo $ac_n "checking for working const""... $ac_c" 1>&6
-echo "configure:3322: checking for working const" >&5
+echo "configure:3324: checking for working const" >&5
 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 3327 "configure"
+#line 3329 "configure"
 #include "confdefs.h"
 
 int main() {
@@ -3372,7 +3374,7 @@ ccp = (char const *const *) p;
 
 ; return 0; }
 EOF
-if { (eval echo configure:3376: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:3378: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
   rm -rf conftest*
   ac_cv_c_const=yes
 else
@@ -3393,21 +3395,21 @@ EOF
 fi
 
 echo $ac_n "checking for inline""... $ac_c" 1>&6
-echo "configure:3397: checking for inline" >&5
+echo "configure:3399: checking for inline" >&5
 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   ac_cv_c_inline=no
 for ac_kw in inline __inline__ __inline; do
   cat > conftest.$ac_ext <<EOF
-#line 3404 "configure"
+#line 3406 "configure"
 #include "confdefs.h"
 
 int main() {
 } $ac_kw foo() {
 ; return 0; }
 EOF
-if { (eval echo configure:3411: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:3413: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
   rm -rf conftest*
   ac_cv_c_inline=$ac_kw; break
 else
@@ -3433,12 +3435,12 @@ EOF
 esac
 
 echo $ac_n "checking for off_t""... $ac_c" 1>&6
-echo "configure:3437: checking for off_t" >&5
+echo "configure:3439: checking for off_t" >&5
 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 3442 "configure"
+#line 3444 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #if STDC_HEADERS
@@ -3466,12 +3468,12 @@ EOF
 fi
 
 echo $ac_n "checking for size_t""... $ac_c" 1>&6
-echo "configure:3470: checking for size_t" >&5
+echo "configure:3472: checking for size_t" >&5
 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 3475 "configure"
+#line 3477 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #if STDC_HEADERS
@@ -3501,19 +3503,19 @@ fi
 # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
 # for constant arguments.  Useless!
 echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
-echo "configure:3505: checking for working alloca.h" >&5
+echo "configure:3507: checking for working alloca.h" >&5
 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 3510 "configure"
+#line 3512 "configure"
 #include "confdefs.h"
 #include <alloca.h>
 int main() {
 char *p = alloca(2 * sizeof(int));
 ; return 0; }
 EOF
-if { (eval echo configure:3517: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:3519: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   ac_cv_header_alloca_h=yes
 else
@@ -3534,12 +3536,12 @@ EOF
 fi
 
 echo $ac_n "checking for alloca""... $ac_c" 1>&6
-echo "configure:3538: checking for alloca" >&5
+echo "configure:3540: checking for alloca" >&5
 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 3543 "configure"
+#line 3545 "configure"
 #include "confdefs.h"
 
 #ifdef __GNUC__
@@ -3562,7 +3564,7 @@ int main() {
 char *p = (char *) alloca(1);
 ; return 0; }
 EOF
-if { (eval echo configure:3566: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:3568: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   ac_cv_func_alloca_works=yes
 else
@@ -3594,12 +3596,12 @@ EOF
 
 
 echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
-echo "configure:3598: checking whether alloca needs Cray hooks" >&5
+echo "configure:3600: checking whether alloca needs Cray hooks" >&5
 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 3603 "configure"
+#line 3605 "configure"
 #include "confdefs.h"
 #if defined(CRAY) && ! defined(CRAY2)
 webecray
@@ -3624,12 +3626,12 @@ echo "$ac_t""$ac_cv_os_cray" 1>&6
 if test $ac_cv_os_cray = yes; then
 for ac_func in _getb67 GETB67 getb67; do
   echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:3628: checking for $ac_func" >&5
+echo "configure:3630: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 3633 "configure"
+#line 3635 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -3652,7 +3654,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:3656: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:3658: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -3679,7 +3681,7 @@ done
 fi
 
 echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
-echo "configure:3683: checking stack direction for C alloca" >&5
+echo "configure:3685: checking stack direction for C alloca" >&5
 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -3687,7 +3689,7 @@ else
   ac_cv_c_stack_direction=0
 else
   cat > conftest.$ac_ext <<EOF
-#line 3691 "configure"
+#line 3693 "configure"
 #include "confdefs.h"
 find_stack_direction ()
 {
@@ -3706,7 +3708,7 @@ main ()
   exit (find_stack_direction() < 0);
 }
 EOF
-if { (eval echo configure:3710: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:3712: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
 then
   ac_cv_c_stack_direction=1
 else
@@ -3731,17 +3733,17 @@ for ac_hdr in unistd.h
 do
 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
-echo "configure:3735: checking for $ac_hdr" >&5
+echo "configure:3737: checking for $ac_hdr" >&5
 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 3740 "configure"
+#line 3742 "configure"
 #include "confdefs.h"
 #include <$ac_hdr>
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:3745: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:3747: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out`
 if test -z "$ac_err"; then
   rm -rf conftest*
@@ -3770,12 +3772,12 @@ done
 for ac_func in getpagesize
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:3774: checking for $ac_func" >&5
+echo "configure:3776: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 3779 "configure"
+#line 3781 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -3798,7 +3800,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:3802: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:3804: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -3823,7 +3825,7 @@ fi
 done
 
 echo $ac_n "checking for working mmap""... $ac_c" 1>&6
-echo "configure:3827: checking for working mmap" >&5
+echo "configure:3829: checking for working mmap" >&5
 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -3831,7 +3833,7 @@ else
   ac_cv_func_mmap_fixed_mapped=no
 else
   cat > conftest.$ac_ext <<EOF
-#line 3835 "configure"
+#line 3837 "configure"
 #include "confdefs.h"
 
 /* Thanks to Mike Haertel and Jim Avera for this test.
@@ -3971,7 +3973,7 @@ main()
 }
 
 EOF
-if { (eval echo configure:3975: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:3977: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
 then
   ac_cv_func_mmap_fixed_mapped=yes
 else
@@ -3999,17 +4001,17 @@ unistd.h sys/param.h
 do
 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
-echo "configure:4003: checking for $ac_hdr" >&5
+echo "configure:4005: checking for $ac_hdr" >&5
 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 4008 "configure"
+#line 4010 "configure"
 #include "confdefs.h"
 #include <$ac_hdr>
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:4013: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:4015: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out`
 if test -z "$ac_err"; then
   rm -rf conftest*
@@ -4039,12 +4041,12 @@ done
 strdup __argz_count __argz_stringify __argz_next
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:4043: checking for $ac_func" >&5
+echo "configure:4045: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 4048 "configure"
+#line 4050 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -4067,7 +4069,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:4071: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:4073: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -4096,12 +4098,12 @@ done
      for ac_func in stpcpy
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:4100: checking for $ac_func" >&5
+echo "configure:4102: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 4105 "configure"
+#line 4107 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -4124,7 +4126,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:4128: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:4130: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -4158,19 +4160,19 @@ EOF
 
    if test $ac_cv_header_locale_h = yes; then
     echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6
-echo "configure:4162: checking for LC_MESSAGES" >&5
+echo "configure:4164: checking for LC_MESSAGES" >&5
 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 4167 "configure"
+#line 4169 "configure"
 #include "confdefs.h"
 #include <locale.h>
 int main() {
 return LC_MESSAGES
 ; return 0; }
 EOF
-if { (eval echo configure:4174: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:4176: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   am_cv_val_LC_MESSAGES=yes
 else
@@ -4191,7 +4193,7 @@ EOF
     fi
   fi
    echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6
-echo "configure:4195: checking whether NLS is requested" >&5
+echo "configure:4197: checking whether NLS is requested" >&5
         # Check whether --enable-nls or --disable-nls was given.
 if test "${enable_nls+set}" = set; then
   enableval="$enable_nls"
@@ -4211,7 +4213,7 @@ fi
 EOF
 
       echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6
-echo "configure:4215: checking whether included gettext is requested" >&5
+echo "configure:4217: checking whether included gettext is requested" >&5
       # Check whether --with-included-gettext or --without-included-gettext was given.
 if test "${with_included_gettext+set}" = set; then
   withval="$with_included_gettext"
@@ -4230,17 +4232,17 @@ fi
 
        ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for libintl.h""... $ac_c" 1>&6
-echo "configure:4234: checking for libintl.h" >&5
+echo "configure:4236: checking for libintl.h" >&5
 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 4239 "configure"
+#line 4241 "configure"
 #include "confdefs.h"
 #include <libintl.h>
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:4244: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:4246: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out`
 if test -z "$ac_err"; then
   rm -rf conftest*
@@ -4257,19 +4259,19 @@ fi
 if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
   echo "$ac_t""yes" 1>&6
   echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6
-echo "configure:4261: checking for gettext in libc" >&5
+echo "configure:4263: checking for gettext in libc" >&5
 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 4266 "configure"
+#line 4268 "configure"
 #include "confdefs.h"
 #include <libintl.h>
 int main() {
 return (int) gettext ("")
 ; return 0; }
 EOF
-if { (eval echo configure:4273: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:4275: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   gt_cv_func_gettext_libc=yes
 else
@@ -4285,7 +4287,7 @@ echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6
 
           if test "$gt_cv_func_gettext_libc" != "yes"; then
             echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6
-echo "configure:4289: checking for bindtextdomain in -lintl" >&5
+echo "configure:4291: checking for bindtextdomain in -lintl" >&5
 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -4293,7 +4295,7 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-lintl  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 4297 "configure"
+#line 4299 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -4304,7 +4306,7 @@ int main() {
 bindtextdomain()
 ; return 0; }
 EOF
-if { (eval echo configure:4308: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:4310: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -4320,7 +4322,7 @@ fi
 if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
   echo "$ac_t""yes" 1>&6
   echo $ac_n "checking for gettext in -lintl""... $ac_c" 1>&6
-echo "configure:4324: checking for gettext in -lintl" >&5
+echo "configure:4326: checking for gettext in -lintl" >&5
 ac_lib_var=`echo intl'_'gettext | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -4328,7 +4330,7 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-lintl  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 4332 "configure"
+#line 4334 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -4339,7 +4341,7 @@ int main() {
 gettext()
 ; return 0; }
 EOF
-if { (eval echo configure:4343: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:4345: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -4379,7 +4381,7 @@ EOF
              # Extract the first word of "msgfmt", so it can be a program name with args.
 set dummy msgfmt; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:4383: checking for $ac_word" >&5
+echo "configure:4385: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -4413,12 +4415,12 @@ fi
                for ac_func in dcgettext
 do
 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:4417: checking for $ac_func" >&5
+echo "configure:4419: checking for $ac_func" >&5
 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 4422 "configure"
+#line 4424 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func(); below.  */
@@ -4441,7 +4443,7 @@ $ac_func();
 
 ; return 0; }
 EOF
-if { (eval echo configure:4445: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:4447: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_$ac_func=yes"
 else
@@ -4468,7 +4470,7 @@ done
                # Extract the first word of "gmsgfmt", so it can be a program name with args.
 set dummy gmsgfmt; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:4472: checking for $ac_word" >&5
+echo "configure:4474: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -4500,7 +4502,7 @@ fi
                # Extract the first word of "xgettext", so it can be a program name with args.
 set dummy xgettext; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:4504: checking for $ac_word" >&5
+echo "configure:4506: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -4532,7 +4534,7 @@ else
 fi
 
                cat > conftest.$ac_ext <<EOF
-#line 4536 "configure"
+#line 4538 "configure"
 #include "confdefs.h"
 
 int main() {
@@ -4540,7 +4542,7 @@ extern int _nl_msg_cat_cntr;
                               return _nl_msg_cat_cntr
 ; return 0; }
 EOF
-if { (eval echo configure:4544: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:4546: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   CATOBJEXT=.gmo
                   DATADIRNAME=share
@@ -4563,7 +4565,7 @@ fi
 
         if test "$CATOBJEXT" = "NONE"; then
          echo $ac_n "checking whether catgets can be used""... $ac_c" 1>&6
-echo "configure:4567: checking whether catgets can be used" >&5
+echo "configure:4569: checking whether catgets can be used" >&5
          # Check whether --with-catgets or --without-catgets was given.
 if test "${with_catgets+set}" = set; then
   withval="$with_catgets"
@@ -4576,7 +4578,7 @@ fi
 
          if test "$nls_cv_use_catgets" = "yes"; then
                    echo $ac_n "checking for main in -li""... $ac_c" 1>&6
-echo "configure:4580: checking for main in -li" >&5
+echo "configure:4582: checking for main in -li" >&5
 ac_lib_var=`echo i'_'main | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -4584,14 +4586,14 @@ else
   ac_save_LIBS="$LIBS"
 LIBS="-li  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 4588 "configure"
+#line 4590 "configure"
 #include "confdefs.h"
 
 int main() {
 main()
 ; return 0; }
 EOF
-if { (eval echo configure:4595: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:4597: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -4619,12 +4621,12 @@ else
 fi
 
            echo $ac_n "checking for catgets""... $ac_c" 1>&6
-echo "configure:4623: checking for catgets" >&5
+echo "configure:4625: checking for catgets" >&5
 if eval "test \"`echo '$''{'ac_cv_func_catgets'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 4628 "configure"
+#line 4630 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char catgets(); below.  */
@@ -4647,7 +4649,7 @@ catgets();
 
 ; return 0; }
 EOF
-if { (eval echo configure:4651: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+if { (eval echo configure:4653: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
   rm -rf conftest*
   eval "ac_cv_func_catgets=yes"
 else
@@ -4669,7 +4671,7 @@ EOF
               # Extract the first word of "gencat", so it can be a program name with args.
 set dummy gencat; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:4673: checking for $ac_word" >&5
+echo "configure:4675: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_GENCAT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -4701,7 +4703,7 @@ fi
                 # Extract the first word of "gmsgfmt", so it can be a program name with args.
 set dummy gmsgfmt; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:4705: checking for $ac_word" >&5
+echo "configure:4707: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -4734,7 +4736,7 @@ fi
                   # Extract the first word of "msgfmt", so it can be a program name with args.
 set dummy msgfmt; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:4738: checking for $ac_word" >&5
+echo "configure:4740: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -4769,7 +4771,7 @@ fi
                 # Extract the first word of "xgettext", so it can be a program name with args.
 set dummy xgettext; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:4773: checking for $ac_word" >&5
+echo "configure:4775: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -4827,7 +4829,7 @@ fi
         # Extract the first word of "msgfmt", so it can be a program name with args.
 set dummy msgfmt; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:4831: checking for $ac_word" >&5
+echo "configure:4833: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -4861,7 +4863,7 @@ fi
         # Extract the first word of "gmsgfmt", so it can be a program name with args.
 set dummy gmsgfmt; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:4865: checking for $ac_word" >&5
+echo "configure:4867: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -4893,7 +4895,7 @@ fi
         # Extract the first word of "xgettext", so it can be a program name with args.
 set dummy xgettext; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:4897: checking for $ac_word" >&5
+echo "configure:4899: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
@@ -4986,7 +4988,7 @@ fi
        LINGUAS=
      else
        echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6
-echo "configure:4990: checking for catalogs to be installed" >&5
+echo "configure:4992: checking for catalogs to be installed" >&5
        NEW_LINGUAS=
        for lang in ${LINGUAS=$ALL_LINGUAS}; do
          case "$ALL_LINGUAS" in
@@ -5014,17 +5016,17 @@ echo "configure:4990: checking for catalogs to be installed" >&5
    if test "$CATOBJEXT" = ".cat"; then
      ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'`
 echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6
-echo "configure:5018: checking for linux/version.h" >&5
+echo "configure:5020: checking for linux/version.h" >&5
 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 5023 "configure"
+#line 5025 "configure"
 #include "confdefs.h"
 #include <linux/version.h>
 EOF
 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:5028: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:5030: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
 ac_err=`grep -v '^ *+' conftest.out`
 if test -z "$ac_err"; then
   rm -rf conftest*
index 64cf91cb29810789c648a006d43b9e80b16c57fb..b0d4027b916805b276e9ec362ea88fea0617d498 100644 (file)
@@ -34,17 +34,19 @@ AC_PATH_PROG(SENDMAIL, sendmail, no, `echo $PATH | sed "s/:/ /"` /usr/sbin /usr/
 AC_DEFINE_UNQUOTED(SENDMAIL, "$ac_cv_path_SENDMAIL")
 
 OPS='$(srcdir)/OPS'
-if test -f $srcdir/pgp.c; then
-       SUBVERSION=i
+if test -f $srcdir/EXPORTABLE ; then
+       SUBVERSION="us"
+else
+       SUBVERSION="i"
        PGPPATH=no
-       
+
        AC_PATH_PROG(GPG, gpg, no)
        if test $GPG != no ; then
                AC_DEFINE_UNQUOTED(_PGPGPGPATH, "$GPG")
                PGPPATH="$GPG"
                AC_DEFINE(HAVE_GPG)
        fi
-       
+
        AC_PATH_PROG(PGPK, pgpk, no)
        if test $PGPK != no ; then
                PGPK=`echo $PGPK | sed 's,.$,,'`
index eea36712e6bbf528bb59c227eba87b671f1b972b..1983f57b5634e703b52874b0f8c1cf2a8f25b2d8 100755 (executable)
--- a/gen_defs
+++ b/gen_defs
@@ -18,7 +18,7 @@ for mode in help defs; do
                        ;;
        esac
        for i in $*; do
-               sed -e "$expr" < $i
+               sed -e '/^\/\*/d' -e "$expr" < $i
        done
        if test $mode = help; then
                echo '  NULL'
index 303ed326112b425a4920e5c49d5dbb6423d28bbc..9807496b4411bf215a530f78430766585a3bac83 100644 (file)
@@ -13,7 +13,6 @@ color.c
 commands.c
 complete.c
 compose.c
-config.h
 copy.c
 copy.h
 curs_lib.c
index b3ad41359438708e0b5ef3df9c70e1e0011be407..1f1257fe79d17c7213c6b853d5bcd58a2d557466 100644 (file)
@@ -1,4 +1,3 @@
-static char rcsid[]="$Id$";
 /* Automatically generated by po2tbl.sed from mutt.pot.  */
 
 #if HAVE_CONFIG_H
index 30c38de7c865666917240b02b73666e206cc741f..07caaac0b1c2ae451902c25a95f1d95fda01c889 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -1,9 +1,8 @@
 # $Id$
-
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 1998-10-13 08:56+0200\n"
+"POT-Creation-Date: 1998-10-13 23:47+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11,712 +10,712 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: addrbook.c:31 browser.c:53 pager.c:1358 postpone.c:32 query.c:43
-#: recvattach.c:47
+#: addrbook.c:32 browser.c:54 pager.c:1359 postpone.c:33 query.c:44
+#: recvattach.c:48
 msgid "Exit"
 msgstr "Verlassen"
 
-#: addrbook.c:32
+#: addrbook.c:33
 msgid "Select"
 msgstr "Auswählen"
 
-#: addrbook.c:33 browser.c:56 compose.c:70 curs_main.c:234 pager.c:1454
-#: pgpkey.c:180 postpone.c:35 query.c:48 recvattach.c:51
+#: addrbook.c:34 browser.c:57 compose.c:71 curs_main.c:235 pager.c:1455
+#: pgpkey.c:181 postpone.c:36 query.c:49 recvattach.c:52
 msgid "Help"
 msgstr "Hilfe"
 
-#: addrbook.c:131
+#: addrbook.c:132
 msgid "You have no aliases!"
 msgstr "Keine Einträge im Adreßbuch!"
 
-#: addrbook.c:143
+#: addrbook.c:144
 msgid "Aliases"
 msgstr "Adreßbuch"
 
 #. add a new alias
-#: alias.c:192
+#: alias.c:193
 msgid "Alias as: "
 msgstr "Kurzname: "
 
-#: alias.c:198
+#: alias.c:199
 msgid "You already have an alias defined with that name!"
 msgstr ""
 "Sie haben bereits einen Adreßbucheintrag mit diesem Kurznamen definiert."
 
-#: alias.c:212
+#: alias.c:213
 msgid "Address: "
 msgstr "Adresse: "
 
-#: alias.c:228
+#: alias.c:229
 msgid "Personal name: "
 msgstr "Name: "
 
-#: alias.c:237
+#: alias.c:238
 #, c-format
 msgid "[%s = %s] Accept?"
 msgstr "[%s = %s] Eintragen?"
 
-#: alias.c:254 recvattach.c:282 recvattach.c:337
+#: alias.c:255 recvattach.c:283 recvattach.c:338
 msgid "Save to file: "
 msgstr "Speichern in Datei: "
 
-#: alias.c:265
+#: alias.c:266
 msgid "Alias added."
 msgstr "Adresse eingetragen."
 
-#: attach.c:111 attach.c:234 attach.c:366 attach.c:807
+#: attach.c:112 attach.c:235 attach.c:367 attach.c:808
 msgid "Can't match nametemplate, continue?"
 msgstr "Namensmuster kann nicht erfüllt werden, fortfahren?"
 
 #. For now, editing requires a file, no piping
-#: attach.c:123
+#: attach.c:124
 msgid "Mailcap compose entry requires %%s"
 msgstr "\"compose\"-Eintrag in der Mailcap-Datei erfordert %%s."
 
-#: attach.c:137
+#: attach.c:138
 msgid "Failure to open file to parse headers."
 msgstr "Kann Datei nicht öffnen, um Nachrichtenkopf zu untersuchen."
 
-#: attach.c:168
+#: attach.c:169
 msgid "Failure to open file to strip headers."
 msgstr "Kann Datei nicht öffnen, um Nachrichtenkopf zu entfernen."
 
-#: attach.c:186
+#: attach.c:187
 #, c-format
 msgid "No mailcap compose entry for %s, creating empty file."
 msgstr ""
 "Kein \"compose\"-Eintrag für %s in der Mailcap-Datei, erzeuge leere Datei."
 
 #. For now, editing requires a file, no piping
-#: attach.c:246
+#: attach.c:247
 msgid "Mailcap Edit entry requires %%s"
 msgstr "\"Edit\"-Eintrag in Mailcap erfordert %%s."
 
-#: attach.c:264
+#: attach.c:265
 #, c-format
 msgid "No mailcap edit entry for %s"
 msgstr "Kein \"edit\"-Eintrag für %s in Mailcap."
 
-#: attach.c:332
+#: attach.c:333
 msgid "No matching mailcap entry found.  Viewing as text."
 msgstr "Es gibt keinen passenden Mailcap-Eintrag, Anzeige als Text."
 
-#: attach.c:345
+#: attach.c:346
 msgid "MIME type not defined.  Cannot view attachment."
 msgstr "Undefinierter MIME-Typ, kann Anhang nicht anzeigen."
 
-#: attach.c:435
+#: attach.c:436
 msgid "Cannot create filter"
 msgstr "Kann Filter nicht erzeugen."
 
-#: attach.c:636 recvattach.c:312
+#: attach.c:637 recvattach.c:313
 msgid "Attachment saved."
 msgstr "Anhang gespeichert."
 
-#: attach.c:689
+#: attach.c:690
 msgid "Write fault!"
 msgstr "Schreibfehler!"
 
-#: attach.c:891
+#: attach.c:892
 msgid "I don't know how to print that!"
 msgstr "Ich weiß nicht, wie man dies druckt."
 
-#: browser.c:54
+#: browser.c:55
 msgid "Chdir"
 msgstr "Verzeichnis"
 
-#: browser.c:55
+#: browser.c:56
 msgid "Mask"
 msgstr "Maske"
 
-#: browser.c:344 browser.c:669
+#: browser.c:345 browser.c:670
 #, c-format
 msgid "%s is not a directory."
 msgstr "%s ist kein Verzeichnis."
 
-#: browser.c:447
+#: browser.c:448
 #, c-format
 msgid "Mailboxes [%d]"
 msgstr "Mailbox-Dateien [%d]"
 
-#: browser.c:452
+#: browser.c:453
 #, c-format
 msgid "Directory [%s], File mask: %s"
 msgstr "Verzeichnis [%s], Dateimaske: %s"
 
-#: browser.c:536 browser.c:726 browser.c:825
+#: browser.c:537 browser.c:727 browser.c:826
 msgid "No files match the file mask"
 msgstr "Es gibt keine zur Maske passenden Dateien."
 
-#: browser.c:643
+#: browser.c:644
 msgid "Chdir to: "
 msgstr "Verzeichnis wechseln nach: "
 
-#: browser.c:662 browser.c:719
+#: browser.c:663 browser.c:720
 msgid "Error scanning directory."
 msgstr "Fehler beim Einlesen des Verzeichnisses."
 
-#: browser.c:680
+#: browser.c:681
 msgid "File Mask: "
 msgstr "Dateimaske: "
 
-#: browser.c:745
+#: browser.c:746
 msgid "Reverse sort by (d)ate, (a)lpha, si(z)e or do(n)'t sort? "
 msgstr ""
 "Sortiere umgekehrt nach (D)atum, (a)lphabetisch, (z) Größe, oder (n)icht? "
 
-#: browser.c:747
+#: browser.c:748
 msgid "Sort by (d)ate, (a)lpha, si(z)e or do(n)'t sort? "
 msgstr "Sortiere nach (D)atum, (a)lphabetisch, (z) Größe oder (n)icht?"
 
-#: browser.c:812
+#: browser.c:813
 msgid "New file name: "
 msgstr "Neuer Dateiname: "
 
-#: browser.c:833
+#: browser.c:834
 msgid "Can't view a directory"
 msgstr "Verzeichnisse können nicht angezeigt werden."
 
-#: browser.c:851
+#: browser.c:852
 msgid "Error trying to view file"
 msgstr "Fehler."
 
-#: buffy.c:357
+#: buffy.c:358
 #, c-format
 msgid "New mail in %s."
 msgstr "Neue Nachrichten in %s."
 
-#: color.c:306
+#: color.c:307
 #, c-format
 msgid "%s: color not supported by term"
 msgstr "%s: color wird nicht vom Terminal unterstützt."
 
-#: color.c:312
+#: color.c:313
 #, c-format
 msgid "%s: no such color"
 msgstr "%s: Farbe unbekannt."
 
-#: color.c:358 color.c:541 color.c:552
+#: color.c:359 color.c:542 color.c:553
 #, c-format
 msgid "%s: no such object"
 msgstr "%s: Objekt unbekannt."
 
-#: color.c:365
+#: color.c:366
 #, c-format
 msgid "%s: command valid only for index object"
 msgstr "%s: Kommando ist nur für Index-Objekt gültig."
 
-#: color.c:373
+#: color.c:374
 #, c-format
 msgid "%s: too few arguments"
 msgstr "%s: Zu wenige Parameter."
 
-#: color.c:529
+#: color.c:530
 msgid "Missing arguments."
 msgstr "Fehlende Parameter."
 
-#: color.c:568 color.c:579
+#: color.c:569 color.c:580
 msgid "color: too few arguments"
 msgstr "color: Zu wenige Parameter."
 
-#: color.c:602
+#: color.c:603
 msgid "mono: too few arguments"
 msgstr "mono: Zu wenige Parameter."
 
-#: color.c:622
+#: color.c:623
 #, c-format
 msgid "%s: no such attribute"
 msgstr "%s: Attribut unbekannt."
 
-#: color.c:662 hook.c:61 hook.c:69 keymap.c:649
+#: color.c:663 hook.c:62 hook.c:70 keymap.c:650
 msgid "too few arguments"
 msgstr "Zu wenige Parameter."
 
-#: color.c:671 hook.c:75
+#: color.c:672 hook.c:76
 msgid "too many arguments"
 msgstr "Zu viele Parameter."
 
-#: color.c:685
+#: color.c:686
 msgid "default colors not supported"
 msgstr "Standard-Farben werden nicht unterstützt."
 
-#: commands.c:122
+#: commands.c:123
 msgid "Display message using mailcap?"
 msgstr "Nachricht mittels Mailcap anzeigen?"
 
-#: commands.c:153 commands.c:161 pgpkey.c:220
+#: commands.c:154 commands.c:162 pgpkey.c:221
 msgid "Invoking PGP..."
 msgstr "Rufe PGP auf..."
 
 #. find out whether or not the verify signature
-#: commands.c:158
+#: commands.c:159
 msgid "Verify PGP signature?"
 msgstr "PGP-Signatur überprüfen?"
 
-#: commands.c:176 mbox.c:695
+#: commands.c:177 mbox.c:696
 msgid "Could not create temporary file!"
 msgstr "Konnte Temporärdatei nicht anzeigen!"
 
-#: commands.c:224
+#: commands.c:225
 msgid "Command: "
 msgstr "Kommando: "
 
-#: commands.c:257
+#: commands.c:258
 msgid "Error parsing address!"
 msgstr "Unverständliche Adresse!"
 
-#: commands.c:267
+#: commands.c:268
 #, c-format
 msgid "Bounce message to %s"
 msgstr "Nachricht an %s weiterleiten"
 
-#: commands.c:267
+#: commands.c:268
 #, c-format
 msgid "Bounce messages to %s"
 msgstr "Nachrichten an %s weiterleiten"
 
-#: commands.c:278
+#: commands.c:279
 msgid "Message bounced."
 msgstr "Nachricht weitergeleitet."
 
-#: commands.c:278
+#: commands.c:279
 msgid "Messages bounced."
 msgstr "Nachrichten weitergeleitet."
 
-#: commands.c:298
+#: commands.c:299
 msgid "Pipe to command: "
 msgstr "In Kommando einspeisen: "
 
-#: commands.c:403
+#: commands.c:404
 msgid ""
 "Rev-Sort (d)ate/(f)rm/(r)ecv/(s)ubj/t(o)/(t)hread/(u)nsort/si(z)e/s(c)ore?: "
 msgstr ""
 
-#: commands.c:404
+#: commands.c:405
 msgid ""
 "Sort (d)ate/(f)rm/(r)ecv/(s)ubj/t(o)/(t)hread/(u)nsort/si(z)e/s(c)ore?: "
 msgstr ""
 
-#: commands.c:459
+#: commands.c:460
 msgid "Shell command: "
 msgstr "Shell-Kommando: "
 
-#: commands.c:575
+#: commands.c:576
 #, c-format
 msgid "%s%s to mailbox"
 msgstr "%s%s in Mailbox"
 
-#: commands.c:576
+#: commands.c:577
 msgid "Decode-save"
 msgstr "Decodiert speichern"
 
-#: commands.c:576
+#: commands.c:577
 msgid "Decode-copy"
 msgstr "Decodiert kopieren"
 
-#: commands.c:577
+#: commands.c:578
 msgid "Decrypt-save"
 msgstr "Entschlüsselt speichern"
 
-#: commands.c:577
+#: commands.c:578
 msgid "Decrypt-copy"
 msgstr "Entschlüsselt kopieren"
 
-#: commands.c:578 curs_main.c:230 recvattach.c:48
+#: commands.c:579 curs_main.c:231 recvattach.c:49
 msgid "Save"
 msgstr "Speichern"
 
-#: commands.c:578
+#: commands.c:579
 msgid "Copy"
 msgstr "Kopieren"
 
-#: commands.c:578
+#: commands.c:579
 msgid " tagged"
 msgstr " ausgewählt"
 
-#: commands.c:647
+#: commands.c:648
 #, c-format
 msgid "Copying to %s..."
 msgstr "Kopiere nach %s..."
 
-#: commands.c:719
+#: commands.c:720
 msgid "Print message?"
 msgstr "Nachricht drucken?"
 
-#: commands.c:719
+#: commands.c:720
 msgid "Print tagged messages?"
 msgstr "Ausgewählte Nachrichten drucken?"
 
-#: commands.c:746
+#: commands.c:747
 msgid "Message printed"
 msgstr "Nachricht gedruckt"
 
-#: commands.c:746
+#: commands.c:747
 msgid "Messages printed"
 msgstr "Nachrichten gedruckt"
 
-#: compose.c:63
+#: compose.c:64
 msgid "Send"
 msgstr "Verschicken"
 
-#: compose.c:64
+#: compose.c:65
 msgid "Abort"
 msgstr "Verwerfen"
 
-#: compose.c:68 compose.c:606
+#: compose.c:69 compose.c:607
 msgid "Attach file"
 msgstr "Datei anhängen"
 
-#: compose.c:69
+#: compose.c:70
 msgid "Descrip"
 msgstr "Beschr."
 
-#: compose.c:97
+#: compose.c:98
 msgid ""
 "(e)ncrypt, (s)ign, sign (a)s, (b)oth, select (m)ic algorithm, or (f)orget "
 "it? "
 msgstr ""
 
-#: compose.c:115
+#: compose.c:116
 msgid "Can't open your secret key ring!"
 msgstr "Kann geheimen Schlüsselbund nicht öffnen!"
 
-#: compose.c:120
+#: compose.c:121
 msgid "Sign as: "
 msgstr "Signiere als: "
 
-#: compose.c:139
+#: compose.c:140
 msgid "An unkown PGP version was defined for signing."
 msgstr "Eine unbekannte PGP-Version wurde zum Signieren eingetragen."
 
-#: compose.c:145
+#: compose.c:146
 msgid "This doesn't make sense if you don't want to sign the message."
 msgstr "Dies macht keinen Sinn, wenn Sie die Nachricht nicht signieren wollen."
 
-#: compose.c:151 compose.c:287
+#: compose.c:152 compose.c:288
 msgid "MIC algorithm: "
 msgstr "MIC-Algorithmus: "
 
-#: compose.c:156
+#: compose.c:157
 msgid "Unknown MIC algorithm, valid ones are: pgp-md5, pgp-sha1, pgp-rmd160"
 msgstr ""
 "Unbekannter MIC-Algorithmus.  Gültig sind: pgp-md5, pgp-sha1, pgp-rmd160"
 
-#: compose.c:200
+#: compose.c:201
 #, c-format
 msgid "%s [#%d] no longer exists!"
 msgstr "%s [#%d] existiert nicht mehr!"
 
-#: compose.c:208
+#: compose.c:209
 #, c-format
 msgid "%s [#%d] modified. Update encoding?"
 msgstr "%s [#%d] wurde modifiziert.  Codierung neu bestimmen?"
 
-#: compose.c:270
+#: compose.c:271
 msgid "Sign, Encrypt"
 msgstr "Signieren, Verschlüsseln"
 
-#: compose.c:272
+#: compose.c:273
 msgid "Encrypt"
 msgstr "Verschlüsseln"
 
-#: compose.c:274
+#: compose.c:275
 msgid "Sign"
 msgstr "Signieren"
 
-#: compose.c:276
+#: compose.c:277
 msgid "Clear"
 msgstr "Klartext"
 
-#: compose.c:281
+#: compose.c:282
 msgid " sign as: "
 msgstr " signiere als: "
 
-#: compose.c:285
+#: compose.c:286
 msgid "<default>"
 msgstr "<Voreinstellung>"
 
-#: compose.c:376
+#: compose.c:377
 msgid "You may not delete the only attachment."
 msgstr "Der einzige Nachrichtenteil kann nicht gelöscht werden."
 
-#: compose.c:450
+#: compose.c:451
 msgid "Compose"
 msgstr "Nachricht erstellen"
 
-#: compose.c:611
+#: compose.c:612
 msgid "Open mailbox to attach message from"
 msgstr "Öffne Quell-Mailbox für Nachrichtenanhang."
 
-#: compose.c:650
+#: compose.c:651
 msgid "No messages in that folder."
 msgstr "Keine Nachrichten in diesem Ordner"
 
-#: compose.c:657
+#: compose.c:658
 msgid "Tag the messages you want to attach!"
 msgstr "Bitte markieren Sie die Nachrichten, die Sie anhängen wollen!"
 
-#: compose.c:692 compose.c:712
+#: compose.c:693 compose.c:713
 msgid "Unable to attach!"
 msgstr "Kann nicht anhängen!"
 
-#: compose.c:820
+#: compose.c:821
 msgid "Invalid encoding."
 msgstr "Ungültige Codierung."
 
-#: compose.c:835
+#: compose.c:836
 msgid "Save a copy of this message?"
 msgstr "Soll eine Kopie dieser Nachricht gespeichert werden?"
 
-#: compose.c:880
+#: compose.c:881
 msgid "Rename to: "
 msgstr "Umbenennen in: "
 
-#: compose.c:885
+#: compose.c:886
 #, c-format
 msgid "Can't stat: %s"
 msgstr "Kann Datei nicht prüfen: %s"
 
-#: compose.c:912
+#: compose.c:913
 msgid "New file: "
 msgstr "Neue Datei: "
 
-#: compose.c:925
+#: compose.c:926
 msgid "Content-Type is of the form base/sub"
 msgstr "Content-Type ist von der Form Basis/Untertyp"
 
-#: compose.c:931
+#: compose.c:932
 #, c-format
 msgid "Unknown Content-Type %s"
 msgstr "Unbekannter Content-Type %s"
 
-#: compose.c:944
+#: compose.c:945
 #, c-format
 msgid "Can't create file %s"
 msgstr "Kann Datei %s nicht anlegen"
 
-#: compose.c:952
+#: compose.c:953
 msgid "What we have here is a failure to make an attachment"
 msgstr "Anhang kann nicht erzeugt werden"
 
-#: compose.c:1024
+#: compose.c:1025
 msgid "Postpone this message?"
 msgstr "Nachricht zurückstellen?"
 
-#: compose.c:1071
+#: compose.c:1072
 msgid "Write message to mailbox"
 msgstr "Schreibe Nachricht in Mailbox"
 
-#: compose.c:1075
+#: compose.c:1076
 #, c-format
 msgid "Writing message to %s ..."
 msgstr "Schreibe Nachricht nach %s ..."
 
-#: compose.c:1086
+#: compose.c:1087
 msgid "Message written."
 msgstr "Nachricht geschrieben."
 
-#: copy.c:569
+#: copy.c:570
 msgid "Confused when attempting to delete attachment, h & m can't be NULL"
 msgstr "Interner Fehler."
 
-#: copy.c:584
+#: copy.c:585
 msgid "Deleting non-multipart messages not yet supported"
 msgstr "Nur Teile von multipart-Nachrichten können gelöscht werden."
 
-#: curs_lib.c:134
+#: curs_lib.c:135
 msgid "yes"
 msgstr "ja"
 
-#: curs_lib.c:135
+#: curs_lib.c:136
 msgid "no"
 msgstr "nein"
 
 #. restore blocking operation
-#: curs_lib.c:174
+#: curs_lib.c:175
 msgid "Exit Mutt?"
 msgstr "Mutt verlassen?"
 
-#: curs_lib.c:249
+#: curs_lib.c:250
 msgid "unknown error"
 msgstr "unbekannter Fehler"
 
-#: curs_lib.c:269
+#: curs_lib.c:270
 msgid "Press any key to continue..."
 msgstr "Bitte drücken Sie eine Taste."
 
-#: curs_lib.c:307
+#: curs_lib.c:308
 msgid " ('?' for list): "
 msgstr " (für eine Liste '?' eingeben): "
 
-#: curs_main.c:208
+#: curs_main.c:209
 msgid "Cannot toggle write on a readonly mailbox!"
 msgstr "Kann Schreib-Modus für eine nur-Lesen-Mailbox nicht ändern!"
 
-#: curs_main.c:215
+#: curs_main.c:216
 msgid "Changes to folder will be written on folder exit."
 msgstr "Änderungen an dieser Mailbox werden beim Verlassen geschrieben."
 
-#: curs_main.c:220
+#: curs_main.c:221
 msgid "Changes to folder will not be written."
 msgstr "Änderungen an dieser Mailbox werden nicht geschrieben."
 
-#: curs_main.c:227
+#: curs_main.c:228
 msgid "Quit"
 msgstr "Verlassen"
 
-#: curs_main.c:228 pager.c:1365 postpone.c:33
+#: curs_main.c:229 pager.c:1366 postpone.c:34
 msgid "Del"
 msgstr "Löschen"
 
-#: curs_main.c:229 postpone.c:34
+#: curs_main.c:230 postpone.c:35
 msgid "Undel"
 msgstr "nicht lösch."
 
-#: curs_main.c:231 query.c:44
+#: curs_main.c:232 query.c:45
 msgid "Mail"
 msgstr "Neue Nachricht"
 
-#: curs_main.c:232 pager.c:1366
+#: curs_main.c:233 pager.c:1367
 msgid "Reply"
 msgstr "Antwort"
 
-#: curs_main.c:233
+#: curs_main.c:234
 msgid "Group"
 msgstr "Antwort alle"
 
-#: curs_main.c:399
+#: curs_main.c:400
 msgid "Mailbox was externally modified.  Flags may be wrong."
 msgstr "Mailbox wurde modifiziert."
 
-#: curs_main.c:402
+#: curs_main.c:403
 msgid "New mail in this mailbox."
 msgstr "Neue Nachrichten in dieser Mailbox."
 
-#: curs_main.c:519
+#: curs_main.c:520
 msgid "No mailbox is open."
 msgstr "Keine Mailbox offen."
 
-#: curs_main.c:525
+#: curs_main.c:526
 msgid "No tagged messages."
 msgstr "Keine markierten Nachrichten"
 
-#: curs_main.c:605
+#: curs_main.c:606
 msgid "Jump to message: "
 msgstr "Springe zu Nachricht: "
 
-#: curs_main.c:611
+#: curs_main.c:612
 msgid "Argument must be a message number."
 msgstr "Argument muß eine Nachrichtennummer sein."
 
-#: curs_main.c:644
+#: curs_main.c:645
 msgid "That message is not visible."
 msgstr "Diese Nachricht ist nicht sichtbar."
 
-#: curs_main.c:647
+#: curs_main.c:648
 msgid "Invalid message number."
 msgstr "Ungültige Nachrichtennummer."
 
-#: curs_main.c:660
+#: curs_main.c:661
 msgid "Delete messages matching: "
 msgstr "Lösche Nachrichten nach Muster: "
 
-#: curs_main.c:682
+#: curs_main.c:683
 msgid "No limit pattern is in effect."
 msgstr "Zur Zeit ist kein Muster aktiv."
 
 #. i18n: ask for a limit to apply
-#: curs_main.c:687
+#: curs_main.c:688
 #, c-format
 msgid "Limit: %s"
 msgstr "Begrenze: %s"
 
-#: curs_main.c:696
+#: curs_main.c:697
 msgid "Limit to messages matching: "
 msgstr "Begrenze auf Nachrichten nach Muster: "
 
-#: curs_main.c:726
+#: curs_main.c:727
 msgid "Quit Mutt?"
 msgstr "Mutt verlassen?"
 
-#: curs_main.c:837
+#: curs_main.c:838
 msgid "Tag messages matching: "
 msgstr "Markiere Nachrichten nach Muster: "
 
-#: curs_main.c:845
+#: curs_main.c:846
 msgid "Undelete messages matching: "
 msgstr "Entferne Löschmarkierung nach Muster: "
 
-#: curs_main.c:852
+#: curs_main.c:853
 msgid "Untag messages matching: "
 msgstr "Entferne Markierung nach Muster: "
 
-#: curs_main.c:870
+#: curs_main.c:871
 msgid "Open mailbox"
 msgstr "Öffne Mailbox"
 
-#: curs_main.c:872
+#: curs_main.c:873
 msgid "Open mailbox in read-only mode"
 msgstr "Öffne Mailbox im nur-Lesen-Modus"
 
-#: curs_main.c:888 mx.c:420 mx.c:561
+#: curs_main.c:889 mx.c:421 mx.c:562
 #, c-format
 msgid "%s is not a mailbox."
 msgstr "%s ist keine Mailbox."
 
-#: curs_main.c:984
+#: curs_main.c:985
 msgid "Exit Mutt without saving?"
 msgstr "Mutt verlassen, ohne Änderungen zu speichern?"
 
-#: curs_main.c:994 curs_main.c:1018
+#: curs_main.c:995 curs_main.c:1019
 msgid "You are on the last message."
 msgstr "Sie sind bereits auf der letzten Nachricht."
 
-#: curs_main.c:1001 curs_main.c:1043
+#: curs_main.c:1002 curs_main.c:1044
 msgid "No undeleted messages."
 msgstr "Alle Nachrichten gelöscht."
 
-#: curs_main.c:1036 curs_main.c:1059
+#: curs_main.c:1037 curs_main.c:1060
 msgid "You are on the first message."
 msgstr "Sie sind bereits auf der ersten Nachricht."
 
-#: curs_main.c:1132 pattern.c:1074
+#: curs_main.c:1133 pattern.c:1075
 msgid "Search wrapped to top."
 msgstr "Suche von vorne begonnen."
 
-#: curs_main.c:1141 pattern.c:1085
+#: curs_main.c:1142 pattern.c:1086
 msgid "Search wrapped to bottom."
 msgstr "Suche von hinten begonnen."
 
-#: curs_main.c:1167
+#: curs_main.c:1168
 msgid "No new messages"
 msgstr "Keine neuen Nachrichten"
 
-#: curs_main.c:1167
+#: curs_main.c:1168
 msgid "No unread messages"
 msgstr "Keine ungelesenen Nachrichten"
 
-#: curs_main.c:1168
+#: curs_main.c:1169
 msgid " in this limited view"
 msgstr " in dieser begrenzeten Ansicht"
 
-#: curs_main.c:1278
+#: curs_main.c:1279
 msgid "No more threads."
 msgstr "Keine weiteren Diskussionsfäden."
 
-#: curs_main.c:1280
+#: curs_main.c:1281
 msgid "You are on the first thread."
 msgstr "Sie haben bereits den ersten Diskussionsfaden ausgewählt."
 
-#: curs_main.c:1333
+#: curs_main.c:1334
 msgid "Thread contains unread messages."
 msgstr "Diskussionsfaden enthält ungelesene Nachrichten."
 
-#: curs_main.c:1346 flags.c:217 thread.c:628
+#: curs_main.c:1347 flags.c:218 thread.c:629
 msgid "Threading is not enabled."
 msgstr "Darstellung von Diskussionsfäden ist nicht eingeschaltet."
 
-#: date.c:48
+#: date.c:49
 msgid "Please report this program error in the function mutt_mktime."
 msgstr ""
 
@@ -724,7 +723,7 @@ msgstr ""
 #. * SLcurses_waddnstr() can't take a "const char *", so this is only
 #. * declared "static" (sigh)
 #.
-#: edit.c:36
+#: edit.c:37
 msgid ""
 "~~\t\tinsert a line begining with a single ~\n"
 "~b users\tadd users to the Bcc: field\n"
@@ -764,124 +763,124 @@ msgstr ""
 "~?\t\tDiese Nachricht.\n"
 ".\t\tin einer Zeile alleine beendet die Eingabe.\n"
 
-#: edit.c:178
+#: edit.c:179
 #, c-format
 msgid "%d: invalid message number.\n"
 msgstr "%d: Ungültige Nachrichtennummer.\n"
 
-#: edit.c:312
+#: edit.c:313
 msgid "(End message with a . on a line by itself)\n"
 msgstr ""
 "(Nach Eingabe der Nachricht bitte einen einzelnen Punkt ('.') eingeben.)\n"
 
-#: edit.c:370
+#: edit.c:371
 msgid "No mailbox.\n"
 msgstr "Keine Mailbox.\n"
 
-#: edit.c:374
+#: edit.c:375
 msgid "Message contains:\n"
 msgstr "Nachricht enthält:\n"
 
-#: edit.c:378 edit.c:430
+#: edit.c:379 edit.c:431
 msgid "(continue)\n"
 msgstr "(weiter)\n"
 
-#: edit.c:391
+#: edit.c:392
 msgid "missing filename.\n"
 msgstr "Dateiname fehlt.\n"
 
-#: edit.c:412
+#: edit.c:413
 msgid "No lines in message.\n"
 msgstr "Keine Zeilen in der Nachricht.\n"
 
-#: edit.c:441
+#: edit.c:442
 #, c-format
 msgid "%s: unknown editor command (~? for help)\n"
 msgstr "%s: Unbekanntes Editor-Kommando (~? für Hilfestellung)\n"
 
-#: flags.c:255
+#: flags.c:256
 msgid "Set flag"
 msgstr "Setze Indikator"
 
-#: flags.c:255
+#: flags.c:256
 msgid "Clear flag"
 msgstr "Entferne Indikator"
 
-#: handler.c:127
+#: handler.c:128
 msgid "[-- Error: unexpected end of file! --]\n"
 msgstr "[-- Fehler: Unerwartetes Dateiende! --]\n"
 
 #. didn't find anything that we could display!
-#: handler.c:882
+#: handler.c:883
 msgid "[-- Error:  Could not display any parts of Multipart/Alternative! --]\n"
 msgstr ""
 "[-- Fehler: Konnte keinen der multipart/alternative-Teile anzeigen! --]\n"
 
-#: handler.c:997
+#: handler.c:998
 #, c-format
 msgid "[-- Attachment #%d"
 msgstr "[-- Anhang #%d"
 
-#: handler.c:1010
+#: handler.c:1011
 #, c-format
 msgid "[-- Type: %s/%s, Encoding: %s, Size: %s --]\n"
 msgstr "[-- Typ: %s/%s, Codierung: %s, Größe: %s --]\n"
 
-#: handler.c:1076
+#: handler.c:1077
 #, c-format
 msgid "[-- Autoview using %s --]\n"
 msgstr "[-- Automatische Anzeige mittels %s --]\n"
 
-#: handler.c:1078
+#: handler.c:1079
 #, c-format
 msgid "Invoking autoview command: %s"
 msgstr "Rufe Kommando auf: %s"
 
-#: handler.c:1118 handler.c:1141
+#: handler.c:1119 handler.c:1142
 #, c-format
 msgid "[-- Autoview stderr of %s --]\n"
 msgstr "[-- Fehlerausgabe von %s --]\n"
 
-#: handler.c:1246
+#: handler.c:1247
 msgid "Error: multipart/signed has no protocol."
 msgstr "Fehler: multipart/signed ohne protocol-Parameter."
 
-#: handler.c:1258
+#: handler.c:1259
 msgid "Error: multipart/encrypted has no protocol parameter!"
 msgstr "Fehler: multiparT/encrypted ohne 'protocol'-Parameter!"
 
-#: handler.c:1300
+#: handler.c:1301
 msgid "Unable to open temporary file!"
 msgstr "Konnte Temporärdatei nicht öffnen!"
 
-#: handler.c:1359
+#: handler.c:1360
 #, c-format
 msgid "[-- %s/%s is unsupported "
 msgstr "[-- %s/%s wird nicht unterstützt "
 
-#: handler.c:1364
+#: handler.c:1365
 #, c-format
 msgid "(use '%s' to view this part)"
 msgstr "(benutzen Sie '%s', um diesen Teil anzuzeigen)"
 
-#: handler.c:1366
+#: handler.c:1367
 msgid "(need 'view-attachments' bound to key!)"
 msgstr "(benötige Tastaturbindung für 'view-attachments'!)"
 
-#: headers.c:201
+#: headers.c:202
 #, c-format
 msgid "%s: unable to attach file"
 msgstr "%s: Kann Datei nicht anhängen."
 
-#: help.c:185
+#: help.c:186
 msgid "ERROR: please report this bug"
 msgstr ""
 
-#: help.c:232
+#: help.c:233
 msgid "<UNKNOWN>"
 msgstr "<unbekannt>"
 
-#: help.c:237
+#: help.c:238
 msgid ""
 "\n"
 "Generic bindings:\n"
@@ -891,7 +890,7 @@ msgstr ""
 "Generische Bindungen:\n"
 "\n"
 
-#: help.c:241
+#: help.c:242
 msgid ""
 "\n"
 "Unbound functions:\n"
@@ -901,12 +900,12 @@ msgstr ""
 "Ungebundene Funktionen:\n"
 "\n"
 
-#: help.c:249
+#: help.c:250
 #, c-format
 msgid "Help for %s"
 msgstr "Hilfe für %s"
 
-#: imap.c:102
+#: imap.c:103
 #, c-format
 msgid "imap_error(): unexpected response in %s: %s\n"
 msgstr ""
@@ -914,229 +913,229 @@ msgstr ""
 #. something is wrong because the server reported fewer messages
 #. * than we previously saw
 #.
-#: imap.c:354
+#: imap.c:355
 msgid "Fatal error.  Message count is out of sync!"
 msgstr ""
 
-#: imap.c:424
+#: imap.c:425
 #, c-format
 msgid "Fetching message headers... [%d/%d]"
 msgstr ""
 
-#: imap.c:622 mbox.c:925
+#: imap.c:623 mbox.c:926
 msgid "Reopening mailbox..."
 msgstr "Öffne Mailbox erneut..."
 
-#: imap.c:857
+#: imap.c:858
 #, c-format
 msgid "Connecting to %s..."
 msgstr ""
 
-#: imap.c:876
+#: imap.c:877
 msgid "IMAP Username: "
 msgstr ""
 
-#: imap.c:889
+#: imap.c:890
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: imap.c:902
+#: imap.c:903
 msgid "Logging in..."
 msgstr ""
 
-#: imap.c:957
+#: imap.c:958
 #, c-format
 msgid "Selecting %s..."
 msgstr ""
 
-#: imap.c:1053 lib.c:1164
+#: imap.c:1054 lib.c:1165
 #, c-format
 msgid "Create %s?"
 msgstr ""
 
-#: imap.c:1097
+#: imap.c:1098
 msgid "Fetching message..."
 msgstr ""
 
-#: imap.c:1205
+#: imap.c:1206
 msgid "Sending APPEND command ..."
 msgstr ""
 
-#: imap.c:1244
+#: imap.c:1245
 msgid "Uploading message ..."
 msgstr ""
 
-#: imap.c:1299
+#: imap.c:1300
 msgid "Closing connection to IMAP server..."
 msgstr ""
 
-#: imap.c:1329
+#: imap.c:1330
 #, c-format
 msgid "Saving message status flags... [%d/%d]"
 msgstr ""
 
-#: imap.c:1355
+#: imap.c:1356
 msgid "Expunging messages from server..."
 msgstr ""
 
 #. tell the server to commit changes
-#: imap.c:1406
+#: imap.c:1407
 msgid "Closing mailbox..."
 msgstr ""
 
-#: init.c:432
+#: init.c:433
 msgid "alias: no address"
 msgstr "alias: Keine Adresse"
 
-#: init.c:526
+#: init.c:527
 msgid "invalid header field"
 msgstr "Ungültiges Header-Feld"
 
-#: init.c:534
+#: init.c:535
 #, c-format
 msgid "ignoring empty header field: %s"
 msgstr "Ignoriere leeres Header-Feld: %s"
 
-#: init.c:586
+#: init.c:587
 #, c-format
 msgid "%s: unknown sorting method"
 msgstr "%s: Unbekannte Sortiermethode"
 
-#: init.c:659
+#: init.c:660
 #, c-format
 msgid "mutt_restore_default: error in regexp: %s\n"
 msgstr "mutt_restore_default: Fehler in regulärem Ausdruck: %s\n"
 
-#: init.c:719
+#: init.c:720
 #, c-format
 msgid "%s: unknown variable"
 msgstr "%s: Unbekannte Variable."
 
-#: init.c:728
+#: init.c:729
 msgid "prefix is illegal with reset"
 msgstr "reset erlaubt kein Präfix"
 
-#: init.c:734
+#: init.c:735
 msgid "value is illegal with reset"
 msgstr "reset erlaubt diesen Wert nicht"
 
-#: init.c:751
+#: init.c:752
 #, c-format
 msgid "%s is a boolean var!"
 msgstr "%s ist eine Boolsche Variable!"
 
-#: init.c:758
+#: init.c:759
 #, c-format
 msgid "%s is set"
 msgstr "%s ist gesetzt"
 
-#: init.c:758
+#: init.c:759
 #, c-format
 msgid "%s is unset"
 msgstr "%s ist nicht gesetzt"
 
-#: init.c:929
+#: init.c:930
 #, c-format
 msgid "%s: invalid mailbox type"
 msgstr "%s: Ungültiger Mailbox-Typ"
 
-#: init.c:988
+#: init.c:989
 #, c-format
 msgid "%s: invalid value"
 msgstr "%s: Ungültiger Wert"
 
-#: init.c:1038
+#: init.c:1039
 #, c-format
 msgid "%s: unknown type"
 msgstr "%s: Unbekannter Typ"
 
-#: init.c:1087
+#: init.c:1088
 #, c-format
 msgid "Error in %s, line %d: %s"
 msgstr "Fehler in %s, Zeile %d: %s"
 
 #. the muttrc source keyword
-#: init.c:1098
+#: init.c:1099
 #, c-format
 msgid "source: errors in %s"
 msgstr "source: Fehler in %s"
 
-#: init.c:1108
+#: init.c:1109
 #, c-format
 msgid "source: error at %s"
 msgstr "Source: Fehler bei %s"
 
-#: init.c:1113
+#: init.c:1114
 msgid "source: too many arguments"
 msgstr "source: Zu viele Argumente"
 
-#: init.c:1164
+#: init.c:1165
 #, c-format
 msgid "%s: unknown command"
 msgstr "%s: Unbekanntes Kommando"
 
-#: init.c:1469
+#: init.c:1470
 #, c-format
 msgid "Error in command line: %s\n"
 msgstr "Fehler in Kommandozeile: %s\n"
 
-#: init.c:1512
+#: init.c:1513
 msgid "unable to determine home directory"
 msgstr "Kann Home-Verzeichnis nicht bestimmen"
 
-#: init.c:1520
+#: init.c:1521
 msgid "unable to determine username"
 msgstr "Kann Nutzernamen nicht bestimmen"
 
-#: keymap.c:413
+#: keymap.c:414
 msgid "Macro loop detected."
 msgstr "Makro-Schleife!"
 
-#: keymap.c:599
+#: keymap.c:600
 #, c-format
 msgid "Key is not bound.  Press '%s' for help."
 msgstr "Taste ist nicht gebunden.  Drücken Sie '%s' für Hilfe."
 
-#: keymap.c:601
+#: keymap.c:602
 msgid "Key is not bound.  See the manual."
 msgstr "Taste ist nicht gebunden.  Konsultieren Sie das Handbuch."
 
-#: keymap.c:611
+#: keymap.c:612
 msgid "push: too many arguments"
 msgstr "push: Zu viele Argumente"
 
-#: keymap.c:632
+#: keymap.c:633
 #, c-format
 msgid "%s: no such menu"
 msgstr "%s: Menü unbekannt."
 
-#: keymap.c:641
+#: keymap.c:642
 msgid "null key sequence"
 msgstr "Leere Tastenfolge"
 
-#: keymap.c:719
+#: keymap.c:720
 msgid "bind: too many arguments"
 msgstr "bind: Zu viele Argumente"
 
-#: keymap.c:734
+#: keymap.c:735
 #, c-format
 msgid "%s: no such function in map"
 msgstr "%s: Funktion unbekannt"
 
-#: keymap.c:757
+#: keymap.c:758
 msgid "macro: empty key sequence"
 msgstr "macro: Leere Tastenfolge"
 
-#: keymap.c:768
+#: keymap.c:769
 msgid "macro: too many arguments"
 msgstr "macro: Zu viele Paramter"
 
-#: keymap.c:798
+#: keymap.c:799
 msgid "exec: too few arguments"
 msgstr "%s: Zu wenige Parameter."
 
-#: keymap.c:818
+#: keymap.c:819
 #, c-format
 msgid "%s: no such command"
 msgstr "%s: Menü unbekannt."
@@ -1745,75 +1744,39 @@ msgstr "Kollabiere/expandiere aktuellen Diskussionsfaden"
 msgid "collapse/uncollapse all threads"
 msgstr "Kollabiere/expandiere alle Diskussionsfäden"
 
-#: keymap_defs.h:157
-msgid "attach a PGP public key"
-msgstr "Hänge öffentlichen PGP-Schlüssel an"
-
-#: keymap_defs.h:158
-msgid "show PGP options"
-msgstr "Zeige PGP-Optionen"
-
-#: keymap_defs.h:159
-msgid "extract PGP public keys"
-msgstr "Extrahiere öffentliche PGP-Schlüssel"
-
-#: keymap_defs.h:160
-msgid "wipe PGP passphrase from memory"
-msgstr "Entferne PGP-Mantra aus Speicher"
-
-#: keymap_defs.h:161
-msgid "mail a PGP public key"
-msgstr "Verschicke öffentlichen PGP-Schlüssel"
-
-#: keymap_defs.h:162
-msgid "verify a PGP public key"
-msgstr "Verifiziere öffentlichen PGP-Schlüssel"
-
-#: keymap_defs.h:163
-msgid "view the key's user id"
-msgstr "Zeige Nutzer-ID zu Schlüssel an"
-
-#: keymap_defs.h:164
-msgid "make decrypted copy and delete"
-msgstr "Erzeuge dechiffrierte Kopie und lösche"
-
-#: keymap_defs.h:165
-msgid "make decrypted copy"
-msgstr "Erzeuge dechiffrierte Kopie"
-
-#: lib.c:275 lib.c:290 lib.c:321
+#: lib.c:276 lib.c:291 lib.c:322
 msgid "Out of memory!"
 msgstr "Kein Speicher!"
 
-#: lib.c:753
+#: lib.c:754
 msgid "File is a directory, save under it?"
 msgstr "Datei ist Verzeichnis, darunter abspeichern?"
 
-#: lib.c:758
+#: lib.c:759
 msgid "File under directory: "
 msgstr "Datei unter Verzeichnis: "
 
-#: lib.c:769
+#: lib.c:770
 msgid "File exists, overwrite?"
 msgstr "Datei existiert, überschreiben?"
 
-#: lib.c:1142
+#: lib.c:1143
 #, c-format
 msgid "%s is not a mailbox!"
 msgstr "%s ist keine Mailbox"
 
-#: lib.c:1148
+#: lib.c:1149
 #, c-format
 msgid "Append messages to %s?"
 msgstr "Nachricht an %s anhängen?"
 
-#: main.c:35
+#: main.c:36
 msgid "To contact the developers, please mail to <mutt-dev@mutt.org>.\n"
 msgstr ""
 "Um die Entwickler zu Kontaktieren, schicken Sie bitte\n"
 "eine Nachricht an <mutt-dev@mutt.org>.\n"
 
-#: main.c:38
+#: main.c:39
 msgid ""
 "Copyright (C) 1996-8 Michael R. Elkins and others.\n"
 "Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.\n"
@@ -1821,7 +1784,7 @@ msgid ""
 "under certain conditions; type `mutt -vv' for details.\n"
 msgstr ""
 
-#: main.c:44
+#: main.c:45
 msgid ""
 "Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>\n"
 "Copyright (C) 1997-8 Thomas Roessler <roessler@guug.de>\n"
@@ -1843,7 +1806,7 @@ msgid ""
 "    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n"
 msgstr ""
 
-#: main.c:66
+#: main.c:67
 msgid ""
 "\n"
 "SHA1 implementation Copyright (C) 1995-7 Eric A. Young <eay@cryptsoft.com>\n"
@@ -1859,7 +1822,7 @@ msgid ""
 "    along with this program; if not, write to the program's developers.\n"
 msgstr ""
 
-#: main.c:92
+#: main.c:93
 msgid ""
 "usage: mutt [ -nRzZ ] [ -e <cmd> ] [ -F <file> ] [ -m <type> ] [ -f <file> "
 "]\n"
@@ -1890,53 +1853,53 @@ msgid ""
 "  -h\t\tthis help message"
 msgstr ""
 
-#: main.c:298
+#: main.c:299
 msgid "Error initializing terminal."
 msgstr "Kann Termial nicht initialisieren"
 
-#: main.c:394
+#: main.c:395
 #, c-format
 msgid "Debugging at level %d.\n"
 msgstr ""
 
-#: main.c:396
+#: main.c:397
 msgid "DEBUG was not defined during compilation.  Ignored.\n"
 msgstr ""
 
-#: main.c:534
+#: main.c:535
 msgid "No recipients specified.\n"
 msgstr "Keine Empfänger angegeben.\n"
 
-#: main.c:607
+#: main.c:608
 #, c-format
 msgid "%s: unable to attach file.\n"
 msgstr "%s: Kann Datei nicht anhängen.\n"
 
-#: main.c:627
+#: main.c:628
 msgid "No mailbox with new mail."
 msgstr "Keine Mailboxen mit neuen Nachrichten."
 
-#: main.c:661
+#: main.c:662
 msgid "Mailbox is empty."
 msgstr "Mailbox ist leer."
 
-#: mbox.c:186
+#: mbox.c:187
 msgid "Mailbox is corrupt!"
 msgstr "Mailbox fehlerhaft!"
 
-#: mbox.c:261
+#: mbox.c:262
 msgid "Reading %s... %d (%d%%)"
 msgstr "Lese %s... %d (%d%%)"
 
-#: mbox.c:626
+#: mbox.c:627
 msgid "Mailbox was corrupted!"
 msgstr "Mailbox wurde zerstört!"
 
-#: mbox.c:663 mbox.c:852
+#: mbox.c:664 mbox.c:853
 msgid "Fatal error!  Could not reopen mailbox!"
 msgstr "Fataler Fehler, konnte Mailbox nicht erneut öffnen!"
 
-#: mbox.c:672
+#: mbox.c:673
 msgid "Unable to lock mailbox!"
 msgstr "Kann Mailbox nicht für exklusiven Zugriff markieren!"
 
@@ -1944,329 +1907,329 @@ msgstr "Kann Mailbox nicht f
 #. * messages were found to be changed or deleted.  This should
 #. * never happen, is we presume it is a bug in mutt.
 #.
-#: mbox.c:711
+#: mbox.c:712
 msgid "sync: mbox modified, but no modified messages! (report this bug)"
 msgstr ""
 
-#: mbox.c:735
+#: mbox.c:736
 msgid "Writing messages... %d (%d%%)"
 msgstr "Schreibe Nachrichten... %d (%d%%)"
 
-#: mbox.c:837
+#: mbox.c:838
 #, c-format
 msgid "Write failed!  Saved partial mailbox to %s"
 msgstr "Konnte nicht schreiben! Speichere Teil-Mailbox in %s"
 
-#: mbox.c:885
+#: mbox.c:886
 msgid "Could not reopen mailbox!"
 msgstr "Konnte Mailbox nicht erneut öffnen!"
 
-#: menu.c:297
+#: menu.c:298
 msgid "Jump to: "
 msgstr "Springe zu: "
 
-#: menu.c:306
+#: menu.c:307
 msgid "Invalid index number."
 msgstr "Ungültige Indexnummer."
 
-#: menu.c:310 menu.c:328 menu.c:364 menu.c:405 menu.c:421 menu.c:432
-#: menu.c:443 menu.c:485 menu.c:496 menu.c:509 menu.c:522 menu.c:800
+#: menu.c:311 menu.c:329 menu.c:365 menu.c:406 menu.c:422 menu.c:433
+#: menu.c:444 menu.c:486 menu.c:497 menu.c:510 menu.c:523 menu.c:801
 msgid "No entries."
 msgstr "Keine Einträge"
 
-#: menu.c:325
+#: menu.c:326
 msgid "You cannot scroll down farther."
 msgstr "Sie können nicht weiter nach unten gehen."
 
-#: menu.c:341
+#: menu.c:342
 msgid "You cannot scroll up farther."
 msgstr "Sie können nicht weiter nach oben gehen."
 
-#: menu.c:361
+#: menu.c:362
 msgid "You are on the last page."
 msgstr "Sie sind auf der letzten Seite."
 
-#: menu.c:383
+#: menu.c:384
 msgid "You are on the first page."
 msgstr "Sie sind auf der ersten Seite."
 
-#: menu.c:462
+#: menu.c:463
 msgid "First entry is shown."
 msgstr "Der erste Eintrag wird angezeigt."
 
-#: menu.c:482
+#: menu.c:483
 msgid "Last entry is shown."
 msgstr "Der letzte Eintrag wird angezeigt."
 
-#: menu.c:533
+#: menu.c:534
 msgid "You are on the last entry."
 msgstr "Sie sind auf dem letzten Eintrag."
 
-#: menu.c:544
+#: menu.c:545
 msgid "You are on the first entry."
 msgstr "Sie sind auf dem ersten Eintrag"
 
-#: menu.c:584 pattern.c:1020
+#: menu.c:585 pattern.c:1021
 msgid "Search for: "
 msgstr "Suche nach: "
 
-#: menu.c:585
+#: menu.c:586
 msgid "Reverse search for: "
 msgstr "Suche rückwärts nach: "
 
-#: menu.c:596 pattern.c:1053
+#: menu.c:597 pattern.c:1054
 msgid "No search pattern."
 msgstr "Kein Suchmuster."
 
-#: menu.c:626 pager.c:1769 pager.c:1785 pager.c:1872 pattern.c:1118
+#: menu.c:627 pager.c:1770 pager.c:1786 pager.c:1873 pattern.c:1119
 msgid "Not found."
 msgstr "Nicht gefunden."
 
-#: menu.c:764
+#: menu.c:765
 msgid "Search is not implemented for this menu."
 msgstr "In diesem Menü kann nicht gesucht werden."
 
-#: menu.c:803
+#: menu.c:804
 msgid "Tagging is not supported."
 msgstr "Markieren wird nicht unterstützt."
 
-#: mh.c:181
+#: mh.c:182
 #, c-format
 msgid "Reading %s... %d"
 msgstr "Lese %s... %d"
 
-#: mx.c:113
+#: mx.c:114
 #, c-format
 msgid "Lock count exceeded, remove lock for %s?"
 msgstr "Lock-Datei für %s entfernen?"
 
-#: mx.c:177
+#: mx.c:178
 msgid "Timeout exceeded while attempting fcntl lock!"
 msgstr "Konnte fcntl-Lock nicht innerhalb akzeptabler Zeit erhalten."
 
-#: mx.c:183
+#: mx.c:184
 #, c-format
 msgid "Waiting for fcntl lock... %d"
 msgstr "Warte auf fcntl-Lock... %d"
 
-#: mx.c:211
+#: mx.c:212
 msgid "Timeout exceeded while attempting flock lock!"
 msgstr "Konnte flock-Lock nicht innerhalb akzeptabler Zeit erhalten."
 
-#: mx.c:218
+#: mx.c:219
 #, c-format
 msgid "Waiting for flock attempt... %d"
 msgstr "Warte auf flock-Versuch... %d"
 
-#: mx.c:586
+#: mx.c:587
 #, c-format
 msgid "Reading %s..."
 msgstr "Lese %s..."
 
-#: mx.c:673
+#: mx.c:674
 #, c-format
 msgid "Writing %s..."
 msgstr "Schreibe %s..."
 
-#: mx.c:753
+#: mx.c:754
 #, c-format
 msgid "Move read messages to %s?"
 msgstr "Verschiebe gelesene Nachrichten nach %s?"
 
-#: mx.c:762 mx.c:939
+#: mx.c:763 mx.c:940
 #, c-format
 msgid "Purge %d deleted message?"
 msgstr "Entferne %d als gelöscht markierte Nachrichten?"
 
-#: mx.c:762 mx.c:939
+#: mx.c:763 mx.c:940
 #, c-format
 msgid "Purge %d deleted messages?"
 msgstr "Entferne %d als gelöscht markierte Nachrichten?"
 
-#: mx.c:782
+#: mx.c:783
 #, c-format
 msgid "Moving read messages to %s..."
 msgstr "Verschiebe gelesene Nachrichten nach %s..."
 
-#: mx.c:798 mx.c:930
+#: mx.c:799 mx.c:931
 msgid "Mailbox is unchanged."
 msgstr "Mailbox unverändert."
 
-#: mx.c:817
+#: mx.c:818
 #, c-format
 msgid "%d kept, %d moved, %d deleted."
 msgstr "%d behalten, %d verschoben, %d gelöscht."
 
-#: mx.c:820 mx.c:955
+#: mx.c:821 mx.c:956
 #, c-format
 msgid "%d kept, %d deleted."
 msgstr "%d behalten, %d gelöscht."
 
-#: mx.c:915
+#: mx.c:916
 #, c-format
 msgid " Press '%s' to toggle write"
 msgstr " Drücken Sie '%s', um Schreib-Modus ein-/auszuschalten"
 
-#: mx.c:917
+#: mx.c:918
 msgid "Use 'toggle-write' to re-enable write!"
 msgstr "Benutzen Sie 'toggle-write', um Schreib-Modus zu reaktivieren"
 
-#: mx.c:919
+#: mx.c:920
 #, c-format
 msgid "Mailbox is marked unwritable. %s"
 msgstr "Mailbox ist als unschreibbar markiert. %s"
 
-#: mx.c:924
+#: mx.c:925
 msgid "Mailbox is read-only."
 msgstr "Mailbox kann nicht geschrieben werden."
 
-#: pager.c:1359
+#: pager.c:1360
 msgid "PrevPg"
 msgstr "Vorige Seite"
 
-#: pager.c:1360
+#: pager.c:1361
 msgid "NextPg"
 msgstr "Nächste Seite"
 
-#: pager.c:1364
+#: pager.c:1365
 msgid "View Attachm."
 msgstr "Anhänge betr."
 
-#: pager.c:1367
+#: pager.c:1368
 msgid "Next"
 msgstr "Nächste Nachr."
 
 #. emulate "less -q" and don't go on to the next message.
-#: pager.c:1681 pager.c:1712 pager.c:1741 pager.c:1960
+#: pager.c:1682 pager.c:1713 pager.c:1742 pager.c:1961
 msgid "Bottom of message is shown."
 msgstr "Das Ende der Nachricht wird angezeigt"
 
-#: pager.c:1697 pager.c:1719 pager.c:1730
+#: pager.c:1698 pager.c:1720 pager.c:1731
 msgid "Top of message is shown."
 msgstr "Der Beginn der Nachricht wird angezeigt"
 
-#: pager.c:1803
+#: pager.c:1804
 msgid "Reverse search: "
 msgstr "Suche rückwärts: "
 
-#: pager.c:1804
+#: pager.c:1805
 msgid "Search: "
 msgstr "Suche: "
 
-#: pager.c:1898
+#: pager.c:1899
 msgid "Help is currently being shown."
 msgstr "Hilfe wird bereits angezeigt."
 
-#: pager.c:1927
+#: pager.c:1928
 msgid "No more quoted text."
 msgstr "Kein weiterer zitierter Text."
 
-#: pager.c:1940
+#: pager.c:1941
 msgid "No more unquoted text after quoted text."
 msgstr "Kein weiterer eigener Text nach zitiertem Text"
 
-#: parse.c:476
+#: parse.c:477
 msgid "multipart message has no boundary parameter!"
 msgstr "Mehrteilige Nachricht hat keinen 'boundary'-Parameter!"
 
-#: pattern.c:230
+#: pattern.c:231
 #, c-format
 msgid "Error in expression: %s"
 msgstr "Fehler in Ausdruck: %s"
 
-#: pattern.c:326
+#: pattern.c:327
 #, c-format
 msgid "Invalid day of month: %s"
 msgstr "Ungültiger Tag: %s"
 
-#: pattern.c:340
+#: pattern.c:341
 #, c-format
 msgid "Invalid month: %s"
 msgstr "Ungültiger Monat: %s"
 
-#: pattern.c:394
+#: pattern.c:395
 msgid "error in expression"
 msgstr "Fehler in Ausdruck."
 
-#: pattern.c:579 pattern.c:687
+#: pattern.c:580 pattern.c:688
 #, c-format
 msgid "error in pattern at: %s"
 msgstr "Fehler in Muster bei: %s"
 
-#: pattern.c:627
+#: pattern.c:628
 #, c-format
 msgid "%c: invalid command"
 msgstr "%c: Ungültiges Kommando"
 
-#: pattern.c:633
+#: pattern.c:634
 #, c-format
 msgid "%c: not supported in this mode"
 msgstr "%c: Wird in diesem Modus nicht unterstützt."
 
-#: pattern.c:646
+#: pattern.c:647
 msgid "missing parameter"
 msgstr "Fehlender Parameter"
 
-#: pattern.c:662
+#: pattern.c:663
 #, c-format
 msgid "mismatched parenthesis: %s"
 msgstr "Unpasende Klammern: %s"
 
-#: pattern.c:694
+#: pattern.c:695
 msgid "empty pattern"
 msgstr "Leeres Muster"
 
-#: pattern.c:847
+#: pattern.c:848
 #, c-format
 msgid "error: unknown op %d (report this error)."
 msgstr ""
 
-#: pattern.c:911 pattern.c:1039
+#: pattern.c:912 pattern.c:1040
 msgid "Compiling search pattern..."
 msgstr "Compiliere Suchmuster..."
 
-#: pattern.c:925
+#: pattern.c:926
 msgid "Executing command on matching messages..."
 msgstr "Führe Kommando aus..."
 
-#: pattern.c:982
+#: pattern.c:983
 msgid "No messages matched criteria."
 msgstr "Keine Nachrichten haben Kriterium erfüllt."
 
-#: pattern.c:1077
+#: pattern.c:1078
 msgid "Search hit bottom without finding match"
 msgstr "Suche hat Ende erreicht, ohne Treffer zu erzielen."
 
-#: pattern.c:1088
+#: pattern.c:1089
 msgid "Search hit top without finding match"
 msgstr "Suche hat Anfang erreicht, ohne Treffer zu erzielen."
 
-#: pattern.c:1110
+#: pattern.c:1111
 msgid "Search interrupted."
 msgstr "Suche unterbrochen."
 
-#: pgp.c:130
+#: pgp.c:131
 msgid "Enter PGP passphrase:"
 msgstr "PGP-Mantra eingeben:"
 
-#: pgp.c:146
+#: pgp.c:147
 msgid "PGP passphrase forgotten."
 msgstr "PGP-Mantra vergessen."
 
-#: pgp.c:174
+#: pgp.c:175
 #, c-format
 msgid "Unknown PGP version \"%s\"."
 msgstr "Unbekannte PGP-Version \"%s\"."
 
-#: pgp.c:207
+#: pgp.c:208
 msgid "[-- PGP output follows (current time: "
 msgstr "[-- PGP-Ausgabe folgt (aktuelle Zeit: "
 
-#: pgp.c:320
+#: pgp.c:321
 msgid "[-- Error: unable to create PGP subprocess! --]\n"
 msgstr "[-- Fehler: Kann keinen PGP-Prozeß erzeugen! --]\n"
 
-#: pgp.c:347
+#: pgp.c:348
 msgid ""
 "\n"
 "[-- End of PGP output --]\n"
@@ -2276,7 +2239,7 @@ msgstr ""
 "[-- Ende der PGP-Ausgabe --]\n"
 "\n"
 
-#: pgp.c:476
+#: pgp.c:477
 msgid ""
 "[-- Error: could not find beginning of PGP message! --]\n"
 "\n"
@@ -2284,7 +2247,7 @@ msgstr ""
 "[--Fehler: Konnte Anfang der PGP-Nachricht nicht finden! --]\n"
 "\n"
 
-#: pgp.c:669 pgp.c:894
+#: pgp.c:670 pgp.c:895
 msgid ""
 "[-- End of PGP output --]\n"
 "\n"
@@ -2293,7 +2256,7 @@ msgstr ""
 "\n"
 
 #. Now display the signed body
-#: pgp.c:676
+#: pgp.c:677
 msgid ""
 "[-- The following data is PGP/MIME signed --]\n"
 "\n"
@@ -2301,7 +2264,7 @@ msgstr ""
 "[-- Die folgenden Daten sind PGP/MIME-signiert --]\n"
 "\n"
 
-#: pgp.c:682
+#: pgp.c:683
 msgid ""
 "\n"
 "[-- End of PGP/MIME signed data --]\n"
@@ -2309,7 +2272,7 @@ msgstr ""
 "\n"
 "[-- Ende der PGP/MIME-signierten Daten --]\n"
 
-#: pgp.c:687
+#: pgp.c:688
 msgid ""
 "[-- Error: this message does not comply with the PGP/MIME specification! "
 "--]\n"
@@ -2317,11 +2280,11 @@ msgid ""
 msgstr ""
 "[-- Fehler: Diese Nachricht verstößt gegen die PGP/MIME-Spezifikation! --]\n"
 
-#: pgp.c:801
+#: pgp.c:802
 msgid "Internal error. Inform <roessler@guug.de>."
 msgstr "Interner Fehler.  Bitte <roessler@guug.de> informieren."
 
-#: pgp.c:865
+#: pgp.c:866
 msgid ""
 "[-- Error: could not create a PGP subprocess! --]\n"
 "\n"
@@ -2329,7 +2292,7 @@ msgstr ""
 "[-- Fehler: Konnte PGP-Subprozeß nicht erzeugen! --]\n"
 "\n"
 
-#: pgp.c:967
+#: pgp.c:968
 msgid ""
 "[-- Error: malformed PGP/MIME message! --]\n"
 "\n"
@@ -2337,11 +2300,11 @@ msgstr ""
 "[-- Fehler: Fehlerhafte PGP/MIME-Nachricht! --]\n"
 "\n"
 
-#: pgp.c:980
+#: pgp.c:981
 msgid "[-- Error: could not create temporary file! --]\n"
 msgstr "[-- Fehler: Konnte Temporärdatei nicht anlegen! --]\n"
 
-#: pgp.c:989
+#: pgp.c:990
 msgid ""
 "[-- The following data is PGP/MIME encrypted --]\n"
 "\n"
@@ -2349,7 +2312,7 @@ msgstr ""
 "[-- Die folgenden Daten sind PGP/MIME-verschlüsselt --]\n"
 "\n"
 
-#: pgp.c:997
+#: pgp.c:998
 msgid ""
 "\n"
 "[-- End of PGP/MIME encrypted data --]\n"
@@ -2357,344 +2320,344 @@ msgstr ""
 "\n"
 "[-- Ende der PGP/MIME-verschlüsselten Daten --]\n"
 
-#: pgp.c:1080
+#: pgp.c:1081
 msgid "Can't open PGP subprocess!"
 msgstr "Kann PGP-Subprozeß nicht erzeugen!"
 
-#: pgp.c:1214
+#: pgp.c:1215
 #, c-format
 msgid "Use keyID = \"%s\" for %s?"
 msgstr "Benutze KeyID = \"%s\" für %s?"
 
-#: pgp.c:1220
+#: pgp.c:1221
 #, c-format
 msgid "Enter keyID for %s: "
 msgstr "KeyID für %s: "
 
-#: pgpkey.c:173
+#: pgpkey.c:174
 msgid "Exit  "
 msgstr "Ende "
 
-#: pgpkey.c:175
+#: pgpkey.c:176
 msgid "Select  "
 msgstr "Auswählen  "
 
-#: pgpkey.c:178
+#: pgpkey.c:179
 msgid "Check key  "
 msgstr "Schlüssel prüfen  "
 
-#: pgpkey.c:191
+#: pgpkey.c:192
 msgid "PGP keys matching "
 msgstr "PGP-Schlüssel für "
 
-#: pgpkey.c:210 pgpkey.c:387
+#: pgpkey.c:211 pgpkey.c:388
 msgid "Can't open /dev/null"
 msgstr "Kann /dev/null nicht öffnen"
 
-#: pgpkey.c:216 pgpkey.c:381
+#: pgpkey.c:217 pgpkey.c:382
 msgid "Can't create temporary file"
 msgstr "Kann temporäre Datei nicht erzeugen"
 
-#: pgpkey.c:226 pgpkey.c:398
+#: pgpkey.c:227 pgpkey.c:399
 msgid "Can't create filter"
 msgstr "Kann Filter nicht erzeugen"
 
-#: pgpkey.c:236
+#: pgpkey.c:237
 #, c-format
 msgid "Key ID: 0x%s"
 msgstr ""
 
-#: pgpkey.c:257
+#: pgpkey.c:258
 msgid "This ID's trust level is undefined."
 msgstr "Das Vertauensniveau dieser Zuordnung ist undefiniert."
 
-#: pgpkey.c:258
+#: pgpkey.c:259
 msgid "This ID is not trusted."
 msgstr "Diese Zuordnung ist nicht vertrauenswürdig."
 
-#: pgpkey.c:259
+#: pgpkey.c:260
 msgid "This ID is only marginally trusted."
 msgstr "Diese Zuordnung ist nur begrenzt vertrauenswürdig."
 
-#: pgpkey.c:262
+#: pgpkey.c:263
 #, c-format
 msgid "%s Do you really want to use it?"
 msgstr "%s Wollen Sie sie wirklich benutzen?"
 
-#: pgpkey.c:369
+#: pgpkey.c:370
 msgid "Please enter the key ID: "
 msgstr "Bitte Schlüsselidentifikation eingeben: "
 
-#: pgpkey.c:416
+#: pgpkey.c:417
 #, c-format
 msgid "PGP Key 0x%s."
 msgstr "PGP Schlüssel 0x%s."
 
-#: pgppubring.c:58
+#: pgppubring.c:59
 msgid "reserved"
 msgstr ""
 
-#: pgppubring.c:59
+#: pgppubring.c:60
 msgid "Encrypted Session Key"
 msgstr ""
 
-#: pgppubring.c:60
+#: pgppubring.c:61
 msgid "Signature Packet"
 msgstr ""
 
-#: pgppubring.c:61
+#: pgppubring.c:62
 msgid "Conventionally Encrypted Session Key Packet"
 msgstr ""
 
-#: pgppubring.c:62
+#: pgppubring.c:63
 msgid "One-Pass Signature Packet"
 msgstr ""
 
-#: pgppubring.c:63
+#: pgppubring.c:64
 msgid "Secret Key Packet"
 msgstr ""
 
-#: pgppubring.c:64
+#: pgppubring.c:65
 msgid "Public Key Packet"
 msgstr ""
 
-#: pgppubring.c:65
+#: pgppubring.c:66
 msgid "Secret Subkey Packet"
 msgstr ""
 
-#: pgppubring.c:66
+#: pgppubring.c:67
 msgid "Compressed Data Packet"
 msgstr ""
 
-#: pgppubring.c:67
+#: pgppubring.c:68
 msgid "Symmetrically Encrypted Data Packet"
 msgstr ""
 
-#: pgppubring.c:68
+#: pgppubring.c:69
 msgid "Marker Packet"
 msgstr ""
 
-#: pgppubring.c:69
+#: pgppubring.c:70
 msgid "Literal Data Packet"
 msgstr ""
 
-#: pgppubring.c:70
+#: pgppubring.c:71
 msgid "Trust Packet"
 msgstr ""
 
-#: pgppubring.c:71
+#: pgppubring.c:72
 msgid "Name Packet"
 msgstr ""
 
-#: pgppubring.c:72
+#: pgppubring.c:73
 msgid "Subkey Packet"
 msgstr ""
 
-#: pgppubring.c:73
+#: pgppubring.c:74
 msgid "Reserved"
 msgstr ""
 
-#: pgppubring.c:74
+#: pgppubring.c:75
 msgid "Comment Packet"
 msgstr ""
 
-#: pop.c:66
+#: pop.c:67
 msgid "POP Password: "
 msgstr "POP-Paßwort:"
 
-#: pop.c:91
+#: pop.c:92
 msgid "POP host is not defined."
 msgstr "Es wurde kein POP-Server definiert."
 
-#: pop.c:97
+#: pop.c:98
 msgid "No POP username is defined."
 msgstr "Es wurde kein Nutzername für POP definiert."
 
-#: pop.c:114
+#: pop.c:115
 #, c-format
 msgid "Could not find address for host %s."
 msgstr "Kann %s keine Adresse zuordnen."
 
-#: pop.c:122
+#: pop.c:123
 #, c-format
 msgid "Connecting to %s"
 msgstr "Verbinde zu %s"
 
-#: pop.c:166 pop.c:331
+#: pop.c:167 pop.c:332
 msgid "Server closed connection!"
 msgstr "Server hat Verbindung geschlossen!"
 
-#: pop.c:187
+#: pop.c:188
 msgid "No new mail in POP mailbox."
 msgstr "Keine neuen Nachrichten auf dem POP-Server."
 
-#: pop.c:209
+#: pop.c:210
 #, c-format
 msgid "Reading %d new message (%d bytes)..."
 msgstr ""
 
-#: pop.c:245
+#: pop.c:246
 msgid "Error reading message!"
 msgstr "Kann Nachricht nicht lesen!"
 
-#: pop.c:281
+#: pop.c:282
 msgid "Error while writing mailbox!"
 msgstr "Fehler beim Versuch, die Mailbox zum schreiben!"
 
-#: pop.c:305
+#: pop.c:306
 #, c-format
 msgid "%s [%d messages read]"
 msgstr "%s [%d Nachrichten gelesen]"
 
-#: postpone.c:111
+#: postpone.c:112
 msgid "Postponed Messages"
 msgstr "Zurückgestelle Nachrichten"
 
-#: postpone.c:182 postpone.c:191
+#: postpone.c:183 postpone.c:192
 msgid "No postponed messages."
 msgstr "Keine zurückgestellten Nachrichten."
 
-#: postpone.c:319 postpone.c:339 postpone.c:348
+#: postpone.c:320 postpone.c:340 postpone.c:349
 msgid "Illegal PGP header"
 msgstr "Unzulässiger PGP-Header"
 
-#: query.c:45
+#: query.c:46
 msgid "New Query"
 msgstr "Neue Abfrage"
 
-#: query.c:46
+#: query.c:47
 msgid "Make Alias"
 msgstr "Kurznamen erzeugen"
 
-#: query.c:47
+#: query.c:48
 msgid "Search"
 msgstr "Suchen"
 
-#: query.c:91
+#: query.c:92
 msgid "Waiting for response..."
 msgstr "Warte auf Antwort..."
 
-#: query.c:192 query.c:217
+#: query.c:193 query.c:218
 msgid "Query command not defined."
 msgstr "Kein Abfragekommando definiert."
 
-#: query.c:244
+#: query.c:245
 msgid "Query"
 msgstr "Abfrage"
 
 #. Prompt for Query
-#: query.c:257 query.c:285
+#: query.c:258 query.c:286
 msgid "Query: "
 msgstr "Abfrage: "
 
-#: query.c:268 query.c:294
+#: query.c:269 query.c:295
 #, c-format
 msgid "Query '%s'"
 msgstr "Abfrage: '%s'"
 
-#: recvattach.c:49
+#: recvattach.c:50
 msgid "Pipe"
 msgstr "Filtern"
 
-#: recvattach.c:50
+#: recvattach.c:51
 msgid "Print"
 msgstr "Drucke"
 
-#: recvattach.c:309
+#: recvattach.c:310
 msgid "Saving..."
 msgstr "Speichere..."
 
-#: recvattach.c:370
+#: recvattach.c:371
 msgid "Attachment saved"
 msgstr "Anhang gespeichert"
 
-#: recvattach.c:382
+#: recvattach.c:383
 #, c-format
 msgid "WARNING!  You are about to overwrite %s, continue?"
 msgstr "WARNUNG!  Datei %s existiert, überschreiben?"
 
-#: recvattach.c:400
+#: recvattach.c:401
 msgid "Attachment filtered."
 msgstr "Anhang gefiltert."
 
-#: recvattach.c:466
+#: recvattach.c:467
 msgid "Filter through: "
 msgstr "Filtere durch: "
 
-#: recvattach.c:466
+#: recvattach.c:467
 msgid "Pipe to: "
 msgstr "Übergebe an (pipe): "
 
-#: recvattach.c:501
+#: recvattach.c:502
 #, c-format
 msgid "I dont know how to print %s attachments!"
 msgstr "Kann %s Anhänge nicht drucken."
 
-#: recvattach.c:564
+#: recvattach.c:565
 msgid "Print tagged attachment(s)?"
 msgstr "Drucke markierte Anhänge?"
 
-#: recvattach.c:564
+#: recvattach.c:565
 msgid "Print attachment?"
 msgstr "Drucke Anhang?"
 
-#: recvattach.c:592
+#: recvattach.c:593
 msgid "You may only bounce message/rfc822 parts."
 msgstr "Sie können nur message/rfc822-Anhänge erneut versenden."
 
-#: recvattach.c:625
+#: recvattach.c:626
 #, c-format
 msgid "Bounce messages to %s...?"
 msgstr "Nachrichten an %s... erneut versenden?"
 
-#: recvattach.c:626
+#: recvattach.c:627
 #, c-format
 msgid "Bounce message to %s...?"
 msgstr "Nachricht an %s... erneut versenden?"
 
-#: recvattach.c:851
+#: recvattach.c:852
 msgid "Attachments"
 msgstr "Anhänge"
 
-#: recvattach.c:906
+#: recvattach.c:907
 msgid "Only deletion of multipart attachments is supported."
 msgstr "Kann nur aus mehrteiligen Anhängen löschen."
 
-#: recvattach.c:914
+#: recvattach.c:915
 msgid "Deletion of attachments from PGP messages is unsupported."
 msgstr "Kann keine Anhänge aus PGP-Nachrichten löschen."
 
-#: recvattach.c:990
+#: recvattach.c:991
 msgid "This operation is not currently supported for PGP messages."
 msgstr "Diese Funktion wird nicht für PGP-Nachrichten unterstützt."
 
-#: rfc1524.c:157
+#: rfc1524.c:158
 #, c-format
 msgid "Improperly formated entry for type %s in \"%s\" line %d"
 msgstr "Ungültiger Eintrag für Typ %s in \"%s\", Zeile %d."
 
-#: rfc1524.c:389
+#: rfc1524.c:390
 msgid "No mailcap path specified"
 msgstr "Kein Mailcap-Pfad definiert."
 
-#: rfc1524.c:415
+#: rfc1524.c:416
 #, c-format
 msgid "mailcap entry for type %s not found"
 msgstr "Kann keinen Mailcap-Eintrag für %s finden."
 
-#: score.c:71
+#: score.c:72
 msgid "score: too few arguments"
 msgstr "Score: Zu wenige Parameter."
 
-#: score.c:80
+#: score.c:81
 msgid "score: too many arguments"
 msgstr "score: Zu viele Parameter."
 
-#: send.c:229
+#: send.c:230
 msgid "No subject, abort?"
 msgstr "Kein Betreff, abbrechen?"
 
-#: send.c:231
+#: send.c:232
 msgid "No subject, aborting."
 msgstr "Kein Betreff, breche ab."
 
@@ -2703,7 +2666,7 @@ msgstr "Kein Betreff, breche ab."
 #. * to send a message to only the sender of the message.  This
 #. * provides a way to do that.
 #.
-#: send.c:424
+#: send.c:425
 #, c-format
 msgid "Reply to %s?"
 msgstr "Antworte an %s?"
@@ -2711,124 +2674,151 @@ msgstr "Antworte an %s?"
 #. This could happen if the user tagged some messages and then did
 #. * a limit such that none of the tagged message are visible.
 #.
-#: send.c:507
+#: send.c:508
 msgid "No tagged messages are visible!"
 msgstr "Keine markierten Nachrichten sichtbar!"
 
-#: send.c:532
+#: send.c:533
 msgid "No mailing lists found!"
 msgstr "Keine Mailing-Listen gefunden!"
 
-#: send.c:619
+#: send.c:620
 msgid "Include message in reply?"
 msgstr "Nachricht in Antwort zitieren?"
 
-#: send.c:633
+#: send.c:634
 msgid "Could not include all requested messages!"
 msgstr "Konnte nicht alle gewünschten Nachrichten zitieren!"
 
-#: send.c:646
+#: send.c:647
 msgid "Forward MIME encapsulated?"
 msgstr "Mit MIME-Kapseulng wetierleiten?"
 
 #. If the user is composing a new message, check to see if there
 #. * are any postponed messages first.
 #.
-#: send.c:857
+#: send.c:858
 msgid "Recall postponed message?"
 msgstr "Zurückgestellte Nachricht weiterbearbeiten?"
 
-#: send.c:1087
+#: send.c:1088
 msgid "Abort unmodified message?"
 msgstr "Unveränderte Nachricht verwerfen?"
 
-#: send.c:1089
+#: send.c:1090
 msgid "Aborted unmodified message."
 msgstr "Unveränderte Nachricht verworfen."
 
 #. abort
-#: send.c:1127
+#: send.c:1128
 msgid "Mail not sent."
 msgstr "Nachricht nicht verschickt."
 
-#: send.c:1140
+#: send.c:1141
 msgid "Message postponed."
 msgstr "Nachricht zurückgestellt."
 
-#: send.c:1149
+#: send.c:1150
 msgid "No recipients are specified!"
 msgstr "Es wurden keine Empfänger angegeben!"
 
-#: send.c:1154
+#: send.c:1155
 msgid "No recipients were specified."
 msgstr "Es wurden keine Empfänger angegeben!"
 
-#: send.c:1160
+#: send.c:1161
 msgid "No subject, abort sending?"
 msgstr "Kein Betreff, Versand abbrechen?"
 
-#: send.c:1164
+#: send.c:1165
 msgid "No subject specified."
 msgstr "Kein Betreff."
 
-#: send.c:1203
+#: send.c:1204
 msgid "Message edited. Really send?"
 msgstr "Nachricht verändert.  Wirklich abschicken?"
 
-#: send.c:1209
+#: send.c:1210
 msgid "Sending message..."
 msgstr "Verschicke Nachricht..."
 
-#: send.c:1309
+#: send.c:1310
 msgid "Mail sent."
 msgstr "Nachricht verschickt."
 
-#: sendlib.c:408
+#: sendlib.c:409
 msgid "No boundary parameter found! [report this error]"
 msgstr ""
 
-#: sendlib.c:442
+#: sendlib.c:443
 #, c-format
 msgid "%s no longer exists!"
 msgstr "%s existiert nicht mehr!"
 
-#: sendlib.c:695
+#: sendlib.c:696
 #, c-format
 msgid "Could not open %s"
 msgstr "Konnte %s nicht öffnen."
 
-#: sendlib.c:1622
+#: sendlib.c:1623
 #, c-format
 msgid "Error sending message, child exited %d (%s).\n"
 msgstr "Fehler beim Versand der Nachricht, %s (%d).\n"
 
-#: sendlib.c:1624
+#: sendlib.c:1625
 #, c-format
 msgid "Saved output of child process to %s.\n"
 msgstr "Ausgabe des Unterprozesses in %s abgespeichert.\n"
 
-#: sendlib.c:1628
+#: sendlib.c:1629
 msgid "Error sending message."
 msgstr "Fehler beim Versand der Nachricht."
 
-#: signal.c:38 signal.c:41
+#: signal.c:39 signal.c:42
 #, c-format
 msgid "Caught %s...  Exiting.\n"
 msgstr "Signal %s... Abbruch.\n"
 
-#: signal.c:43
+#: signal.c:44
 #, c-format
 msgid "Caught signal %d...  Exiting.\n"
 msgstr "Signal %s... Abbruch.\n"
 
-#: sort.c:198
+#: sort.c:199
 msgid "Sorting mailbox..."
 msgstr "Sortiere Mailbox..."
 
-#: sort.c:226
+#: sort.c:227
 msgid "Could not find sorting function! [report this bug]"
 msgstr ""
 
-#: status.c:101
+#: status.c:102
 msgid "(no mailbox)"
 msgstr "(keine Mailbox)"
+
+#~ msgid "attach a PGP public key"
+#~ msgstr "Hänge öffentlichen PGP-Schlüssel an"
+
+#~ msgid "show PGP options"
+#~ msgstr "Zeige PGP-Optionen"
+
+#~ msgid "extract PGP public keys"
+#~ msgstr "Extrahiere öffentliche PGP-Schlüssel"
+
+#~ msgid "wipe PGP passphrase from memory"
+#~ msgstr "Entferne PGP-Mantra aus Speicher"
+
+#~ msgid "mail a PGP public key"
+#~ msgstr "Verschicke öffentlichen PGP-Schlüssel"
+
+#~ msgid "verify a PGP public key"
+#~ msgstr "Verifiziere öffentlichen PGP-Schlüssel"
+
+#~ msgid "view the key's user id"
+#~ msgstr "Zeige Nutzer-ID zu Schlüssel an"
+
+#~ msgid "make decrypted copy and delete"
+#~ msgstr "Erzeuge dechiffrierte Kopie und lösche"
+
+#~ msgid "make decrypted copy"
+#~ msgstr "Erzeuge dechiffrierte Kopie"
index 32f604db41a54a77d9fe2c617b3d7262e8550055..8deb12b23774b1482bc75d5743732c57472f727f 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 1998-10-13 09:28+0200\n"
+"POT-Creation-Date: 1998-10-14 00:07+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,708 +14,708 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: addrbook.c:31 browser.c:53 pager.c:1358 postpone.c:32 query.c:43
-#: recvattach.c:47
+#: addrbook.c:32 browser.c:54 pager.c:1359 postpone.c:33 query.c:44
+#: recvattach.c:48
 msgid "Exit"
 msgstr ""
 
-#: addrbook.c:32
+#: addrbook.c:33
 msgid "Select"
 msgstr ""
 
-#: addrbook.c:33 browser.c:56 compose.c:70 curs_main.c:234 pager.c:1454
-#: pgpkey.c:180 postpone.c:35 query.c:48 recvattach.c:51
+#: addrbook.c:34 browser.c:57 compose.c:71 curs_main.c:235 pager.c:1455
+#: pgpkey.c:181 postpone.c:36 query.c:49 recvattach.c:52
 msgid "Help"
 msgstr ""
 
-#: addrbook.c:131
+#: addrbook.c:132
 msgid "You have no aliases!"
 msgstr ""
 
-#: addrbook.c:143
+#: addrbook.c:144
 msgid "Aliases"
 msgstr ""
 
 #. add a new alias
-#: alias.c:192
+#: alias.c:193
 msgid "Alias as: "
 msgstr ""
 
-#: alias.c:198
+#: alias.c:199
 msgid "You already have an alias defined with that name!"
 msgstr ""
 
-#: alias.c:212
+#: alias.c:213
 msgid "Address: "
 msgstr ""
 
-#: alias.c:228
+#: alias.c:229
 msgid "Personal name: "
 msgstr ""
 
-#: alias.c:237
+#: alias.c:238
 #, c-format
 msgid "[%s = %s] Accept?"
 msgstr ""
 
-#: alias.c:254 recvattach.c:282 recvattach.c:337
+#: alias.c:255 recvattach.c:283 recvattach.c:338
 msgid "Save to file: "
 msgstr ""
 
-#: alias.c:265
+#: alias.c:266
 msgid "Alias added."
 msgstr ""
 
-#: attach.c:111 attach.c:234 attach.c:366 attach.c:807
+#: attach.c:112 attach.c:235 attach.c:367 attach.c:808
 msgid "Can't match nametemplate, continue?"
 msgstr ""
 
 #. For now, editing requires a file, no piping
-#: attach.c:123
+#: attach.c:124
 msgid "Mailcap compose entry requires %%s"
 msgstr ""
 
-#: attach.c:137
+#: attach.c:138
 msgid "Failure to open file to parse headers."
 msgstr ""
 
-#: attach.c:168
+#: attach.c:169
 msgid "Failure to open file to strip headers."
 msgstr ""
 
-#: attach.c:186
+#: attach.c:187
 #, c-format
 msgid "No mailcap compose entry for %s, creating empty file."
 msgstr ""
 
 #. For now, editing requires a file, no piping
-#: attach.c:246
+#: attach.c:247
 msgid "Mailcap Edit entry requires %%s"
 msgstr ""
 
-#: attach.c:264
+#: attach.c:265
 #, c-format
 msgid "No mailcap edit entry for %s"
 msgstr ""
 
-#: attach.c:332
+#: attach.c:333
 msgid "No matching mailcap entry found.  Viewing as text."
 msgstr ""
 
-#: attach.c:345
+#: attach.c:346
 msgid "MIME type not defined.  Cannot view attachment."
 msgstr ""
 
-#: attach.c:435
+#: attach.c:436
 msgid "Cannot create filter"
 msgstr ""
 
-#: attach.c:636 recvattach.c:312
+#: attach.c:637 recvattach.c:313
 msgid "Attachment saved."
 msgstr ""
 
-#: attach.c:689
+#: attach.c:690
 msgid "Write fault!"
 msgstr ""
 
-#: attach.c:891
+#: attach.c:892
 msgid "I don't know how to print that!"
 msgstr ""
 
-#: browser.c:54
+#: browser.c:55
 msgid "Chdir"
 msgstr ""
 
-#: browser.c:55
+#: browser.c:56
 msgid "Mask"
 msgstr ""
 
-#: browser.c:344 browser.c:669
+#: browser.c:345 browser.c:670
 #, c-format
 msgid "%s is not a directory."
 msgstr ""
 
-#: browser.c:447
+#: browser.c:448
 #, c-format
 msgid "Mailboxes [%d]"
 msgstr ""
 
-#: browser.c:452
+#: browser.c:453
 #, c-format
 msgid "Directory [%s], File mask: %s"
 msgstr ""
 
-#: browser.c:536 browser.c:726 browser.c:825
+#: browser.c:537 browser.c:727 browser.c:826
 msgid "No files match the file mask"
 msgstr ""
 
-#: browser.c:643
+#: browser.c:644
 msgid "Chdir to: "
 msgstr ""
 
-#: browser.c:662 browser.c:719
+#: browser.c:663 browser.c:720
 msgid "Error scanning directory."
 msgstr ""
 
-#: browser.c:680
+#: browser.c:681
 msgid "File Mask: "
 msgstr ""
 
-#: browser.c:745
+#: browser.c:746
 msgid "Reverse sort by (d)ate, (a)lpha, si(z)e or do(n)'t sort? "
 msgstr ""
 
-#: browser.c:747
+#: browser.c:748
 msgid "Sort by (d)ate, (a)lpha, si(z)e or do(n)'t sort? "
 msgstr ""
 
-#: browser.c:812
+#: browser.c:813
 msgid "New file name: "
 msgstr ""
 
-#: browser.c:833
+#: browser.c:834
 msgid "Can't view a directory"
 msgstr ""
 
-#: browser.c:851
+#: browser.c:852
 msgid "Error trying to view file"
 msgstr ""
 
-#: buffy.c:357
+#: buffy.c:358
 #, c-format
 msgid "New mail in %s."
 msgstr ""
 
-#: color.c:306
+#: color.c:307
 #, c-format
 msgid "%s: color not supported by term"
 msgstr ""
 
-#: color.c:312
+#: color.c:313
 #, c-format
 msgid "%s: no such color"
 msgstr ""
 
-#: color.c:358 color.c:541 color.c:552
+#: color.c:359 color.c:542 color.c:553
 #, c-format
 msgid "%s: no such object"
 msgstr ""
 
-#: color.c:365
+#: color.c:366
 #, c-format
 msgid "%s: command valid only for index object"
 msgstr ""
 
-#: color.c:373
+#: color.c:374
 #, c-format
 msgid "%s: too few arguments"
 msgstr ""
 
-#: color.c:529
+#: color.c:530
 msgid "Missing arguments."
 msgstr ""
 
-#: color.c:568 color.c:579
+#: color.c:569 color.c:580
 msgid "color: too few arguments"
 msgstr ""
 
-#: color.c:602
+#: color.c:603
 msgid "mono: too few arguments"
 msgstr ""
 
-#: color.c:622
+#: color.c:623
 #, c-format
 msgid "%s: no such attribute"
 msgstr ""
 
-#: color.c:662 hook.c:61 hook.c:69 keymap.c:649
+#: color.c:663 hook.c:62 hook.c:70 keymap.c:650
 msgid "too few arguments"
 msgstr ""
 
-#: color.c:671 hook.c:75
+#: color.c:672 hook.c:76
 msgid "too many arguments"
 msgstr ""
 
-#: color.c:685
+#: color.c:686
 msgid "default colors not supported"
 msgstr ""
 
-#: commands.c:122
+#: commands.c:123
 msgid "Display message using mailcap?"
 msgstr ""
 
-#: commands.c:153 commands.c:161 pgpkey.c:220
+#: commands.c:154 commands.c:162 pgpkey.c:221
 msgid "Invoking PGP..."
 msgstr ""
 
 #. find out whether or not the verify signature
-#: commands.c:158
+#: commands.c:159
 msgid "Verify PGP signature?"
 msgstr ""
 
-#: commands.c:176 mbox.c:695
+#: commands.c:177 mbox.c:696
 msgid "Could not create temporary file!"
 msgstr ""
 
-#: commands.c:224
+#: commands.c:225
 msgid "Command: "
 msgstr ""
 
-#: commands.c:257
+#: commands.c:258
 msgid "Error parsing address!"
 msgstr ""
 
-#: commands.c:267
+#: commands.c:268
 #, c-format
 msgid "Bounce message to %s"
 msgstr ""
 
-#: commands.c:267
+#: commands.c:268
 #, c-format
 msgid "Bounce messages to %s"
 msgstr ""
 
-#: commands.c:278
+#: commands.c:279
 msgid "Message bounced."
 msgstr ""
 
-#: commands.c:278
+#: commands.c:279
 msgid "Messages bounced."
 msgstr ""
 
-#: commands.c:298
+#: commands.c:299
 msgid "Pipe to command: "
 msgstr ""
 
-#: commands.c:403
+#: commands.c:404
 msgid ""
 "Rev-Sort (d)ate/(f)rm/(r)ecv/(s)ubj/t(o)/(t)hread/(u)nsort/si(z)e/s(c)ore?: "
 msgstr ""
 
-#: commands.c:404
+#: commands.c:405
 msgid ""
 "Sort (d)ate/(f)rm/(r)ecv/(s)ubj/t(o)/(t)hread/(u)nsort/si(z)e/s(c)ore?: "
 msgstr ""
 
-#: commands.c:459
+#: commands.c:460
 msgid "Shell command: "
 msgstr ""
 
-#: commands.c:575
+#: commands.c:576
 #, c-format
 msgid "%s%s to mailbox"
 msgstr ""
 
-#: commands.c:576
+#: commands.c:577
 msgid "Decode-save"
 msgstr ""
 
-#: commands.c:576
+#: commands.c:577
 msgid "Decode-copy"
 msgstr ""
 
-#: commands.c:577
+#: commands.c:578
 msgid "Decrypt-save"
 msgstr ""
 
-#: commands.c:577
+#: commands.c:578
 msgid "Decrypt-copy"
 msgstr ""
 
-#: commands.c:578 curs_main.c:230 recvattach.c:48
+#: commands.c:579 curs_main.c:231 recvattach.c:49
 msgid "Save"
 msgstr ""
 
-#: commands.c:578
+#: commands.c:579
 msgid "Copy"
 msgstr ""
 
-#: commands.c:578
+#: commands.c:579
 msgid " tagged"
 msgstr ""
 
-#: commands.c:647
+#: commands.c:648
 #, c-format
 msgid "Copying to %s..."
 msgstr ""
 
-#: commands.c:719
+#: commands.c:720
 msgid "Print message?"
 msgstr ""
 
-#: commands.c:719
+#: commands.c:720
 msgid "Print tagged messages?"
 msgstr ""
 
-#: commands.c:746
+#: commands.c:747
 msgid "Message printed"
 msgstr ""
 
-#: commands.c:746
+#: commands.c:747
 msgid "Messages printed"
 msgstr ""
 
-#: compose.c:63
+#: compose.c:64
 msgid "Send"
 msgstr ""
 
-#: compose.c:64
+#: compose.c:65
 msgid "Abort"
 msgstr ""
 
-#: compose.c:68 compose.c:606
+#: compose.c:69 compose.c:607
 msgid "Attach file"
 msgstr ""
 
-#: compose.c:69
+#: compose.c:70
 msgid "Descrip"
 msgstr ""
 
-#: compose.c:97
+#: compose.c:98
 msgid ""
 "(e)ncrypt, (s)ign, sign (a)s, (b)oth, select (m)ic algorithm, or (f)orget "
 "it? "
 msgstr ""
 
-#: compose.c:115
+#: compose.c:116
 msgid "Can't open your secret key ring!"
 msgstr ""
 
-#: compose.c:120
+#: compose.c:121
 msgid "Sign as: "
 msgstr ""
 
-#: compose.c:139
+#: compose.c:140
 msgid "An unkown PGP version was defined for signing."
 msgstr ""
 
-#: compose.c:145
+#: compose.c:146
 msgid "This doesn't make sense if you don't want to sign the message."
 msgstr ""
 
-#: compose.c:151 compose.c:287
+#: compose.c:152 compose.c:288
 msgid "MIC algorithm: "
 msgstr ""
 
-#: compose.c:156
+#: compose.c:157
 msgid "Unknown MIC algorithm, valid ones are: pgp-md5, pgp-sha1, pgp-rmd160"
 msgstr ""
 
-#: compose.c:200
+#: compose.c:201
 #, c-format
 msgid "%s [#%d] no longer exists!"
 msgstr ""
 
-#: compose.c:208
+#: compose.c:209
 #, c-format
 msgid "%s [#%d] modified. Update encoding?"
 msgstr ""
 
-#: compose.c:270
+#: compose.c:271
 msgid "Sign, Encrypt"
 msgstr ""
 
-#: compose.c:272
+#: compose.c:273
 msgid "Encrypt"
 msgstr ""
 
-#: compose.c:274
+#: compose.c:275
 msgid "Sign"
 msgstr ""
 
-#: compose.c:276
+#: compose.c:277
 msgid "Clear"
 msgstr ""
 
-#: compose.c:281
+#: compose.c:282
 msgid " sign as: "
 msgstr ""
 
-#: compose.c:285
+#: compose.c:286
 msgid "<default>"
 msgstr ""
 
-#: compose.c:376
+#: compose.c:377
 msgid "You may not delete the only attachment."
 msgstr ""
 
-#: compose.c:450
+#: compose.c:451
 msgid "Compose"
 msgstr ""
 
-#: compose.c:611
+#: compose.c:612
 msgid "Open mailbox to attach message from"
 msgstr ""
 
-#: compose.c:650
+#: compose.c:651
 msgid "No messages in that folder."
 msgstr ""
 
-#: compose.c:657
+#: compose.c:658
 msgid "Tag the messages you want to attach!"
 msgstr ""
 
-#: compose.c:692 compose.c:712
+#: compose.c:693 compose.c:713
 msgid "Unable to attach!"
 msgstr ""
 
-#: compose.c:820
+#: compose.c:821
 msgid "Invalid encoding."
 msgstr ""
 
-#: compose.c:835
+#: compose.c:836
 msgid "Save a copy of this message?"
 msgstr ""
 
-#: compose.c:880
+#: compose.c:881
 msgid "Rename to: "
 msgstr ""
 
-#: compose.c:885
+#: compose.c:886
 #, c-format
 msgid "Can't stat: %s"
 msgstr ""
 
-#: compose.c:912
+#: compose.c:913
 msgid "New file: "
 msgstr ""
 
-#: compose.c:925
+#: compose.c:926
 msgid "Content-Type is of the form base/sub"
 msgstr ""
 
-#: compose.c:931
+#: compose.c:932
 #, c-format
 msgid "Unknown Content-Type %s"
 msgstr ""
 
-#: compose.c:944
+#: compose.c:945
 #, c-format
 msgid "Can't create file %s"
 msgstr ""
 
-#: compose.c:952
+#: compose.c:953
 msgid "What we have here is a failure to make an attachment"
 msgstr ""
 
-#: compose.c:1024
+#: compose.c:1025
 msgid "Postpone this message?"
 msgstr ""
 
-#: compose.c:1071
+#: compose.c:1072
 msgid "Write message to mailbox"
 msgstr ""
 
-#: compose.c:1075
+#: compose.c:1076
 #, c-format
 msgid "Writing message to %s ..."
 msgstr ""
 
-#: compose.c:1086
+#: compose.c:1087
 msgid "Message written."
 msgstr ""
 
-#: copy.c:569
+#: copy.c:570
 msgid "Confused when attempting to delete attachment, h & m can't be NULL"
 msgstr ""
 
-#: copy.c:584
+#: copy.c:585
 msgid "Deleting non-multipart messages not yet supported"
 msgstr ""
 
-#: curs_lib.c:134
+#: curs_lib.c:135
 msgid "yes"
 msgstr ""
 
-#: curs_lib.c:135
+#: curs_lib.c:136
 msgid "no"
 msgstr ""
 
 #. restore blocking operation
-#: curs_lib.c:174
+#: curs_lib.c:175
 msgid "Exit Mutt?"
 msgstr ""
 
-#: curs_lib.c:249
+#: curs_lib.c:250
 msgid "unknown error"
 msgstr ""
 
-#: curs_lib.c:269
+#: curs_lib.c:270
 msgid "Press any key to continue..."
 msgstr ""
 
-#: curs_lib.c:307
+#: curs_lib.c:308
 msgid " ('?' for list): "
 msgstr ""
 
-#: curs_main.c:208
+#: curs_main.c:209
 msgid "Cannot toggle write on a readonly mailbox!"
 msgstr ""
 
-#: curs_main.c:215
+#: curs_main.c:216
 msgid "Changes to folder will be written on folder exit."
 msgstr ""
 
-#: curs_main.c:220
+#: curs_main.c:221
 msgid "Changes to folder will not be written."
 msgstr ""
 
-#: curs_main.c:227
+#: curs_main.c:228
 msgid "Quit"
 msgstr ""
 
-#: curs_main.c:228 pager.c:1365 postpone.c:33
+#: curs_main.c:229 pager.c:1366 postpone.c:34
 msgid "Del"
 msgstr ""
 
-#: curs_main.c:229 postpone.c:34
+#: curs_main.c:230 postpone.c:35
 msgid "Undel"
 msgstr ""
 
-#: curs_main.c:231 query.c:44
+#: curs_main.c:232 query.c:45
 msgid "Mail"
 msgstr ""
 
-#: curs_main.c:232 pager.c:1366
+#: curs_main.c:233 pager.c:1367
 msgid "Reply"
 msgstr ""
 
-#: curs_main.c:233
+#: curs_main.c:234
 msgid "Group"
 msgstr ""
 
-#: curs_main.c:399
+#: curs_main.c:400
 msgid "Mailbox was externally modified.  Flags may be wrong."
 msgstr ""
 
-#: curs_main.c:402
+#: curs_main.c:403
 msgid "New mail in this mailbox."
 msgstr ""
 
-#: curs_main.c:519
+#: curs_main.c:520
 msgid "No mailbox is open."
 msgstr ""
 
-#: curs_main.c:525
+#: curs_main.c:526
 msgid "No tagged messages."
 msgstr ""
 
-#: curs_main.c:605
+#: curs_main.c:606
 msgid "Jump to message: "
 msgstr ""
 
-#: curs_main.c:611
+#: curs_main.c:612
 msgid "Argument must be a message number."
 msgstr ""
 
-#: curs_main.c:644
+#: curs_main.c:645
 msgid "That message is not visible."
 msgstr ""
 
-#: curs_main.c:647
+#: curs_main.c:648
 msgid "Invalid message number."
 msgstr ""
 
-#: curs_main.c:660
+#: curs_main.c:661
 msgid "Delete messages matching: "
 msgstr ""
 
-#: curs_main.c:682
+#: curs_main.c:683
 msgid "No limit pattern is in effect."
 msgstr ""
 
 #. i18n: ask for a limit to apply
-#: curs_main.c:687
+#: curs_main.c:688
 #, c-format
 msgid "Limit: %s"
 msgstr ""
 
-#: curs_main.c:696
+#: curs_main.c:697
 msgid "Limit to messages matching: "
 msgstr ""
 
-#: curs_main.c:726
+#: curs_main.c:727
 msgid "Quit Mutt?"
 msgstr ""
 
-#: curs_main.c:837
+#: curs_main.c:838
 msgid "Tag messages matching: "
 msgstr ""
 
-#: curs_main.c:845
+#: curs_main.c:846
 msgid "Undelete messages matching: "
 msgstr ""
 
-#: curs_main.c:852
+#: curs_main.c:853
 msgid "Untag messages matching: "
 msgstr ""
 
-#: curs_main.c:870
+#: curs_main.c:871
 msgid "Open mailbox"
 msgstr ""
 
-#: curs_main.c:872
+#: curs_main.c:873
 msgid "Open mailbox in read-only mode"
 msgstr ""
 
-#: curs_main.c:888 mx.c:420 mx.c:561
+#: curs_main.c:889 mx.c:421 mx.c:562
 #, c-format
 msgid "%s is not a mailbox."
 msgstr ""
 
-#: curs_main.c:984
+#: curs_main.c:985
 msgid "Exit Mutt without saving?"
 msgstr ""
 
-#: curs_main.c:994 curs_main.c:1018
+#: curs_main.c:995 curs_main.c:1019
 msgid "You are on the last message."
 msgstr ""
 
-#: curs_main.c:1001 curs_main.c:1043
+#: curs_main.c:1002 curs_main.c:1044
 msgid "No undeleted messages."
 msgstr ""
 
-#: curs_main.c:1036 curs_main.c:1059
+#: curs_main.c:1037 curs_main.c:1060
 msgid "You are on the first message."
 msgstr ""
 
-#: curs_main.c:1132 pattern.c:1074
+#: curs_main.c:1133 pattern.c:1075
 msgid "Search wrapped to top."
 msgstr ""
 
-#: curs_main.c:1141 pattern.c:1085
+#: curs_main.c:1142 pattern.c:1086
 msgid "Search wrapped to bottom."
 msgstr ""
 
-#: curs_main.c:1167
+#: curs_main.c:1168
 msgid "No new messages"
 msgstr ""
 
-#: curs_main.c:1167
+#: curs_main.c:1168
 msgid "No unread messages"
 msgstr ""
 
-#: curs_main.c:1168
+#: curs_main.c:1169
 msgid " in this limited view"
 msgstr ""
 
-#: curs_main.c:1278
+#: curs_main.c:1279
 msgid "No more threads."
 msgstr ""
 
-#: curs_main.c:1280
+#: curs_main.c:1281
 msgid "You are on the first thread."
 msgstr ""
 
-#: curs_main.c:1333
+#: curs_main.c:1334
 msgid "Thread contains unread messages."
 msgstr ""
 
-#: curs_main.c:1346 flags.c:217 thread.c:628
+#: curs_main.c:1347 flags.c:218 thread.c:629
 msgid "Threading is not enabled."
 msgstr ""
 
-#: date.c:48
+#: date.c:49
 msgid "Please report this program error in the function mutt_mktime."
 msgstr ""
 
@@ -723,7 +723,7 @@ msgstr ""
 #. * SLcurses_waddnstr() can't take a "const char *", so this is only
 #. * declared "static" (sigh)
 #.
-#: edit.c:36
+#: edit.c:37
 msgid ""
 "~~\t\tinsert a line begining with a single ~\n"
 "~b users\tadd users to the Bcc: field\n"
@@ -745,141 +745,141 @@ msgid ""
 ".\t\ton a line by itself ends input\n"
 msgstr ""
 
-#: edit.c:178
+#: edit.c:179
 #, c-format
 msgid "%d: invalid message number.\n"
 msgstr ""
 
-#: edit.c:312
+#: edit.c:313
 msgid "(End message with a . on a line by itself)\n"
 msgstr ""
 
-#: edit.c:370
+#: edit.c:371
 msgid "No mailbox.\n"
 msgstr ""
 
-#: edit.c:374
+#: edit.c:375
 msgid "Message contains:\n"
 msgstr ""
 
-#: edit.c:378 edit.c:430
+#: edit.c:379 edit.c:431
 msgid "(continue)\n"
 msgstr ""
 
-#: edit.c:391
+#: edit.c:392
 msgid "missing filename.\n"
 msgstr ""
 
-#: edit.c:412
+#: edit.c:413
 msgid "No lines in message.\n"
 msgstr ""
 
-#: edit.c:441
+#: edit.c:442
 #, c-format
 msgid "%s: unknown editor command (~? for help)\n"
 msgstr ""
 
-#: flags.c:255
+#: flags.c:256
 msgid "Set flag"
 msgstr ""
 
-#: flags.c:255
+#: flags.c:256
 msgid "Clear flag"
 msgstr ""
 
-#: handler.c:127
+#: handler.c:128
 msgid "[-- Error: unexpected end of file! --]\n"
 msgstr ""
 
 #. didn't find anything that we could display!
-#: handler.c:882
+#: handler.c:883
 msgid "[-- Error:  Could not display any parts of Multipart/Alternative! --]\n"
 msgstr ""
 
-#: handler.c:997
+#: handler.c:998
 #, c-format
 msgid "[-- Attachment #%d"
 msgstr ""
 
-#: handler.c:1010
+#: handler.c:1011
 #, c-format
 msgid "[-- Type: %s/%s, Encoding: %s, Size: %s --]\n"
 msgstr ""
 
-#: handler.c:1076
+#: handler.c:1077
 #, c-format
 msgid "[-- Autoview using %s --]\n"
 msgstr ""
 
-#: handler.c:1078
+#: handler.c:1079
 #, c-format
 msgid "Invoking autoview command: %s"
 msgstr ""
 
-#: handler.c:1118 handler.c:1141
+#: handler.c:1119 handler.c:1142
 #, c-format
 msgid "[-- Autoview stderr of %s --]\n"
 msgstr ""
 
-#: handler.c:1246
+#: handler.c:1247
 msgid "Error: multipart/signed has no protocol."
 msgstr ""
 
-#: handler.c:1258
+#: handler.c:1259
 msgid "Error: multipart/encrypted has no protocol parameter!"
 msgstr ""
 
-#: handler.c:1300
+#: handler.c:1301
 msgid "Unable to open temporary file!"
 msgstr ""
 
-#: handler.c:1359
+#: handler.c:1360
 #, c-format
 msgid "[-- %s/%s is unsupported "
 msgstr ""
 
-#: handler.c:1364
+#: handler.c:1365
 #, c-format
 msgid "(use '%s' to view this part)"
 msgstr ""
 
-#: handler.c:1366
+#: handler.c:1367
 msgid "(need 'view-attachments' bound to key!)"
 msgstr ""
 
-#: headers.c:201
+#: headers.c:202
 #, c-format
 msgid "%s: unable to attach file"
 msgstr ""
 
-#: help.c:185
+#: help.c:186
 msgid "ERROR: please report this bug"
 msgstr ""
 
-#: help.c:232
+#: help.c:233
 msgid "<UNKNOWN>"
 msgstr ""
 
-#: help.c:237
+#: help.c:238
 msgid ""
 "\n"
 "Generic bindings:\n"
 "\n"
 msgstr ""
 
-#: help.c:241
+#: help.c:242
 msgid ""
 "\n"
 "Unbound functions:\n"
 "\n"
 msgstr ""
 
-#: help.c:249
+#: help.c:250
 #, c-format
 msgid "Help for %s"
 msgstr ""
 
-#: imap.c:102
+#: imap.c:103
 #, c-format
 msgid "imap_error(): unexpected response in %s: %s\n"
 msgstr ""
@@ -887,229 +887,229 @@ msgstr ""
 #. something is wrong because the server reported fewer messages
 #. * than we previously saw
 #.
-#: imap.c:354
+#: imap.c:355
 msgid "Fatal error.  Message count is out of sync!"
 msgstr ""
 
-#: imap.c:424
+#: imap.c:425
 #, c-format
 msgid "Fetching message headers... [%d/%d]"
 msgstr ""
 
-#: imap.c:622 mbox.c:925
+#: imap.c:623 mbox.c:926
 msgid "Reopening mailbox..."
 msgstr ""
 
-#: imap.c:857
+#: imap.c:858
 #, c-format
 msgid "Connecting to %s..."
 msgstr ""
 
-#: imap.c:876
+#: imap.c:877
 msgid "IMAP Username: "
 msgstr ""
 
-#: imap.c:889
+#: imap.c:890
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: imap.c:902
+#: imap.c:903
 msgid "Logging in..."
 msgstr ""
 
-#: imap.c:957
+#: imap.c:958
 #, c-format
 msgid "Selecting %s..."
 msgstr ""
 
-#: imap.c:1053 lib.c:1164
+#: imap.c:1054 lib.c:1165
 #, c-format
 msgid "Create %s?"
 msgstr ""
 
-#: imap.c:1097
+#: imap.c:1098
 msgid "Fetching message..."
 msgstr ""
 
-#: imap.c:1205
+#: imap.c:1206
 msgid "Sending APPEND command ..."
 msgstr ""
 
-#: imap.c:1244
+#: imap.c:1245
 msgid "Uploading message ..."
 msgstr ""
 
-#: imap.c:1299
+#: imap.c:1300
 msgid "Closing connection to IMAP server..."
 msgstr ""
 
-#: imap.c:1329
+#: imap.c:1330
 #, c-format
 msgid "Saving message status flags... [%d/%d]"
 msgstr ""
 
-#: imap.c:1355
+#: imap.c:1356
 msgid "Expunging messages from server..."
 msgstr ""
 
 #. tell the server to commit changes
-#: imap.c:1406
+#: imap.c:1407
 msgid "Closing mailbox..."
 msgstr ""
 
-#: init.c:432
+#: init.c:433
 msgid "alias: no address"
 msgstr ""
 
-#: init.c:526
+#: init.c:527
 msgid "invalid header field"
 msgstr ""
 
-#: init.c:534
+#: init.c:535
 #, c-format
 msgid "ignoring empty header field: %s"
 msgstr ""
 
-#: init.c:586
+#: init.c:587
 #, c-format
 msgid "%s: unknown sorting method"
 msgstr ""
 
-#: init.c:659
+#: init.c:660
 #, c-format
 msgid "mutt_restore_default: error in regexp: %s\n"
 msgstr ""
 
-#: init.c:719
+#: init.c:720
 #, c-format
 msgid "%s: unknown variable"
 msgstr ""
 
-#: init.c:728
+#: init.c:729
 msgid "prefix is illegal with reset"
 msgstr ""
 
-#: init.c:734
+#: init.c:735
 msgid "value is illegal with reset"
 msgstr ""
 
-#: init.c:751
+#: init.c:752
 #, c-format
 msgid "%s is a boolean var!"
 msgstr ""
 
-#: init.c:758
+#: init.c:759
 #, c-format
 msgid "%s is set"
 msgstr ""
 
-#: init.c:758
+#: init.c:759
 #, c-format
 msgid "%s is unset"
 msgstr ""
 
-#: init.c:929
+#: init.c:930
 #, c-format
 msgid "%s: invalid mailbox type"
 msgstr ""
 
-#: init.c:988
+#: init.c:989
 #, c-format
 msgid "%s: invalid value"
 msgstr ""
 
-#: init.c:1038
+#: init.c:1039
 #, c-format
 msgid "%s: unknown type"
 msgstr ""
 
-#: init.c:1087
+#: init.c:1088
 #, c-format
 msgid "Error in %s, line %d: %s"
 msgstr ""
 
 #. the muttrc source keyword
-#: init.c:1098
+#: init.c:1099
 #, c-format
 msgid "source: errors in %s"
 msgstr ""
 
-#: init.c:1108
+#: init.c:1109
 #, c-format
 msgid "source: error at %s"
 msgstr ""
 
-#: init.c:1113
+#: init.c:1114
 msgid "source: too many arguments"
 msgstr ""
 
-#: init.c:1164
+#: init.c:1165
 #, c-format
 msgid "%s: unknown command"
 msgstr ""
 
-#: init.c:1469
+#: init.c:1470
 #, c-format
 msgid "Error in command line: %s\n"
 msgstr ""
 
-#: init.c:1512
+#: init.c:1513
 msgid "unable to determine home directory"
 msgstr ""
 
-#: init.c:1520
+#: init.c:1521
 msgid "unable to determine username"
 msgstr ""
 
-#: keymap.c:413
+#: keymap.c:414
 msgid "Macro loop detected."
 msgstr ""
 
-#: keymap.c:599
+#: keymap.c:600
 #, c-format
 msgid "Key is not bound.  Press '%s' for help."
 msgstr ""
 
-#: keymap.c:601
+#: keymap.c:602
 msgid "Key is not bound.  See the manual."
 msgstr ""
 
-#: keymap.c:611
+#: keymap.c:612
 msgid "push: too many arguments"
 msgstr ""
 
-#: keymap.c:632
+#: keymap.c:633
 #, c-format
 msgid "%s: no such menu"
 msgstr ""
 
-#: keymap.c:641
+#: keymap.c:642
 msgid "null key sequence"
 msgstr ""
 
-#: keymap.c:719
+#: keymap.c:720
 msgid "bind: too many arguments"
 msgstr ""
 
-#: keymap.c:734
+#: keymap.c:735
 #, c-format
 msgid "%s: no such function in map"
 msgstr ""
 
-#: keymap.c:757
+#: keymap.c:758
 msgid "macro: empty key sequence"
 msgstr ""
 
-#: keymap.c:768
+#: keymap.c:769
 msgid "macro: too many arguments"
 msgstr ""
 
-#: keymap.c:798
+#: keymap.c:799
 msgid "exec: too few arguments"
 msgstr ""
 
-#: keymap.c:818
+#: keymap.c:819
 #, c-format
 msgid "%s: no such command"
 msgstr ""
@@ -1754,37 +1754,37 @@ msgstr ""
 msgid "make decrypted copy"
 msgstr ""
 
-#: lib.c:275 lib.c:290 lib.c:321
+#: lib.c:276 lib.c:291 lib.c:322
 msgid "Out of memory!"
 msgstr ""
 
-#: lib.c:753
+#: lib.c:754
 msgid "File is a directory, save under it?"
 msgstr ""
 
-#: lib.c:758
+#: lib.c:759
 msgid "File under directory: "
 msgstr ""
 
-#: lib.c:769
+#: lib.c:770
 msgid "File exists, overwrite?"
 msgstr ""
 
-#: lib.c:1142
+#: lib.c:1143
 #, c-format
 msgid "%s is not a mailbox!"
 msgstr ""
 
-#: lib.c:1148
+#: lib.c:1149
 #, c-format
 msgid "Append messages to %s?"
 msgstr ""
 
-#: main.c:35
+#: main.c:36
 msgid "To contact the developers, please mail to <mutt-dev@mutt.org>.\n"
 msgstr ""
 
-#: main.c:38
+#: main.c:39
 msgid ""
 "Copyright (C) 1996-8 Michael R. Elkins and others.\n"
 "Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.\n"
@@ -1792,7 +1792,7 @@ msgid ""
 "under certain conditions; type `mutt -vv' for details.\n"
 msgstr ""
 
-#: main.c:44
+#: main.c:45
 msgid ""
 "Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>\n"
 "Copyright (C) 1997-8 Thomas Roessler <roessler@guug.de>\n"
@@ -1814,7 +1814,7 @@ msgid ""
 "    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n"
 msgstr ""
 
-#: main.c:66
+#: main.c:67
 msgid ""
 "\n"
 "SHA1 implementation Copyright (C) 1995-7 Eric A. Young <eay@cryptsoft.com>\n"
@@ -1830,7 +1830,7 @@ msgid ""
 "    along with this program; if not, write to the program's developers.\n"
 msgstr ""
 
-#: main.c:92
+#: main.c:93
 msgid ""
 "usage: mutt [ -nRzZ ] [ -e <cmd> ] [ -F <file> ] [ -m <type> ] [ -f <file> "
 "]\n"
@@ -1861,53 +1861,53 @@ msgid ""
 "  -h\t\tthis help message"
 msgstr ""
 
-#: main.c:298
+#: main.c:299
 msgid "Error initializing terminal."
 msgstr ""
 
-#: main.c:394
+#: main.c:395
 #, c-format
 msgid "Debugging at level %d.\n"
 msgstr ""
 
-#: main.c:396
+#: main.c:397
 msgid "DEBUG was not defined during compilation.  Ignored.\n"
 msgstr ""
 
-#: main.c:534
+#: main.c:535
 msgid "No recipients specified.\n"
 msgstr ""
 
-#: main.c:607
+#: main.c:608
 #, c-format
 msgid "%s: unable to attach file.\n"
 msgstr ""
 
-#: main.c:627
+#: main.c:628
 msgid "No mailbox with new mail."
 msgstr ""
 
-#: main.c:661
+#: main.c:662
 msgid "Mailbox is empty."
 msgstr ""
 
-#: mbox.c:186
+#: mbox.c:187
 msgid "Mailbox is corrupt!"
 msgstr ""
 
-#: mbox.c:261
+#: mbox.c:262
 msgid "Reading %s... %d (%d%%)"
 msgstr ""
 
-#: mbox.c:626
+#: mbox.c:627
 msgid "Mailbox was corrupted!"
 msgstr ""
 
-#: mbox.c:663 mbox.c:852
+#: mbox.c:664 mbox.c:853
 msgid "Fatal error!  Could not reopen mailbox!"
 msgstr ""
 
-#: mbox.c:672
+#: mbox.c:673
 msgid "Unable to lock mailbox!"
 msgstr ""
 
@@ -1915,737 +1915,737 @@ msgstr ""
 #. * messages were found to be changed or deleted.  This should
 #. * never happen, is we presume it is a bug in mutt.
 #.
-#: mbox.c:711
+#: mbox.c:712
 msgid "sync: mbox modified, but no modified messages! (report this bug)"
 msgstr ""
 
-#: mbox.c:735
+#: mbox.c:736
 msgid "Writing messages... %d (%d%%)"
 msgstr ""
 
-#: mbox.c:837
+#: mbox.c:838
 #, c-format
 msgid "Write failed!  Saved partial mailbox to %s"
 msgstr ""
 
-#: mbox.c:885
+#: mbox.c:886
 msgid "Could not reopen mailbox!"
 msgstr ""
 
-#: menu.c:297
+#: menu.c:298
 msgid "Jump to: "
 msgstr ""
 
-#: menu.c:306
+#: menu.c:307
 msgid "Invalid index number."
 msgstr ""
 
-#: menu.c:310 menu.c:328 menu.c:364 menu.c:405 menu.c:421 menu.c:432
-#: menu.c:443 menu.c:485 menu.c:496 menu.c:509 menu.c:522 menu.c:800
+#: menu.c:311 menu.c:329 menu.c:365 menu.c:406 menu.c:422 menu.c:433
+#: menu.c:444 menu.c:486 menu.c:497 menu.c:510 menu.c:523 menu.c:801
 msgid "No entries."
 msgstr ""
 
-#: menu.c:325
+#: menu.c:326
 msgid "You cannot scroll down farther."
 msgstr ""
 
-#: menu.c:341
+#: menu.c:342
 msgid "You cannot scroll up farther."
 msgstr ""
 
-#: menu.c:361
+#: menu.c:362
 msgid "You are on the last page."
 msgstr ""
 
-#: menu.c:383
+#: menu.c:384
 msgid "You are on the first page."
 msgstr ""
 
-#: menu.c:462
+#: menu.c:463
 msgid "First entry is shown."
 msgstr ""
 
-#: menu.c:482
+#: menu.c:483
 msgid "Last entry is shown."
 msgstr ""
 
-#: menu.c:533
+#: menu.c:534
 msgid "You are on the last entry."
 msgstr ""
 
-#: menu.c:544
+#: menu.c:545
 msgid "You are on the first entry."
 msgstr ""
 
-#: menu.c:584 pattern.c:1020
+#: menu.c:585 pattern.c:1021
 msgid "Search for: "
 msgstr ""
 
-#: menu.c:585
+#: menu.c:586
 msgid "Reverse search for: "
 msgstr ""
 
-#: menu.c:596 pattern.c:1053
+#: menu.c:597 pattern.c:1054
 msgid "No search pattern."
 msgstr ""
 
-#: menu.c:626 pager.c:1769 pager.c:1785 pager.c:1872 pattern.c:1118
+#: menu.c:627 pager.c:1770 pager.c:1786 pager.c:1873 pattern.c:1119
 msgid "Not found."
 msgstr ""
 
-#: menu.c:764
+#: menu.c:765
 msgid "Search is not implemented for this menu."
 msgstr ""
 
-#: menu.c:803
+#: menu.c:804
 msgid "Tagging is not supported."
 msgstr ""
 
-#: mh.c:181
+#: mh.c:182
 #, c-format
 msgid "Reading %s... %d"
 msgstr ""
 
-#: mx.c:113
+#: mx.c:114
 #, c-format
 msgid "Lock count exceeded, remove lock for %s?"
 msgstr ""
 
-#: mx.c:177
+#: mx.c:178
 msgid "Timeout exceeded while attempting fcntl lock!"
 msgstr ""
 
-#: mx.c:183
+#: mx.c:184
 #, c-format
 msgid "Waiting for fcntl lock... %d"
 msgstr ""
 
-#: mx.c:211
+#: mx.c:212
 msgid "Timeout exceeded while attempting flock lock!"
 msgstr ""
 
-#: mx.c:218
+#: mx.c:219
 #, c-format
 msgid "Waiting for flock attempt... %d"
 msgstr ""
 
-#: mx.c:586
+#: mx.c:587
 #, c-format
 msgid "Reading %s..."
 msgstr ""
 
-#: mx.c:673
+#: mx.c:674
 #, c-format
 msgid "Writing %s..."
 msgstr ""
 
-#: mx.c:753
+#: mx.c:754
 #, c-format
 msgid "Move read messages to %s?"
 msgstr ""
 
-#: mx.c:762 mx.c:939
+#: mx.c:763 mx.c:940
 #, c-format
 msgid "Purge %d deleted message?"
 msgstr ""
 
-#: mx.c:762 mx.c:939
+#: mx.c:763 mx.c:940
 #, c-format
 msgid "Purge %d deleted messages?"
 msgstr ""
 
-#: mx.c:782
+#: mx.c:783
 #, c-format
 msgid "Moving read messages to %s..."
 msgstr ""
 
-#: mx.c:798 mx.c:930
+#: mx.c:799 mx.c:931
 msgid "Mailbox is unchanged."
 msgstr ""
 
-#: mx.c:817
+#: mx.c:818
 #, c-format
 msgid "%d kept, %d moved, %d deleted."
 msgstr ""
 
-#: mx.c:820 mx.c:955
+#: mx.c:821 mx.c:956
 #, c-format
 msgid "%d kept, %d deleted."
 msgstr ""
 
-#: mx.c:915
+#: mx.c:916
 #, c-format
 msgid " Press '%s' to toggle write"
 msgstr ""
 
-#: mx.c:917
+#: mx.c:918
 msgid "Use 'toggle-write' to re-enable write!"
 msgstr ""
 
-#: mx.c:919
+#: mx.c:920
 #, c-format
 msgid "Mailbox is marked unwritable. %s"
 msgstr ""
 
-#: mx.c:924
+#: mx.c:925
 msgid "Mailbox is read-only."
 msgstr ""
 
-#: pager.c:1359
+#: pager.c:1360
 msgid "PrevPg"
 msgstr ""
 
-#: pager.c:1360
+#: pager.c:1361
 msgid "NextPg"
 msgstr ""
 
-#: pager.c:1364
+#: pager.c:1365
 msgid "View Attachm."
 msgstr ""
 
-#: pager.c:1367
+#: pager.c:1368
 msgid "Next"
 msgstr ""
 
 #. emulate "less -q" and don't go on to the next message.
-#: pager.c:1681 pager.c:1712 pager.c:1741 pager.c:1960
+#: pager.c:1682 pager.c:1713 pager.c:1742 pager.c:1961
 msgid "Bottom of message is shown."
 msgstr ""
 
-#: pager.c:1697 pager.c:1719 pager.c:1730
+#: pager.c:1698 pager.c:1720 pager.c:1731
 msgid "Top of message is shown."
 msgstr ""
 
-#: pager.c:1803
+#: pager.c:1804
 msgid "Reverse search: "
 msgstr ""
 
-#: pager.c:1804
+#: pager.c:1805
 msgid "Search: "
 msgstr ""
 
-#: pager.c:1898
+#: pager.c:1899
 msgid "Help is currently being shown."
 msgstr ""
 
-#: pager.c:1927
+#: pager.c:1928
 msgid "No more quoted text."
 msgstr ""
 
-#: pager.c:1940
+#: pager.c:1941
 msgid "No more unquoted text after quoted text."
 msgstr ""
 
-#: parse.c:476
+#: parse.c:477
 msgid "multipart message has no boundary parameter!"
 msgstr ""
 
-#: pattern.c:230
+#: pattern.c:231
 #, c-format
 msgid "Error in expression: %s"
 msgstr ""
 
-#: pattern.c:326
+#: pattern.c:327
 #, c-format
 msgid "Invalid day of month: %s"
 msgstr ""
 
-#: pattern.c:340
+#: pattern.c:341
 #, c-format
 msgid "Invalid month: %s"
 msgstr ""
 
-#: pattern.c:394
+#: pattern.c:395
 msgid "error in expression"
 msgstr ""
 
-#: pattern.c:579 pattern.c:687
+#: pattern.c:580 pattern.c:688
 #, c-format
 msgid "error in pattern at: %s"
 msgstr ""
 
-#: pattern.c:627
+#: pattern.c:628
 #, c-format
 msgid "%c: invalid command"
 msgstr ""
 
-#: pattern.c:633
+#: pattern.c:634
 #, c-format
 msgid "%c: not supported in this mode"
 msgstr ""
 
-#: pattern.c:646
+#: pattern.c:647
 msgid "missing parameter"
 msgstr ""
 
-#: pattern.c:662
+#: pattern.c:663
 #, c-format
 msgid "mismatched parenthesis: %s"
 msgstr ""
 
-#: pattern.c:694
+#: pattern.c:695
 msgid "empty pattern"
 msgstr ""
 
-#: pattern.c:847
+#: pattern.c:848
 #, c-format
 msgid "error: unknown op %d (report this error)."
 msgstr ""
 
-#: pattern.c:911 pattern.c:1039
+#: pattern.c:912 pattern.c:1040
 msgid "Compiling search pattern..."
 msgstr ""
 
-#: pattern.c:925
+#: pattern.c:926
 msgid "Executing command on matching messages..."
 msgstr ""
 
-#: pattern.c:982
+#: pattern.c:983
 msgid "No messages matched criteria."
 msgstr ""
 
-#: pattern.c:1077
+#: pattern.c:1078
 msgid "Search hit bottom without finding match"
 msgstr ""
 
-#: pattern.c:1088
+#: pattern.c:1089
 msgid "Search hit top without finding match"
 msgstr ""
 
-#: pattern.c:1110
+#: pattern.c:1111
 msgid "Search interrupted."
 msgstr ""
 
-#: pgp.c:130
+#: pgp.c:131
 msgid "Enter PGP passphrase:"
 msgstr ""
 
-#: pgp.c:146
+#: pgp.c:147
 msgid "PGP passphrase forgotten."
 msgstr ""
 
-#: pgp.c:174
+#: pgp.c:175
 #, c-format
 msgid "Unknown PGP version \"%s\"."
 msgstr ""
 
-#: pgp.c:207
+#: pgp.c:208
 msgid "[-- PGP output follows (current time: "
 msgstr ""
 
-#: pgp.c:320
+#: pgp.c:321
 msgid "[-- Error: unable to create PGP subprocess! --]\n"
 msgstr ""
 
-#: pgp.c:347
+#: pgp.c:348
 msgid ""
 "\n"
 "[-- End of PGP output --]\n"
 "\n"
 msgstr ""
 
-#: pgp.c:476
+#: pgp.c:477
 msgid ""
 "[-- Error: could not find beginning of PGP message! --]\n"
 "\n"
 msgstr ""
 
-#: pgp.c:669 pgp.c:894
+#: pgp.c:670 pgp.c:895
 msgid ""
 "[-- End of PGP output --]\n"
 "\n"
 msgstr ""
 
 #. Now display the signed body
-#: pgp.c:676
+#: pgp.c:677
 msgid ""
 "[-- The following data is PGP/MIME signed --]\n"
 "\n"
 msgstr ""
 
-#: pgp.c:682
+#: pgp.c:683
 msgid ""
 "\n"
 "[-- End of PGP/MIME signed data --]\n"
 msgstr ""
 
-#: pgp.c:687
+#: pgp.c:688
 msgid ""
 "[-- Error: this message does not comply with the PGP/MIME specification! "
 "--]\n"
 "\n"
 msgstr ""
 
-#: pgp.c:801
+#: pgp.c:802
 msgid "Internal error. Inform <roessler@guug.de>."
 msgstr ""
 
-#: pgp.c:865
+#: pgp.c:866
 msgid ""
 "[-- Error: could not create a PGP subprocess! --]\n"
 "\n"
 msgstr ""
 
-#: pgp.c:967
+#: pgp.c:968
 msgid ""
 "[-- Error: malformed PGP/MIME message! --]\n"
 "\n"
 msgstr ""
 
-#: pgp.c:980
+#: pgp.c:981
 msgid "[-- Error: could not create temporary file! --]\n"
 msgstr ""
 
-#: pgp.c:989
+#: pgp.c:990
 msgid ""
 "[-- The following data is PGP/MIME encrypted --]\n"
 "\n"
 msgstr ""
 
-#: pgp.c:997
+#: pgp.c:998
 msgid ""
 "\n"
 "[-- End of PGP/MIME encrypted data --]\n"
 msgstr ""
 
-#: pgp.c:1080
+#: pgp.c:1081
 msgid "Can't open PGP subprocess!"
 msgstr ""
 
-#: pgp.c:1214
+#: pgp.c:1215
 #, c-format
 msgid "Use keyID = \"%s\" for %s?"
 msgstr ""
 
-#: pgp.c:1220
+#: pgp.c:1221
 #, c-format
 msgid "Enter keyID for %s: "
 msgstr ""
 
-#: pgpkey.c:173
+#: pgpkey.c:174
 msgid "Exit  "
 msgstr ""
 
-#: pgpkey.c:175
+#: pgpkey.c:176
 msgid "Select  "
 msgstr ""
 
-#: pgpkey.c:178
+#: pgpkey.c:179
 msgid "Check key  "
 msgstr ""
 
-#: pgpkey.c:191
+#: pgpkey.c:192
 msgid "PGP keys matching "
 msgstr ""
 
-#: pgpkey.c:210 pgpkey.c:387
+#: pgpkey.c:211 pgpkey.c:388
 msgid "Can't open /dev/null"
 msgstr ""
 
-#: pgpkey.c:216 pgpkey.c:381
+#: pgpkey.c:217 pgpkey.c:382
 msgid "Can't create temporary file"
 msgstr ""
 
-#: pgpkey.c:226 pgpkey.c:398
+#: pgpkey.c:227 pgpkey.c:399
 msgid "Can't create filter"
 msgstr ""
 
-#: pgpkey.c:236
+#: pgpkey.c:237
 #, c-format
 msgid "Key ID: 0x%s"
 msgstr ""
 
-#: pgpkey.c:257
+#: pgpkey.c:258
 msgid "This ID's trust level is undefined."
 msgstr ""
 
-#: pgpkey.c:258
+#: pgpkey.c:259
 msgid "This ID is not trusted."
 msgstr ""
 
-#: pgpkey.c:259
+#: pgpkey.c:260
 msgid "This ID is only marginally trusted."
 msgstr ""
 
-#: pgpkey.c:262
+#: pgpkey.c:263
 #, c-format
 msgid "%s Do you really want to use it?"
 msgstr ""
 
-#: pgpkey.c:369
+#: pgpkey.c:370
 msgid "Please enter the key ID: "
 msgstr ""
 
-#: pgpkey.c:416
+#: pgpkey.c:417
 #, c-format
 msgid "PGP Key 0x%s."
 msgstr ""
 
-#: pgppubring.c:58
+#: pgppubring.c:59
 msgid "reserved"
 msgstr ""
 
-#: pgppubring.c:59
+#: pgppubring.c:60
 msgid "Encrypted Session Key"
 msgstr ""
 
-#: pgppubring.c:60
+#: pgppubring.c:61
 msgid "Signature Packet"
 msgstr ""
 
-#: pgppubring.c:61
+#: pgppubring.c:62
 msgid "Conventionally Encrypted Session Key Packet"
 msgstr ""
 
-#: pgppubring.c:62
+#: pgppubring.c:63
 msgid "One-Pass Signature Packet"
 msgstr ""
 
-#: pgppubring.c:63
+#: pgppubring.c:64
 msgid "Secret Key Packet"
 msgstr ""
 
-#: pgppubring.c:64
+#: pgppubring.c:65
 msgid "Public Key Packet"
 msgstr ""
 
-#: pgppubring.c:65
+#: pgppubring.c:66
 msgid "Secret Subkey Packet"
 msgstr ""
 
-#: pgppubring.c:66
+#: pgppubring.c:67
 msgid "Compressed Data Packet"
 msgstr ""
 
-#: pgppubring.c:67
+#: pgppubring.c:68
 msgid "Symmetrically Encrypted Data Packet"
 msgstr ""
 
-#: pgppubring.c:68
+#: pgppubring.c:69
 msgid "Marker Packet"
 msgstr ""
 
-#: pgppubring.c:69
+#: pgppubring.c:70
 msgid "Literal Data Packet"
 msgstr ""
 
-#: pgppubring.c:70
+#: pgppubring.c:71
 msgid "Trust Packet"
 msgstr ""
 
-#: pgppubring.c:71
+#: pgppubring.c:72
 msgid "Name Packet"
 msgstr ""
 
-#: pgppubring.c:72
+#: pgppubring.c:73
 msgid "Subkey Packet"
 msgstr ""
 
-#: pgppubring.c:73
+#: pgppubring.c:74
 msgid "Reserved"
 msgstr ""
 
-#: pgppubring.c:74
+#: pgppubring.c:75
 msgid "Comment Packet"
 msgstr ""
 
-#: pop.c:66
+#: pop.c:67
 msgid "POP Password: "
 msgstr ""
 
-#: pop.c:91
+#: pop.c:92
 msgid "POP host is not defined."
 msgstr ""
 
-#: pop.c:97
+#: pop.c:98
 msgid "No POP username is defined."
 msgstr ""
 
-#: pop.c:114
+#: pop.c:115
 #, c-format
 msgid "Could not find address for host %s."
 msgstr ""
 
-#: pop.c:122
+#: pop.c:123
 #, c-format
 msgid "Connecting to %s"
 msgstr ""
 
-#: pop.c:166 pop.c:331
+#: pop.c:167 pop.c:332
 msgid "Server closed connection!"
 msgstr ""
 
-#: pop.c:187
+#: pop.c:188
 msgid "No new mail in POP mailbox."
 msgstr ""
 
-#: pop.c:209
+#: pop.c:210
 #, c-format
 msgid "Reading %d new message (%d bytes)..."
 msgstr ""
 
-#: pop.c:245
+#: pop.c:246
 msgid "Error reading message!"
 msgstr ""
 
-#: pop.c:281
+#: pop.c:282
 msgid "Error while writing mailbox!"
 msgstr ""
 
-#: pop.c:305
+#: pop.c:306
 #, c-format
 msgid "%s [%d messages read]"
 msgstr ""
 
-#: postpone.c:111
+#: postpone.c:112
 msgid "Postponed Messages"
 msgstr ""
 
-#: postpone.c:182 postpone.c:191
+#: postpone.c:183 postpone.c:192
 msgid "No postponed messages."
 msgstr ""
 
-#: postpone.c:319 postpone.c:339 postpone.c:348
+#: postpone.c:320 postpone.c:340 postpone.c:349
 msgid "Illegal PGP header"
 msgstr ""
 
-#: query.c:45
+#: query.c:46
 msgid "New Query"
 msgstr ""
 
-#: query.c:46
+#: query.c:47
 msgid "Make Alias"
 msgstr ""
 
-#: query.c:47
+#: query.c:48
 msgid "Search"
 msgstr ""
 
-#: query.c:91
+#: query.c:92
 msgid "Waiting for response..."
 msgstr ""
 
-#: query.c:192 query.c:217
+#: query.c:193 query.c:218
 msgid "Query command not defined."
 msgstr ""
 
-#: query.c:244
+#: query.c:245
 msgid "Query"
 msgstr ""
 
 #. Prompt for Query
-#: query.c:257 query.c:285
+#: query.c:258 query.c:286
 msgid "Query: "
 msgstr ""
 
-#: query.c:268 query.c:294
+#: query.c:269 query.c:295
 #, c-format
 msgid "Query '%s'"
 msgstr ""
 
-#: recvattach.c:49
+#: recvattach.c:50
 msgid "Pipe"
 msgstr ""
 
-#: recvattach.c:50
+#: recvattach.c:51
 msgid "Print"
 msgstr ""
 
-#: recvattach.c:309
+#: recvattach.c:310
 msgid "Saving..."
 msgstr ""
 
-#: recvattach.c:370
+#: recvattach.c:371
 msgid "Attachment saved"
 msgstr ""
 
-#: recvattach.c:382
+#: recvattach.c:383
 #, c-format
 msgid "WARNING!  You are about to overwrite %s, continue?"
 msgstr ""
 
-#: recvattach.c:400
+#: recvattach.c:401
 msgid "Attachment filtered."
 msgstr ""
 
-#: recvattach.c:466
+#: recvattach.c:467
 msgid "Filter through: "
 msgstr ""
 
-#: recvattach.c:466
+#: recvattach.c:467
 msgid "Pipe to: "
 msgstr ""
 
-#: recvattach.c:501
+#: recvattach.c:502
 #, c-format
 msgid "I dont know how to print %s attachments!"
 msgstr ""
 
-#: recvattach.c:564
+#: recvattach.c:565
 msgid "Print tagged attachment(s)?"
 msgstr ""
 
-#: recvattach.c:564
+#: recvattach.c:565
 msgid "Print attachment?"
 msgstr ""
 
-#: recvattach.c:592
+#: recvattach.c:593
 msgid "You may only bounce message/rfc822 parts."
 msgstr ""
 
-#: recvattach.c:625
+#: recvattach.c:626
 #, c-format
 msgid "Bounce messages to %s...?"
 msgstr ""
 
-#: recvattach.c:626
+#: recvattach.c:627
 #, c-format
 msgid "Bounce message to %s...?"
 msgstr ""
 
-#: recvattach.c:851
+#: recvattach.c:852
 msgid "Attachments"
 msgstr ""
 
-#: recvattach.c:906
+#: recvattach.c:907
 msgid "Only deletion of multipart attachments is supported."
 msgstr ""
 
-#: recvattach.c:914
+#: recvattach.c:915
 msgid "Deletion of attachments from PGP messages is unsupported."
 msgstr ""
 
-#: recvattach.c:990
+#: recvattach.c:991
 msgid "This operation is not currently supported for PGP messages."
 msgstr ""
 
-#: rfc1524.c:157
+#: rfc1524.c:158
 #, c-format
 msgid "Improperly formated entry for type %s in \"%s\" line %d"
 msgstr ""
 
-#: rfc1524.c:389
+#: rfc1524.c:390
 msgid "No mailcap path specified"
 msgstr ""
 
-#: rfc1524.c:415
+#: rfc1524.c:416
 #, c-format
 msgid "mailcap entry for type %s not found"
 msgstr ""
 
-#: score.c:71
+#: score.c:72
 msgid "score: too few arguments"
 msgstr ""
 
-#: score.c:80
+#: score.c:81
 msgid "score: too many arguments"
 msgstr ""
 
-#: send.c:229
+#: send.c:230
 msgid "No subject, abort?"
 msgstr ""
 
-#: send.c:231
+#: send.c:232
 msgid "No subject, aborting."
 msgstr ""
 
@@ -2654,7 +2654,7 @@ msgstr ""
 #. * to send a message to only the sender of the message.  This
 #. * provides a way to do that.
 #.
-#: send.c:424
+#: send.c:425
 #, c-format
 msgid "Reply to %s?"
 msgstr ""
@@ -2662,124 +2662,124 @@ msgstr ""
 #. This could happen if the user tagged some messages and then did
 #. * a limit such that none of the tagged message are visible.
 #.
-#: send.c:507
+#: send.c:508
 msgid "No tagged messages are visible!"
 msgstr ""
 
-#: send.c:532
+#: send.c:533
 msgid "No mailing lists found!"
 msgstr ""
 
-#: send.c:619
+#: send.c:620
 msgid "Include message in reply?"
 msgstr ""
 
-#: send.c:633
+#: send.c:634
 msgid "Could not include all requested messages!"
 msgstr ""
 
-#: send.c:646
+#: send.c:647
 msgid "Forward MIME encapsulated?"
 msgstr ""
 
 #. If the user is composing a new message, check to see if there
 #. * are any postponed messages first.
 #.
-#: send.c:857
+#: send.c:858
 msgid "Recall postponed message?"
 msgstr ""
 
-#: send.c:1087
+#: send.c:1088
 msgid "Abort unmodified message?"
 msgstr ""
 
-#: send.c:1089
+#: send.c:1090
 msgid "Aborted unmodified message."
 msgstr ""
 
 #. abort
-#: send.c:1127
+#: send.c:1128
 msgid "Mail not sent."
 msgstr ""
 
-#: send.c:1140
+#: send.c:1141
 msgid "Message postponed."
 msgstr ""
 
-#: send.c:1149
+#: send.c:1150
 msgid "No recipients are specified!"
 msgstr ""
 
-#: send.c:1154
+#: send.c:1155
 msgid "No recipients were specified."
 msgstr ""
 
-#: send.c:1160
+#: send.c:1161
 msgid "No subject, abort sending?"
 msgstr ""
 
-#: send.c:1164
+#: send.c:1165
 msgid "No subject specified."
 msgstr ""
 
-#: send.c:1203
+#: send.c:1204
 msgid "Message edited. Really send?"
 msgstr ""
 
-#: send.c:1209
+#: send.c:1210
 msgid "Sending message..."
 msgstr ""
 
-#: send.c:1309
+#: send.c:1310
 msgid "Mail sent."
 msgstr ""
 
-#: sendlib.c:408
+#: sendlib.c:409
 msgid "No boundary parameter found! [report this error]"
 msgstr ""
 
-#: sendlib.c:442
+#: sendlib.c:443
 #, c-format
 msgid "%s no longer exists!"
 msgstr ""
 
-#: sendlib.c:695
+#: sendlib.c:696
 #, c-format
 msgid "Could not open %s"
 msgstr ""
 
-#: sendlib.c:1622
+#: sendlib.c:1623
 #, c-format
 msgid "Error sending message, child exited %d (%s).\n"
 msgstr ""
 
-#: sendlib.c:1624
+#: sendlib.c:1625
 #, c-format
 msgid "Saved output of child process to %s.\n"
 msgstr ""
 
-#: sendlib.c:1628
+#: sendlib.c:1629
 msgid "Error sending message."
 msgstr ""
 
-#: signal.c:38 signal.c:41
+#: signal.c:39 signal.c:42
 #, c-format
 msgid "Caught %s...  Exiting.\n"
 msgstr ""
 
-#: signal.c:43
+#: signal.c:44
 #, c-format
 msgid "Caught signal %d...  Exiting.\n"
 msgstr ""
 
-#: sort.c:198
+#: sort.c:199
 msgid "Sorting mailbox..."
 msgstr ""
 
-#: sort.c:226
+#: sort.c:227
 msgid "Could not find sorting function! [report this bug]"
 msgstr ""
 
-#: status.c:101
+#: status.c:102
 msgid "(no mailbox)"
 msgstr ""
index 5d7417b963140942437993a7b4cba0158da40a9d..bed5d87436bcd6ae35327416b6b4fa852fb83d8e 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,11 +1,10 @@
 #
 # $Id$
 #
-
 msgid ""
 msgstr ""
 "Project-Id-Version: 1.0\n"
-"POT-Creation-Date: 1998-10-13 08:56+0200\n"
+"POT-Creation-Date: 1998-10-13 23:47+0200\n"
 "PO-Revision-Date: 1998-10-12 21:14+0300\n"
 "Last-Translator: Andrej N. Gritsenko <andrej@lucky.net>\n"
 "Language-Team: Mutt-dev <mutt-dev@mutt.org>\n"
@@ -13,709 +12,709 @@ msgstr ""
 "Content-Type: text/plain; charset=koi8-r\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: addrbook.c:31 browser.c:53 pager.c:1358 postpone.c:32 query.c:43
-#: recvattach.c:47
+#: addrbook.c:32 browser.c:54 pager.c:1359 postpone.c:33 query.c:44
+#: recvattach.c:48
 msgid "Exit"
 msgstr "÷ÙÈÏÄ"
 
-#: addrbook.c:32
+#: addrbook.c:33
 msgid "Select"
 msgstr "÷ÙÂÏÒ"
 
-#: addrbook.c:33 browser.c:56 compose.c:70 curs_main.c:234 pager.c:1454
-#: pgpkey.c:180 postpone.c:35 query.c:48 recvattach.c:51
+#: addrbook.c:34 browser.c:57 compose.c:71 curs_main.c:235 pager.c:1455
+#: pgpkey.c:181 postpone.c:36 query.c:49 recvattach.c:52
 msgid "Help"
 msgstr "ðÏÄÓËÁÚËÁ"
 
-#: addrbook.c:131
+#: addrbook.c:132
 msgid "You have no aliases!"
 msgstr "áÌÉÁÓÏ× ÎÅ ÎÁÊÄÅÎÏ!"
 
-#: addrbook.c:143
+#: addrbook.c:144
 msgid "Aliases"
 msgstr "áÌÉÁÓÙ"
 
 #. add a new alias
-#: alias.c:192
+#: alias.c:193
 msgid "Alias as: "
 msgstr "áÌÉÁÓ: "
 
-#: alias.c:198
+#: alias.c:199
 msgid "You already have an alias defined with that name!"
 msgstr "õ ×ÁÓ ÕÖÅ ÅÓÔØ ÁÌÉÁÓ Ó ÜÔÉÍ ÉÍÅÎÅÍ!"
 
-#: alias.c:212
+#: alias.c:213
 msgid "Address: "
 msgstr "áÄÒÅÓ: "
 
-#: alias.c:228
+#: alias.c:229
 msgid "Personal name: "
 msgstr "ðÏÌÎÏÅ ÉÍÑ: "
 
-#: alias.c:237
+#: alias.c:238
 #, c-format
 msgid "[%s = %s] Accept?"
 msgstr "[%s = %s] ÷ÅÒÎÏ?"
 
-#: alias.c:254 recvattach.c:282 recvattach.c:337
+#: alias.c:255 recvattach.c:283 recvattach.c:338
 msgid "Save to file: "
 msgstr "úÁÐÉÓÁÔØ × ÆÁÊÌ: "
 
-#: alias.c:265
+#: alias.c:266
 msgid "Alias added."
 msgstr "áÌÉÁÓ ÓÏÈÒÁΣÎ."
 
-#: attach.c:111 attach.c:234 attach.c:366 attach.c:807
+#: attach.c:112 attach.c:235 attach.c:367 attach.c:808
 msgid "Can't match nametemplate, continue?"
 msgstr "îÅÔ ÐÏÄÈÏÄÑÝÅÇÏ ÉÍÅÎÉ, ÐÒÏÄÏÌÖÉÔØ?"
 
 #. For now, editing requires a file, no piping
-#: attach.c:123
+#: attach.c:124
 msgid "Mailcap compose entry requires %%s"
 msgstr "úÁÐÉÓØ × mailcap ÔÒÅÂÕÅÔ %%s"
 
-#: attach.c:137
+#: attach.c:138
 msgid "Failure to open file to parse headers."
 msgstr "îÅ ÕÄÁ£ÔÓÑ ÏÔËÒÙÔØ ÆÁÊÌ ÄÌÑ ÒÁÚÂÏÒÁ ÚÁÇÏÌÏ×ËÁ."
 
-#: attach.c:168
+#: attach.c:169
 msgid "Failure to open file to strip headers."
 msgstr "îÅ ÕÄÁ£ÔÓÑ ÏÔËÒÙÔØ ÆÁÊÌ ÄÌÑ ÕÓÅÞÅÎÉÑ ÚÁÇÏÌÏ×ËÁ."
 
-#: attach.c:186
+#: attach.c:187
 #, c-format
 msgid "No mailcap compose entry for %s, creating empty file."
 msgstr "îÅÔ ÚÁÐÉÓÉ ÄÌÑ %s × mailcap, ÐÏÌÕÞÅΠÐÕÓÔÏÊ ÆÁÊÌ."
 
 #. For now, editing requires a file, no piping
-#: attach.c:246
+#: attach.c:247
 msgid "Mailcap Edit entry requires %%s"
 msgstr "úÁÐÉÓØ ÒÅÄÁËÔÉÒÏ×ÁÎÉÑ × mailcap ÔÒÅÂÕÅÔ %%s"
 
-#: attach.c:264
+#: attach.c:265
 #, c-format
 msgid "No mailcap edit entry for %s"
 msgstr "îÅÔ ÚÁÐÉÓÉ ÒÅÄÁËÔÉÒÏ×ÁÎÉÑ × mailcap ÄÌÑ %s"
 
-#: attach.c:332
+#: attach.c:333
 msgid "No matching mailcap entry found.  Viewing as text."
 msgstr "îÅÔ ÐÏÄÈÏÄÑÝÅÊ ÚÁÐÉÓÉ × mailcap. ïÔÏÂÒÁÖÁÅÔÓÑ ËÁË ÔÅËÓÔ."
 
-#: attach.c:345
+#: attach.c:346
 msgid "MIME type not defined.  Cannot view attachment."
 msgstr "ôÉРMIME ÎÅ ÏÐÒÅÄÅÌ£Î. ðÒÉÓÏÅÄÉÎÅÎÉÅ ÎÅ ÏÔÏÂÒÁÖÁÅÍÏ."
 
-#: attach.c:435
+#: attach.c:436
 msgid "Cannot create filter"
 msgstr "îÅÌØÚÑ ÓÏÚÄÁÔØ ÆÉÌØÔÒ"
 
-#: attach.c:636 recvattach.c:312
+#: attach.c:637 recvattach.c:313
 msgid "Attachment saved."
 msgstr "ðÒÉÓÏÅÄÉÎÅÎÉÅ ÓÏÈÒÁÎÅÎÏ."
 
-#: attach.c:689
+#: attach.c:690
 msgid "Write fault!"
 msgstr "ïÛÉÂËÁ ÚÁÐÉÓÉ!"
 
-#: attach.c:891
+#: attach.c:892
 msgid "I don't know how to print that!"
 msgstr "îÅ ÚÎÁÀ, ËÁË ÜÔÏ ÐÅÞÁÔÁÔØ!"
 
-#: browser.c:54
+#: browser.c:55
 msgid "Chdir"
 msgstr "óÍÅÎÁ ËÁÔÁÌÏÇÁ"
 
-#: browser.c:55
+#: browser.c:56
 msgid "Mask"
 msgstr "íÁÓËÁ"
 
-#: browser.c:344 browser.c:669
+#: browser.c:345 browser.c:670
 #, c-format
 msgid "%s is not a directory."
 msgstr "%s - ÎÅ ËÁÔÁÌÏÇ."
 
-#: browser.c:447
+#: browser.c:448
 #, c-format
 msgid "Mailboxes [%d]"
 msgstr "ðÏÞÔÏ×ÙÅ ÑÝÉËÉ [%d]"
 
-#: browser.c:452
+#: browser.c:453
 #, c-format
 msgid "Directory [%s], File mask: %s"
 msgstr "ëÁÔÁÌÏÇ [%s], ÛÁÂÌÏΠÆÁÊÌÏ×: %s"
 
-#: browser.c:536 browser.c:726 browser.c:825
+#: browser.c:537 browser.c:727 browser.c:826
 msgid "No files match the file mask"
 msgstr "îÅÔ ÆÁÊÌÏ×, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÈ ÛÁÂÌÏÎÕ"
 
-#: browser.c:643
+#: browser.c:644
 msgid "Chdir to: "
 msgstr "ðÅÒÅÊÔÉ × ËÁÔÁÌÏÇ: "
 
-#: browser.c:662 browser.c:719
+#: browser.c:663 browser.c:720
 msgid "Error scanning directory."
 msgstr "ïÛÉÂËÁ ÐÒÏÓÍÏÔÒÁ ËÁÔÁÌÏÇÁ."
 
-#: browser.c:680
+#: browser.c:681
 msgid "File Mask: "
 msgstr "ûÁÂÌÏΠÆÁÊÌÏ×: "
 
-#: browser.c:745
+#: browser.c:746
 msgid "Reverse sort by (d)ate, (a)lpha, si(z)e or do(n)'t sort? "
 msgstr ""
 "ïÂÒÁÔÎÁÑ ÓÏÒÔÉÒÏ×ËÁ ÐÏ ÄÁÔÅ(d), ÁÌÆÁ×ÉÔÕ(a), ÒÁÚÍÅÒÕ(z) ÉÌÉ ÂÅÚ ÎÅ£(n)? "
 
-#: browser.c:747
+#: browser.c:748
 msgid "Sort by (d)ate, (a)lpha, si(z)e or do(n)'t sort? "
 msgstr "óÏÒÔÉÒÏ×ËÁ ÐÏ ÄÁÔÅ(d), ÁÌÆÁ×ÉÔÕ(a), ÒÁÚÍÅÒÕ(z) ÉÌÉ ÂÅÚ ÎÅ£(n)? "
 
-#: browser.c:812
+#: browser.c:813
 msgid "New file name: "
 msgstr "îÏ×ÏÅ ÉÍÑ ÆÁÊÌÁ: "
 
-#: browser.c:833
+#: browser.c:834
 msgid "Can't view a directory"
 msgstr "îÅÌØÚÑ ÐÒÏÓÍÏÔÒÅÔØ ËÁÔÁÌÏÇ"
 
-#: browser.c:851
+#: browser.c:852
 msgid "Error trying to view file"
 msgstr "ïÛÉÂËÁ ÐÏÐÙÔËÉ ÐÒÏÓÍÏÔÒÁ ÆÁÊÌÁ"
 
-#: buffy.c:357
+#: buffy.c:358
 #, c-format
 msgid "New mail in %s."
 msgstr "ðÒÉÛÌÁ ÎÏ×ÁÑ ÐÏÞÔÁ × %s."
 
-#: color.c:306
+#: color.c:307
 #, c-format
 msgid "%s: color not supported by term"
 msgstr "ã×ÅÔ '%s' ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÔÅÒÍÉÎÁÌÏÍ"
 
-#: color.c:312
+#: color.c:313
 #, c-format
 msgid "%s: no such color"
 msgstr "ã×ÅÔ '%s' ÎÅ ÓÕÝÅÓÔ×ÕÅÔ"
 
-#: color.c:358 color.c:541 color.c:552
+#: color.c:359 color.c:542 color.c:553
 #, c-format
 msgid "%s: no such object"
 msgstr "îÅÔ ÏÂßÅËÔÁ '%s'"
 
-#: color.c:365
+#: color.c:366
 #, c-format
 msgid "%s: command valid only for index object"
 msgstr "ëÏÍÁÎÄÁ '%s' ÄÏÐÕÓÔÉÍÁ ÔÏÌØËÏ ÄÌÑ ÏÂßÅËÔÏ× ÓÐÉÓËÁ"
 
-#: color.c:373
+#: color.c:374
 #, c-format
 msgid "%s: too few arguments"
 msgstr "óÌÉÛËÏÍ ÍÁÌÏ ÁÒÇÕÍÅÎÔÏ× × '%s'"
 
-#: color.c:529
+#: color.c:530
 msgid "Missing arguments."
 msgstr "áÒÇÕÍÅÎÔÙ ÐÒÏÐÕÝÅÎÙ."
 
-#: color.c:568 color.c:579
+#: color.c:569 color.c:580
 msgid "color: too few arguments"
 msgstr "color: ÓÌÉÛËÏÍ ÍÁÌÏ ÁÒÇÕÍÅÎÔÏ×"
 
-#: color.c:602
+#: color.c:603
 msgid "mono: too few arguments"
 msgstr "mono: ÓÌÉÛËÏÍ ÍÁÌÏ ÁÒÇÕÍÅÎÔÏ×"
 
-#: color.c:622
+#: color.c:623
 #, c-format
 msgid "%s: no such attribute"
 msgstr "áÔÒÉÂÕÔ '%s' ÎÅ ÓÕÝÅÓÔ×ÕÅÔ"
 
-#: color.c:662 hook.c:61 hook.c:69 keymap.c:649
+#: color.c:663 hook.c:62 hook.c:70 keymap.c:650
 msgid "too few arguments"
 msgstr "ÓÌÉÛËÏÍ ÍÁÌÏ ÁÒÇÕÍÅÎÔÏ×"
 
-#: color.c:671 hook.c:75
+#: color.c:672 hook.c:76
 msgid "too many arguments"
 msgstr "ÓÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ×"
 
-#: color.c:685
+#: color.c:686
 msgid "default colors not supported"
 msgstr "Ã×ÅÔÁ default ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ"
 
-#: commands.c:122
+#: commands.c:123
 msgid "Display message using mailcap?"
 msgstr "ðÒÏÓÍÏÔÒÅÔØ ÓÏÏÂÝÅÎÉÅ ÞÅÒÅÚ mailcap?"
 
-#: commands.c:153 commands.c:161 pgpkey.c:220
+#: commands.c:154 commands.c:162 pgpkey.c:221
 msgid "Invoking PGP..."
 msgstr "÷ÙÚÏ× PGP..."
 
 #. find out whether or not the verify signature
-#: commands.c:158
+#: commands.c:159
 msgid "Verify PGP signature?"
 msgstr "ðÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ PGP?"
 
-#: commands.c:176 mbox.c:695
+#: commands.c:177 mbox.c:696
 msgid "Could not create temporary file!"
 msgstr "îÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ!"
 
-#: commands.c:224
+#: commands.c:225
 msgid "Command: "
 msgstr "ëÏÍÁÎÄÁ: "
 
-#: commands.c:257
+#: commands.c:258
 msgid "Error parsing address!"
 msgstr "ïÛÉÂËÁ ÒÁÚÂÏÒÁ ÁÄÒÅÓÁ!"
 
-#: commands.c:267
+#: commands.c:268
 #, c-format
 msgid "Bounce message to %s"
 msgstr "ðÅÒÅÐÒÁ×ÉÔØ ÓÏÏÂÝÅÎÉÅ %s"
 
-#: commands.c:267
+#: commands.c:268
 #, c-format
 msgid "Bounce messages to %s"
 msgstr "ðÅÒÅÐÒÁ×ÉÔØ ÓÏÏÂÝÅÎÉÑ %s"
 
-#: commands.c:278
+#: commands.c:279
 msgid "Message bounced."
 msgstr "óÏÏÂÝÅÎÉÅ ÐÅÒÅÐÒÁ×ÌÅÎÏ."
 
-#: commands.c:278
+#: commands.c:279
 msgid "Messages bounced."
 msgstr "óÏÏÂÝÅÎÉÑ ÐÅÒÅÐÒÁ×ÌÅÎÙ."
 
-#: commands.c:298
+#: commands.c:299
 msgid "Pipe to command: "
 msgstr "ïÔÐÒÁ×ÉÔØ Ë ËÏÎ×ÅÊÅÒ: "
 
-#: commands.c:403
+#: commands.c:404
 msgid ""
 "Rev-Sort (d)ate/(f)rm/(r)ecv/(s)ubj/t(o)/(t)hread/(u)nsort/si(z)e/s(c)ore?: "
 msgstr ""
 
-#: commands.c:404
+#: commands.c:405
 msgid ""
 "Sort (d)ate/(f)rm/(r)ecv/(s)ubj/t(o)/(t)hread/(u)nsort/si(z)e/s(c)ore?: "
 msgstr ""
 
-#: commands.c:459
+#: commands.c:460
 msgid "Shell command: "
 msgstr "ëÏÍÁÎÄÁ shell: "
 
-#: commands.c:575
+#: commands.c:576
 #, c-format
 msgid "%s%s to mailbox"
 msgstr "%s%s × ÐÏÞÔÏ×ÙÊ ÑÝÉË"
 
-#: commands.c:576
+#: commands.c:577
 msgid "Decode-save"
 msgstr "òÁÓËÏÄ. É ÕÄÁÌ."
 
-#: commands.c:576
+#: commands.c:577
 msgid "Decode-copy"
 msgstr "òÁÓËÏÄÉÒÏ×ÁÔØ"
 
-#: commands.c:577
+#: commands.c:578
 msgid "Decrypt-save"
 msgstr "òÁÓÛÉÆÒ. É ÕÄÁÌ."
 
-#: commands.c:577
+#: commands.c:578
 msgid "Decrypt-copy"
 msgstr "òÁÓÛÉÆÒÏ×ÁÔØ"
 
-#: commands.c:578 curs_main.c:230 recvattach.c:48
+#: commands.c:579 curs_main.c:231 recvattach.c:49
 msgid "Save"
 msgstr "óÏÈÒ."
 
-#: commands.c:578
+#: commands.c:579
 msgid "Copy"
 msgstr "ëÏÐÉÒÏ×."
 
-#: commands.c:578
+#: commands.c:579
 msgid " tagged"
 msgstr " ÏÔÍÅÞÅÎÎÏÅ"
 
-#: commands.c:647
+#: commands.c:648
 #, c-format
 msgid "Copying to %s..."
 msgstr "ëÏÐÉÒÕÅÔÓÑ × %s..."
 
-#: commands.c:719
+#: commands.c:720
 msgid "Print message?"
 msgstr "ðÅÞÁÔÁÔØ ÓÏÏÂÝÅÎÉÅ?"
 
-#: commands.c:719
+#: commands.c:720
 msgid "Print tagged messages?"
 msgstr "ðÅÞÁÔÁÔØ ÏÔÍÅÞÅÎÎÙÅ ÓÏÏÂÝÅÎÉÑ?"
 
-#: commands.c:746
+#: commands.c:747
 msgid "Message printed"
 msgstr "óÏÏÂÝÅÎÉÅ ÎÁÐÅÞÁÔÁÎÏ"
 
-#: commands.c:746
+#: commands.c:747
 msgid "Messages printed"
 msgstr "óÏÏÂÝÅÎÉÑ ÎÁÐÅÞÁÔÁÎÙ"
 
-#: compose.c:63
+#: compose.c:64
 msgid "Send"
 msgstr "ïÔÐÒÁ×ÉÔØ"
 
-#: compose.c:64
+#: compose.c:65
 msgid "Abort"
 msgstr "ïÔÍÅÎÁ"
 
-#: compose.c:68 compose.c:606
+#: compose.c:69 compose.c:607
 msgid "Attach file"
 msgstr "ðÒÉÓÏÅÄÉÎ."
 
-#: compose.c:69
+#: compose.c:70
 msgid "Descrip"
 msgstr "ïÐÉÓÁÎÉÅ"
 
-#: compose.c:97
+#: compose.c:98
 msgid ""
 "(e)ncrypt, (s)ign, sign (a)s, (b)oth, select (m)ic algorithm, or (f)orget "
 "it? "
 msgstr ""
 
-#: compose.c:115
+#: compose.c:116
 msgid "Can't open your secret key ring!"
 msgstr "÷ÁÛ ÓÅËÒÅÔÎÙÊ ËÌÀÞ ÎÅ ÏÔËÒÙ×ÁÅÔÓÑ!"
 
-#: compose.c:120
+#: compose.c:121
 msgid "Sign as: "
 msgstr "ðÏÄÐÉÓÁÔØ ËÁË: "
 
-#: compose.c:139
+#: compose.c:140
 msgid "An unkown PGP version was defined for signing."
 msgstr "îÅÉÚ×ÅÓÔÎÁÑ ×ÅÒÓÉÑ PGP ÄÌÑ ÐÏÄÐÉÓÉ."
 
-#: compose.c:145
+#: compose.c:146
 msgid "This doesn't make sense if you don't want to sign the message."
 msgstr "üÔÏ ÂÅÓÓÍÙÓÌÅÎÎÏ, ÅÓÌÉ ÷Ù ÎÅ ÈÏÔÉÔÅ ÐÏÄÐÉÓÙ×ÁÔØ ÓÏÏÂÝÅÎÉÅ."
 
-#: compose.c:151 compose.c:287
+#: compose.c:152 compose.c:288
 msgid "MIC algorithm: "
 msgstr "áÌÇÏÒÉÔÍ MIC: "
 
-#: compose.c:156
+#: compose.c:157
 msgid "Unknown MIC algorithm, valid ones are: pgp-md5, pgp-sha1, pgp-rmd160"
 msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÁÌÇÏÒÉÔÍ MIC, ÄÏÐÕÓÔÉÍÙ: pgp-md5, pgp-sha1, pgp-rmd160"
 
-#: compose.c:200
+#: compose.c:201
 #, c-format
 msgid "%s [#%d] no longer exists!"
 msgstr "%s [#%d] ÂÏÌØÛÅ ÎÅ ÓÕÝÅÓÔ×ÕÅÔ!"
 
-#: compose.c:208
+#: compose.c:209
 #, c-format
 msgid "%s [#%d] modified. Update encoding?"
 msgstr "%s [#%d] ÉÚÍÅÎÅÎ. ïÂÎÏ×ÉÔØ ËÏÄÉÒÏ×ËÕ?"
 
-#: compose.c:270
+#: compose.c:271
 msgid "Sign, Encrypt"
 msgstr "ðÏÄÐÉÓØ, ÛÉÆÒÏ×ÁÎÉÅ"
 
-#: compose.c:272
+#: compose.c:273
 msgid "Encrypt"
 msgstr "ûÉÆÒÏ×ÁÎÉÅ"
 
-#: compose.c:274
+#: compose.c:275
 msgid "Sign"
 msgstr "ðÏÄÐÉÓØ"
 
-#: compose.c:276
+#: compose.c:277
 msgid "Clear"
 msgstr "îÉÞÅÇÏ"
 
-#: compose.c:281
+#: compose.c:282
 msgid " sign as: "
 msgstr " ÐÏÄÐÉÓÁÔØ ËÁË: "
 
-#: compose.c:285
+#: compose.c:286
 msgid "<default>"
 msgstr "<ÐÏ ÕÍÏÌÞÁÎÉÀ>"
 
-#: compose.c:376
+#: compose.c:377
 msgid "You may not delete the only attachment."
 msgstr "óÏÏÂÝÅÎÉÅ ÎÅ ÍÏÖÅÔ ÓÏÄÅÒÖÁÔØ ÎÉ ÏÄÎÏÊ ÞÁÓÔÉ."
 
-#: compose.c:450
+#: compose.c:451
 msgid "Compose"
 msgstr "ëÏÍÐÏÎÏ×ËÁ"
 
-#: compose.c:611
+#: compose.c:612
 msgid "Open mailbox to attach message from"
 msgstr "ðÏÞÔÏ×ÙÊ ÑÝÉË ÄÌÑ ÐÒÉÓÏÅÄÉÎÅÎÉÑ ÓÏÏÂÝÅÎÉÑ"
 
-#: compose.c:650
+#: compose.c:651
 msgid "No messages in that folder."
 msgstr "ðÁÐËÁ ÎÅ ÓÏÄÅÒÖÉÔ ÎÉ ÏÄÎÏÇÏ ÓÏÏÂÝÅÎÉÑ."
 
-#: compose.c:657
+#: compose.c:658
 msgid "Tag the messages you want to attach!"
 msgstr "ïÔÍÅÔØÔÅ ÓÏÏÂÝÅÎÉÑ ÄÌÑ ÐÒÉÓÏÅÄÉÎÅÎÉÑ!"
 
-#: compose.c:692 compose.c:712
+#: compose.c:693 compose.c:713
 msgid "Unable to attach!"
 msgstr "îÅÌØÚÑ ÐÒÉÓÏÅÄÉÎÉÔØ!"
 
-#: compose.c:820
+#: compose.c:821
 msgid "Invalid encoding."
 msgstr "îÅÐÏÎÑÔÎÁÑ ËÏÄÉÒÏ×ËÁ."
 
-#: compose.c:835
+#: compose.c:836
 msgid "Save a copy of this message?"
 msgstr "óÏÈÒÁÎÉÔØ ËÏÐÉÀ ÜÔÏÇÏ ÓÏÏÂÝÅÎÉÑ?"
 
-#: compose.c:880
+#: compose.c:881
 msgid "Rename to: "
 msgstr "ðÅÒÅÉÍÅÎÏ×ÁÔØ ×: "
 
-#: compose.c:885
+#: compose.c:886
 #, c-format
 msgid "Can't stat: %s"
 msgstr "îÅÔ ÓÔÁÔÉÓÔÉËÉ: %s"
 
-#: compose.c:912
+#: compose.c:913
 msgid "New file: "
 msgstr "îÏ×ÙÊ ÆÁÊÌ: "
 
-#: compose.c:925
+#: compose.c:926
 msgid "Content-Type is of the form base/sub"
 msgstr "Content-Type ÐÏ ÆÏÒÍÅ: base/sub"
 
-#: compose.c:931
+#: compose.c:932
 #, c-format
 msgid "Unknown Content-Type %s"
 msgstr "îÅÉÚ×ÅÓÔÎÙÊ Content-Type %s"
 
-#: compose.c:944
+#: compose.c:945
 #, c-format
 msgid "Can't create file %s"
 msgstr "îÅ ÕÄÁ£ÔÓÑ ÓÏÚÄÁÔØ ÆÁÊÌ %s"
 
-#: compose.c:952
+#: compose.c:953
 msgid "What we have here is a failure to make an attachment"
 msgstr "úÄÅÓØ ÐÒÏÉÓÈÏÄÉÔ ÓÂÏÊ ÐÏÐÙÔËÉ ÐÒÉÓÏÅÄÉÎÅÎÉÑ"
 
-#: compose.c:1024
+#: compose.c:1025
 msgid "Postpone this message?"
 msgstr "ïÔÌÏÖÉÔØ ÜÔÏ ÓÏÏÂÝÅÎÉÅ?"
 
-#: compose.c:1071
+#: compose.c:1072
 msgid "Write message to mailbox"
 msgstr "úÁÐÉÓÁÔØ ÓÏÏÂÝÅÎÉÅ × ÐÏÞÔÏ×ÙÊ ÑÝÉË"
 
-#: compose.c:1075
+#: compose.c:1076
 #, c-format
 msgid "Writing message to %s ..."
 msgstr "úÁÐÉÓØ ÓÏÏÂÝÅÎÉÑ × %s ..."
 
-#: compose.c:1086
+#: compose.c:1087
 msgid "Message written."
 msgstr "óÏÏÂÝÅÎÉÅ ÚÁÐÉÓÁÎÏ."
 
-#: copy.c:569
+#: copy.c:570
 msgid "Confused when attempting to delete attachment, h & m can't be NULL"
 msgstr "îÅÕÄÁÞÁ ÐÒÉ ÐÏÐÙÔËÅ ÕÄÁÌÅÎÉÑ ÐÒÉÓÏÅÄÉÎÅÎÉÑ, h & m ÎÅ ÍÏÇÕÔ ÂÙÔØ NULL"
 
-#: copy.c:584
+#: copy.c:585
 msgid "Deleting non-multipart messages not yet supported"
 msgstr "õÄÁÌÅÎÉÅ ÏÄÎÏÞÁÓÔÎÙÈ ÓÏÏÂÝÅÎÉÊ ÐÏËÁ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ"
 
-#: curs_lib.c:134
+#: curs_lib.c:135
 msgid "yes"
 msgstr ""
 
-#: curs_lib.c:135
+#: curs_lib.c:136
 msgid "no"
 msgstr ""
 
 #. restore blocking operation
-#: curs_lib.c:174
+#: curs_lib.c:175
 msgid "Exit Mutt?"
 msgstr "÷ÙÊÔÉ ÉÚ Mutt?"
 
-#: curs_lib.c:249
+#: curs_lib.c:250
 msgid "unknown error"
 msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ"
 
-#: curs_lib.c:269
+#: curs_lib.c:270
 msgid "Press any key to continue..."
 msgstr "îÁÖÍÉÔÅ ÌÀÂÕÀ ËÌÁ×ÉÛÕ ÄÌÑ ÐÒÏÄÏÌÖÅÎÉÑ..."
 
-#: curs_lib.c:307
+#: curs_lib.c:308
 msgid " ('?' for list): "
 msgstr " ('?' - ÓÐÉÓÏË): "
 
-#: curs_main.c:208
+#: curs_main.c:209
 msgid "Cannot toggle write on a readonly mailbox!"
 msgstr "îÅÌØÚÑ ×ËÌÀÞÉÔØ ÚÁÐÉÓØ - ÄÏÓÔÕРÔÏÌØËÏ ÄÌÑ ÞÔÅÎÉÑ!"
 
-#: curs_main.c:215
+#: curs_main.c:216
 msgid "Changes to folder will be written on folder exit."
 msgstr "éÚÍÅÎÅÎÉÑ ÂÕÄÕÔ ÚÁÐÉÓÁÎÙ ÐÒÉ ÚÁËÒÙÔÉÉ ÐÁÐËÉ."
 
-#: curs_main.c:220
+#: curs_main.c:221
 msgid "Changes to folder will not be written."
 msgstr "éÚÍÅÎÅÎÉÑ ÎÅ ÂÕÄÕÔ ÓÏÈÒÁÎÑÔØÓÑ."
 
-#: curs_main.c:227
+#: curs_main.c:228
 msgid "Quit"
 msgstr "÷ÙÈÏÄ"
 
-#: curs_main.c:228 pager.c:1365 postpone.c:33
+#: curs_main.c:229 pager.c:1366 postpone.c:34
 msgid "Del"
 msgstr "õÄ."
 
-#: curs_main.c:229 postpone.c:34
+#: curs_main.c:230 postpone.c:35
 msgid "Undel"
 msgstr "îÅ ÕÄ."
 
-#: curs_main.c:231 query.c:44
+#: curs_main.c:232 query.c:45
 msgid "Mail"
 msgstr "ðÉÓØÍÏ"
 
-#: curs_main.c:232 pager.c:1366
+#: curs_main.c:233 pager.c:1367
 msgid "Reply"
 msgstr "ïÔ×ÅÔ"
 
-#: curs_main.c:233
+#: curs_main.c:234
 msgid "Group"
 msgstr "÷ÓÅÍ"
 
-#: curs_main.c:399
+#: curs_main.c:400
 msgid "Mailbox was externally modified.  Flags may be wrong."
 msgstr "ðÏÞÔÏ×ÙÊ ÑÝÉË ÉÚÍÅΣΠÄÒÕÇÏÊ ÐÒÏÇÒÁÍÍÏÊ. æÌÁÇÉ ÍÏÇÕÔ ÂÙÔØ ÎÅ×ÅÒÎÙ."
 
-#: curs_main.c:402
+#: curs_main.c:403
 msgid "New mail in this mailbox."
 msgstr "îÏ×ÁÑ ÐÏÞÔÁ × ÜÔÏÍ ÐÏÞÔÏ×ÏÍ ÑÝÉËÅ."
 
-#: curs_main.c:519
+#: curs_main.c:520
 msgid "No mailbox is open."
 msgstr "îÅÔ ÏÔËÒÙÔÏÇÏ ÐÏÞÔÏ×ÏÇÏ ÑÝÉËÁ."
 
-#: curs_main.c:525
+#: curs_main.c:526
 msgid "No tagged messages."
 msgstr "îÅÔ ÏÔÍÅÞÅÎÎÙÈ ÓÏÏÂÝÅÎÉÊ."
 
-#: curs_main.c:605
+#: curs_main.c:606
 msgid "Jump to message: "
 msgstr "ðÅÒÅÊÔÉ Ë ÓÏÏÂÝÅÎÉÀ: "
 
-#: curs_main.c:611
+#: curs_main.c:612
 msgid "Argument must be a message number."
 msgstr "áÒÇÕÍÅÎÔ ÄÏÌÖÅΠÂÙÔØ ÎÏÍÅÒÏÍ ÓÏÏÂÝÅÎÉÑ."
 
-#: curs_main.c:644
+#: curs_main.c:645
 msgid "That message is not visible."
 msgstr "üÔÏ ÓÏÏÂÝÅÎÉÅ ÎÅ×ÉÄÉÍÏ."
 
-#: curs_main.c:647
+#: curs_main.c:648
 msgid "Invalid message number."
 msgstr "îÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÓÏÏÂÝÅÎÉÑ."
 
-#: curs_main.c:660
+#: curs_main.c:661
 msgid "Delete messages matching: "
 msgstr "õÄÁÌÉÔØ ÓÏÏÂÝÅÎÉÑ, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÅ: "
 
-#: curs_main.c:682
+#: curs_main.c:683
 msgid "No limit pattern is in effect."
 msgstr ""
 
 #. i18n: ask for a limit to apply
-#: curs_main.c:687
+#: curs_main.c:688
 #, c-format
 msgid "Limit: %s"
 msgstr "ðÒÅÄÅÌ: %s"
 
-#: curs_main.c:696
+#: curs_main.c:697
 msgid "Limit to messages matching: "
 msgstr "ðÒÅÄÅÌ Ë ÓÏÏÂÝÅÎÉÑÍ, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÍ: "
 
-#: curs_main.c:726
+#: curs_main.c:727
 msgid "Quit Mutt?"
 msgstr "÷ÙÊÔÉ ÉÚ Mutt?"
 
-#: curs_main.c:837
+#: curs_main.c:838
 msgid "Tag messages matching: "
 msgstr "ïÔÍÅÔÉÔØ ÓÏÏÂÝÅÎÉÑ, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÅ:  "
 
-#: curs_main.c:845
+#: curs_main.c:846
 msgid "Undelete messages matching: "
 msgstr "ïÔÍÅÎÉÔØ ÕÄÁÌÅÎÉÅ ÓÏÏÂÝÅÎÉÊ, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÈ: "
 
-#: curs_main.c:852
+#: curs_main.c:853
 msgid "Untag messages matching: "
 msgstr "ïÔÍÅÎÉÔØ ÏÔÍÅÔËÕ ÓÏÏÂÝÅÎÉÊ, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÈ: "
 
-#: curs_main.c:870
+#: curs_main.c:871
 msgid "Open mailbox"
 msgstr "ïÔËÒÙÔØ ÐÏÞÔÏ×ÙÊ ÑÝÉË"
 
-#: curs_main.c:872
+#: curs_main.c:873
 msgid "Open mailbox in read-only mode"
 msgstr "ïÔËÒÙÔØ ÐÏÞÔÏ×ÙÊ ÑÝÉË ÔÏÌØËÏ ÄÌÑ ÞÔÅÎÉÑ"
 
-#: curs_main.c:888 mx.c:420 mx.c:561
+#: curs_main.c:889 mx.c:421 mx.c:562
 #, c-format
 msgid "%s is not a mailbox."
 msgstr "%s ÎÅ Ñ×ÌÑÅÔÓÑ ÐÏÞÔÏ×ÙÍ ÑÝÉËÏÍ."
 
-#: curs_main.c:984
+#: curs_main.c:985
 msgid "Exit Mutt without saving?"
 msgstr "÷ÙÊÔÉ ÉÚ Mutt ÂÅÚ ÓÏÈÒÁÎÅÎÉÑ?"
 
-#: curs_main.c:994 curs_main.c:1018
+#: curs_main.c:995 curs_main.c:1019
 msgid "You are on the last message."
 msgstr "üÔÏ ÐÏÓÌÅÄÎÅÅ ÓÏÏÂÝÅÎÉÅ."
 
-#: curs_main.c:1001 curs_main.c:1043
+#: curs_main.c:1002 curs_main.c:1044
 msgid "No undeleted messages."
 msgstr "îÅÔ ÎÅÕÄÁÌ£ÎÎÙÈ ÓÏÏÂÝÅÎÉÊ."
 
-#: curs_main.c:1036 curs_main.c:1059
+#: curs_main.c:1037 curs_main.c:1060
 msgid "You are on the first message."
 msgstr "üÔÏ ÐÅÒ×ÏÅ ÓÏÏÂÝÅÎÉÅ."
 
-#: curs_main.c:1132 pattern.c:1074
+#: curs_main.c:1133 pattern.c:1075
 msgid "Search wrapped to top."
 msgstr "ðÏÉÓË ÐÅÒÅÎÅӣΠנÎÁÞÁÌÏ."
 
-#: curs_main.c:1141 pattern.c:1085
+#: curs_main.c:1142 pattern.c:1086
 msgid "Search wrapped to bottom."
 msgstr "ðÏÉÓË ÐÅÒÅÎÅӣΠנËÏÎÅÃ."
 
-#: curs_main.c:1167
+#: curs_main.c:1168
 msgid "No new messages"
 msgstr "îÅÔ ÎÏ×ÙÈ ÓÏÏÂÝÅÎÉÊ"
 
-#: curs_main.c:1167
+#: curs_main.c:1168
 msgid "No unread messages"
 msgstr "îÅÔ ÎÅÐÒÏÞÉÔÁÎÎÙÈ ÓÏÏÂÝÅÎÉÊ"
 
-#: curs_main.c:1168
+#: curs_main.c:1169
 msgid " in this limited view"
 msgstr " × ÜÔÏÍ ÏÇÒÁÎÉÞÅÎÎÏÍ ÏÂÚÏÒÅ"
 
-#: curs_main.c:1278
+#: curs_main.c:1279
 msgid "No more threads."
 msgstr "îÅÔ ÂÏÌØÛÅ ÎÉÔÏË."
 
-#: curs_main.c:1280
+#: curs_main.c:1281
 msgid "You are on the first thread."
 msgstr "üÔÏ ÐÅÒ×ÁÑ ÎÉÔËÁ."
 
-#: curs_main.c:1333
+#: curs_main.c:1334
 msgid "Thread contains unread messages."
 msgstr "îÉÔËÁ ÓÏÄÅÒÖÉÔ ÎÅÐÒÏÞÉÔÁÎÎÙÅ ÓÏÏÂÝÅÎÉÑ."
 
-#: curs_main.c:1346 flags.c:217 thread.c:628
+#: curs_main.c:1347 flags.c:218 thread.c:629
 msgid "Threading is not enabled."
 msgstr "óÛÉ×ÁÎÉÅ ÎÅÄÏÓÔÕÐÎÏ."
 
-#: date.c:48
+#: date.c:49
 msgid "Please report this program error in the function mutt_mktime."
 msgstr "óÏÏÂÝÉÔÅ Ï ÜÔÏÊ ÏÛÉÂËÅ ÐÒÏÇÒÁÍÍÙ × ÆÕÎËÃÉÉ mutt_mktime."
 
@@ -723,7 +722,7 @@ msgstr "
 #. * SLcurses_waddnstr() can't take a "const char *", so this is only
 #. * declared "static" (sigh)
 #.
-#: edit.c:36
+#: edit.c:37
 msgid ""
 "~~\t\tinsert a line begining with a single ~\n"
 "~b users\tadd users to the Bcc: field\n"
@@ -763,123 +762,123 @@ msgstr ""
 "?\t\tÜÔÏ ÓÏÏÂÝÅÎÉÅ\n"
 ".\t\tÓÔÒÏËÁ ÉÚ ÏÄÎÏÊ ÔÏÞËÉ - ÚÁ×ÅÒÛÅÎÉÅ ××ÏÄÁ\n"
 
-#: edit.c:178
+#: edit.c:179
 #, c-format
 msgid "%d: invalid message number.\n"
 msgstr "%d: ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÓÏÏÂÝÅÎÉÑ.\n"
 
-#: edit.c:312
+#: edit.c:313
 msgid "(End message with a . on a line by itself)\n"
 msgstr "(ëÏÎÅàÓÏÏÂÝÅÎÉÑ - ××ÏÄ ÓÔÒÏËÉ ÉÚ ÏÄÎÏÊ ÔÏÞËÉ)\n"
 
-#: edit.c:370
+#: edit.c:371
 msgid "No mailbox.\n"
 msgstr "îÅÔ ÐÏÞÔÏ×ÏÇÏ ÑÝÉËÁ.\n"
 
-#: edit.c:374
+#: edit.c:375
 msgid "Message contains:\n"
 msgstr "óÏÏÂÝÅÎÉÅ ÓÏÄÅÒÖÉÔ:\n"
 
-#: edit.c:378 edit.c:430
+#: edit.c:379 edit.c:431
 msgid "(continue)\n"
 msgstr "(ÐÒÏÄÏÌÖÁÊÔÅ)\n"
 
-#: edit.c:391
+#: edit.c:392
 msgid "missing filename.\n"
 msgstr "ÐÒÏÐÕÝÅÎÏ ÉÍÑ ÆÁÊÌÁ.\n"
 
-#: edit.c:412
+#: edit.c:413
 msgid "No lines in message.\n"
 msgstr "ðÕÓÔÏÅ ÓÏÏÂÝÅÎÉÅ.\n"
 
-#: edit.c:441
+#: edit.c:442
 #, c-format
 msgid "%s: unknown editor command (~? for help)\n"
 msgstr "%s: ÎÅÉÚ×ÅÓÔÎÁÑ ËÏÍÁÎÄÁ ÒÅÄÁËÔÏÒÁ ('?' - ÐÏÄÓËÁÚËÁ)\n"
 
-#: flags.c:255
+#: flags.c:256
 msgid "Set flag"
 msgstr "õÓÔÁÎÏ×ÉÔØ ÆÌÁÇ"
 
-#: flags.c:255
+#: flags.c:256
 msgid "Clear flag"
 msgstr "óÂÒÏÓÉÔØ ÆÌÁÇ"
 
-#: handler.c:127
+#: handler.c:128
 msgid "[-- Error: unexpected end of file! --]\n"
 msgstr "[-- ïÛÉÂËÁ: ÎÅ ÎÁÊÄÅΠËÏÎÅàÆÁÊÌÁ! --]\n"
 
 #. didn't find anything that we could display!
-#: handler.c:882
+#: handler.c:883
 msgid "[-- Error:  Could not display any parts of Multipart/Alternative! --]\n"
 msgstr ""
 "[-- ïÛÉÂËÁ: îÅ ÕÄÁÌÏÓØ ÐÏËÁÚÁÔØ ÎÉ ÏÄÎÏÊ ÞÁÓÔÉ Multipart/Alternative! --]\n"
 
-#: handler.c:997
+#: handler.c:998
 #, c-format
 msgid "[-- Attachment #%d"
 msgstr "[-- ðÒÉÓÏÅÄÉÎÅÎÉÅ #%d"
 
-#: handler.c:1010
+#: handler.c:1011
 #, c-format
 msgid "[-- Type: %s/%s, Encoding: %s, Size: %s --]\n"
 msgstr "[-- ôÉÐ: %s/%s, ëÏÄÉÒÏ×ÁÎÉÅ: %s, òÁÚÍÅÒ: %s --]\n"
 
-#: handler.c:1076
+#: handler.c:1077
 #, c-format
 msgid "[-- Autoview using %s --]\n"
 msgstr "[-- á×ÔÏ-ÐÒÏÓÍÏÔÒ ÓÒÅÄÓÔ×ÁÍÉ %s --]\n"
 
-#: handler.c:1078
+#: handler.c:1079
 #, c-format
 msgid "Invoking autoview command: %s"
 msgstr "÷ÙÚÏ× ËÏÍÁÎÄÙ Á×ÔÏ-ÐÒÏÓÍÏÔÒÁ: %s"
 
-#: handler.c:1118 handler.c:1141
+#: handler.c:1119 handler.c:1142
 #, c-format
 msgid "[-- Autoview stderr of %s --]\n"
 msgstr "[-- ÷Ù×ÏÄ ÓÏÏÂÝÅÎÉÑ Ï ÏÛÉÂËÅ Á×ÔÏ-ÐÒÏÓÍÏÔÒÁ %s --]\n"
 
-#: handler.c:1246
+#: handler.c:1247
 msgid "Error: multipart/signed has no protocol."
 msgstr "ïÛÉÂËÁ: ÓÏÏÂÝÅÎÉÅ Ó ÐÏÄÐÉÓØÀ ÂÅÚ ÐÒÏÔÏËÏÌÁ."
 
-#: handler.c:1258
+#: handler.c:1259
 msgid "Error: multipart/encrypted has no protocol parameter!"
 msgstr "ïÛÉÂËÁ: ÚÁÛÉÆÒÏ×ÁÎÎÏÅ ÓÏÏÂÝÅÎÉÅ ÂÅÚ ÐÁÒÁÍÅÔÒÁ ÐÒÏÔÏËÏÌÁ!"
 
-#: handler.c:1300
+#: handler.c:1301
 msgid "Unable to open temporary file!"
 msgstr "îÅÌØÚÑ ÏÔËÒÙÔØ ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ!"
 
-#: handler.c:1359
+#: handler.c:1360
 #, c-format
 msgid "[-- %s/%s is unsupported "
 msgstr "[-- %s/%s ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ "
 
-#: handler.c:1364
+#: handler.c:1365
 #, c-format
 msgid "(use '%s' to view this part)"
 msgstr "(ÉÓÐÏÌØÚÕÊÔÅ '%s' ÄÌÑ ÐÒÏÓÍÏÔÒÁ)"
 
-#: handler.c:1366
+#: handler.c:1367
 msgid "(need 'view-attachments' bound to key!)"
 msgstr "(ÎÕÖÎÏ ÎÁÚÎÁÞÉÔØ 'view-attachments' ÎÁ ËÌÁ×ÉÛÕ!)"
 
-#: headers.c:201
+#: headers.c:202
 #, c-format
 msgid "%s: unable to attach file"
 msgstr "%s: ÎÅÌØÚÑ ÐÒÉÓÏÅÄÉÎÉÔØ ÆÁÊÌ"
 
-#: help.c:185
+#: help.c:186
 msgid "ERROR: please report this bug"
 msgstr "ïûéâëá: ÓÏÏÂÝÉÔÅ Ï ÜÔÏÍ ÖÕÞËÅ"
 
-#: help.c:232
+#: help.c:233
 msgid "<UNKNOWN>"
 msgstr "<îåéú÷åóôîï>"
 
-#: help.c:237
+#: help.c:238
 msgid ""
 "\n"
 "Generic bindings:\n"
@@ -889,7 +888,7 @@ msgstr ""
 "óÔÁÎÄÁÒÔÎÙÅ ÎÁÚÎÁÞÅÎÉÑ:\n"
 "\n"
 
-#: help.c:241
+#: help.c:242
 msgid ""
 "\n"
 "Unbound functions:\n"
@@ -899,12 +898,12 @@ msgstr ""
 "îÅÎÁÚÎÁÞÅÎÎÙÅ ÆÕÎËÃÉÉ:\n"
 "\n"
 
-#: help.c:249
+#: help.c:250
 #, c-format
 msgid "Help for %s"
 msgstr "ðÏÄÓËÁÚËÁ ÄÌÑ %s"
 
-#: imap.c:102
+#: imap.c:103
 #, c-format
 msgid "imap_error(): unexpected response in %s: %s\n"
 msgstr "imap_error(): ÎÅÏÖÉÄÁÎÎÙÊ ÏÔËÌÉË × %s: %s\n"
@@ -912,229 +911,229 @@ msgstr "imap_error(): 
 #. something is wrong because the server reported fewer messages
 #. * than we previously saw
 #.
-#: imap.c:354
+#: imap.c:355
 msgid "Fatal error.  Message count is out of sync!"
 msgstr "æÁÔÁÌØÎÁÑ ÏÛÉÂËÁ. óÞ£ÔÞÉË ÓÏÏÂÝÅÎÉÊ ×ÎÅ ÓÉÎÈÒÏÎÉÚÁÃÉÉ!"
 
-#: imap.c:424
+#: imap.c:425
 #, c-format
 msgid "Fetching message headers... [%d/%d]"
 msgstr "ðÏÌÕÞÅÎÉÅ ÚÁÇÏÌÏ×ËÏ× ÓÏÏÂÝÅÎÉÊ... [%d/%d]"
 
-#: imap.c:622 mbox.c:925
+#: imap.c:623 mbox.c:926
 msgid "Reopening mailbox..."
 msgstr "ðÏ×ÔÏÒÎÏÅ ÏÔËÒÙÔÉÅ ÐÏÞÔÏ×ÏÇÏ ÑÝÉËÁ..."
 
-#: imap.c:857
+#: imap.c:858
 #, c-format
 msgid "Connecting to %s..."
 msgstr "óÏÅÄÉÎÅÎÉÅ Ó %s..."
 
-#: imap.c:876
+#: imap.c:877
 msgid "IMAP Username: "
 msgstr "ðÏÌØÚÏ×ÁÔÅÌØ IMAP: "
 
-#: imap.c:889
+#: imap.c:890
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "ðÁÒÏÌØ %s@%s: "
 
-#: imap.c:902
+#: imap.c:903
 msgid "Logging in..."
 msgstr "òÅÇÉÓÔÒÁÃÉÑ..."
 
-#: imap.c:957
+#: imap.c:958
 #, c-format
 msgid "Selecting %s..."
 msgstr "÷ÙÂÏÒ %s..."
 
-#: imap.c:1053 lib.c:1164
+#: imap.c:1054 lib.c:1165
 #, c-format
 msgid "Create %s?"
 msgstr "óÏÚÄÁÔØ %s?"
 
-#: imap.c:1097
+#: imap.c:1098
 msgid "Fetching message..."
 msgstr "ðÏÌÕÞÅÎÉÅ ÓÏÏÂÝÅÎÉÑ..."
 
-#: imap.c:1205
+#: imap.c:1206
 msgid "Sending APPEND command ..."
 msgstr "ðÏÓÙÌËÁ ËÏÍÁÎÄÙ APPEND ..."
 
-#: imap.c:1244
+#: imap.c:1245
 msgid "Uploading message ..."
 msgstr "ïÔÐÒÁ×ËÁ ÓÏÏÂÝÅÎÉÑ ..."
 
-#: imap.c:1299
+#: imap.c:1300
 msgid "Closing connection to IMAP server..."
 msgstr "úÁËÒÙÔÉÅ ÓÏÅÄÉÎÅÎÉÑ Ó IMAP ÓÅÒ×ÅÒÏÍ..."
 
-#: imap.c:1329
+#: imap.c:1330
 #, c-format
 msgid "Saving message status flags... [%d/%d]"
 msgstr "óÏÈÒÁÎÅÎÉÅ ÓÔÁÔÕÓÁ ÓÏÏÂÝÅÎÉÑ... [%d/%d]"
 
-#: imap.c:1355
+#: imap.c:1356
 msgid "Expunging messages from server..."
 msgstr ""
 
 #. tell the server to commit changes
-#: imap.c:1406
+#: imap.c:1407
 msgid "Closing mailbox..."
 msgstr "úÁËÒÙÔÉÅ ÐÏÞÔÏ×ÏÇÏ ÑÝÉËÁ..."
 
-#: init.c:432
+#: init.c:433
 msgid "alias: no address"
 msgstr "ÁÌÉÁÓ: ÎÅÔ ÁÄÒÅÓÁ"
 
-#: init.c:526
+#: init.c:527
 msgid "invalid header field"
 msgstr "ÎÅ×ÅÒÎÏÅ ÐÏÌÅ ÚÁÇÏÌÏ×ËÁ"
 
-#: init.c:534
+#: init.c:535
 #, c-format
 msgid "ignoring empty header field: %s"
 msgstr "ÏÔÂÒÏÓ ÐÕÓÔÙÈ ÐÏÌÅÊ ÚÁÇÏÌÏ×ËÁ: %s"
 
-#: init.c:586
+#: init.c:587
 #, c-format
 msgid "%s: unknown sorting method"
 msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÍÅÔÏÄ ÓÏÒÔÉÒÏ×ËÉ '%s'"
 
-#: init.c:659
+#: init.c:660
 #, c-format
 msgid "mutt_restore_default: error in regexp: %s\n"
 msgstr "mutt_restore_default: ÏÛÉÂËÁ ÒÅÇ.×ÙÒÁÖÅÎÉÑ: %s\n"
 
-#: init.c:719
+#: init.c:720
 #, c-format
 msgid "%s: unknown variable"
 msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÐÅÒÅÍÅÎÎÁÑ '%s'"
 
-#: init.c:728
+#: init.c:729
 msgid "prefix is illegal with reset"
 msgstr "ÐÒÅÆÉËÓ ÎÅÄÏÐÕÓÔÉÍ ÄÌÑ ÓÂÒÏÓÁ"
 
-#: init.c:734
+#: init.c:735
 msgid "value is illegal with reset"
 msgstr "×ÅÌÉÞÉÎÁ ÎÅÄÏÐÕÓÔÉÍÁ ÄÌÑ ÓÂÒÏÓÁ"
 
-#: init.c:751
+#: init.c:752
 #, c-format
 msgid "%s is a boolean var!"
 msgstr "%s - ÌÏÇÉÞÅÓËÁÑ ÐÅÒÅÍÅÎÎÁÑ!"
 
-#: init.c:758
+#: init.c:759
 #, c-format
 msgid "%s is set"
 msgstr "%s ÕÓÔÁÎÏ×ÌÅÎÏ"
 
-#: init.c:758
+#: init.c:759
 #, c-format
 msgid "%s is unset"
 msgstr "%s ÎÅ ÕÓÔÁÎÏ×ÌÅÎÏ"
 
-#: init.c:929
+#: init.c:930
 #, c-format
 msgid "%s: invalid mailbox type"
 msgstr "%s: ÎÅ×ÅÒÎÙÊ ÔÉРÐÏÞÔÏ×ÏÇÏ ÑÝÉËÁ"
 
-#: init.c:988
+#: init.c:989
 #, c-format
 msgid "%s: invalid value"
 msgstr "%s: ÎÅÄÏÐÕÓÔÉÍÁÑ ×ÅÌÉÞÉÎÁ"
 
-#: init.c:1038
+#: init.c:1039
 #, c-format
 msgid "%s: unknown type"
 msgstr "%s: ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ"
 
-#: init.c:1087
+#: init.c:1088
 #, c-format
 msgid "Error in %s, line %d: %s"
 msgstr "ïÛÉÂËÁ × %s, ÓÔÒÏËÁ %d: %s"
 
 #. the muttrc source keyword
-#: init.c:1098
+#: init.c:1099
 #, c-format
 msgid "source: errors in %s"
 msgstr "source: ÏÛÉÂËÉ × %s"
 
-#: init.c:1108
+#: init.c:1109
 #, c-format
 msgid "source: error at %s"
 msgstr "source: ÏÛÉÂËÁ × %s"
 
-#: init.c:1113
+#: init.c:1114
 msgid "source: too many arguments"
 msgstr "source: ÓÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ×"
 
-#: init.c:1164
+#: init.c:1165
 #, c-format
 msgid "%s: unknown command"
 msgstr "%s: ÎÅÉÚ×ÅÓÔÎÁÑ ËÏÍÁÎÄÁ"
 
-#: init.c:1469
+#: init.c:1470
 #, c-format
 msgid "Error in command line: %s\n"
 msgstr "ïÛÉÂËÁ ËÏÍÁÎÄÎÏÊ ÓÔÒÏËÉ: %s\n"
 
-#: init.c:1512
+#: init.c:1513
 msgid "unable to determine home directory"
 msgstr "ÎÅÌØÚÑ ÏÐÒÅÄÅÌÉÔØ ÄÏÍÁÛÎÉÊ ËÁÔÁÌÏÇ"
 
-#: init.c:1520
+#: init.c:1521
 msgid "unable to determine username"
 msgstr "ÎÅÌØÚÑ ÏÐÒÅÄÅÌÉÔØ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ"
 
-#: keymap.c:413
+#: keymap.c:414
 msgid "Macro loop detected."
 msgstr "ïÂÎÁÒÕÖÅΠÃÉËÌÉÞÅÓËÉÊ ÍÁËÒÏÓ."
 
-#: keymap.c:599
+#: keymap.c:600
 #, c-format
 msgid "Key is not bound.  Press '%s' for help."
 msgstr "ëÌÁ×ÉÛÁ ÎÅ ÎÁÚÎÁÞÅÎÁ. îÁÖÍÉÔÅ '%s' ÄÌÑ ÐÏÄÓËÁÚËÉ."
 
-#: keymap.c:601
+#: keymap.c:602
 msgid "Key is not bound.  See the manual."
 msgstr "ëÌÁ×ÉÛÁ ÎÅ ÎÁÚÎÁÞÅÎÁ. óÍÏÔÒÉÔÅ ÒÕËÏ×ÏÄÓÔ×Ï."
 
-#: keymap.c:611
+#: keymap.c:612
 msgid "push: too many arguments"
 msgstr "push: ÓÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ×"
 
-#: keymap.c:632
+#: keymap.c:633
 #, c-format
 msgid "%s: no such menu"
 msgstr "ÍÅÎÀ '%s' ÏÔÓÕÔÓÔ×ÕÅÔ"
 
-#: keymap.c:641
+#: keymap.c:642
 msgid "null key sequence"
 msgstr "ÐÕÓÔÁÑ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔØ"
 
-#: keymap.c:719
+#: keymap.c:720
 msgid "bind: too many arguments"
 msgstr "bind: ÓÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ×"
 
-#: keymap.c:734
+#: keymap.c:735
 #, c-format
 msgid "%s: no such function in map"
 msgstr "ÆÕÎËÃÉÉ '%s' ÎÅÔ × ËÁÒÔÅ"
 
-#: keymap.c:757
+#: keymap.c:758
 msgid "macro: empty key sequence"
 msgstr "macro: ÐÕÓÔÁÑ ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔØ"
 
-#: keymap.c:768
+#: keymap.c:769
 msgid "macro: too many arguments"
 msgstr "macro: ÓÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ×"
 
-#: keymap.c:798
+#: keymap.c:799
 msgid "exec: too few arguments"
 msgstr "exec: ÓÌÉÛËÏÍ ÍÁÌÏ ÁÒÇÕÍÅÎÔÏ×"
 
-#: keymap.c:818
+#: keymap.c:819
 #, c-format
 msgid "%s: no such command"
 msgstr "ËÏÍÁÎÄÁ '%s' ÏÔÓÕÔÓÔ×ÕÅÔ"
@@ -1743,73 +1742,37 @@ msgstr "
 msgid "collapse/uncollapse all threads"
 msgstr "Ó×ÅÒÎÕÔØ/ÒÁÚ×ÅÒÎÕÔØ ×ÓÅ ÎÉÔËÉ"
 
-#: keymap_defs.h:157
-msgid "attach a PGP public key"
-msgstr "ÐÒÉÓÏÅÄÉÎÉÔØ ÐÕÂÌÉÞÎÙÊ ËÌÀÞ PGP"
-
-#: keymap_defs.h:158
-msgid "show PGP options"
-msgstr "ÐÏËÁÚÁÔØ ÐÁÒÁÍÅÔÒÙ PGP"
-
-#: keymap_defs.h:159
-msgid "extract PGP public keys"
-msgstr "ÒÁÓÐÁËÏ×ÁÔØ ÐÕÂÌÉÞÎÙÅ ËÌÀÞÉ PGP"
-
-#: keymap_defs.h:160
-msgid "wipe PGP passphrase from memory"
-msgstr "×ÙÞÉÓÔÉÔØ ÐÁÒÏÌØ PGP ÉÚ ÐÁÍÑÔÉ"
-
-#: keymap_defs.h:161
-msgid "mail a PGP public key"
-msgstr "ÏÔÏÓÌÁÔØ ÐÕÂÌÉÞÎÙÊ ËÌÀÞ PGP"
-
-#: keymap_defs.h:162
-msgid "verify a PGP public key"
-msgstr "ÐÒÏ×ÅÒÉÔØ ÐÕÂÌÉÞÎÙÊ ËÌÀÞ PGP"
-
-#: keymap_defs.h:163
-msgid "view the key's user id"
-msgstr "ÐÏËÁÚÁÔØ ÉÄÅÎÔÉÆÉËÁÔÏÒ ÐÏÌØÚÏ×ÁÔÅÌÑ ËÌÀÞÁ"
-
-#: keymap_defs.h:164
-msgid "make decrypted copy and delete"
-msgstr "ÒÁÓÛÉÆÒÏ×ÁÔØ É ÕÄÁÌÉÔØ"
-
-#: keymap_defs.h:165
-msgid "make decrypted copy"
-msgstr "ÒÁÓÛÉÆÒÏ×ÁÔØ"
-
-#: lib.c:275 lib.c:290 lib.c:321
+#: lib.c:276 lib.c:291 lib.c:322
 msgid "Out of memory!"
 msgstr "íÁÌÏ ÐÁÍÑÔÉ!"
 
-#: lib.c:753
+#: lib.c:754
 msgid "File is a directory, save under it?"
 msgstr "æÁÊÌ Ñ×ÌÑÅÔÓÑ ËÁÔÁÌÏÇÏÍ, ÓÏÈÒÁÎÉÔØ ÎÉÖÅ?"
 
-#: lib.c:758
+#: lib.c:759
 msgid "File under directory: "
 msgstr "æÁÊÌ × ËÁÔÁÌÏÇÅ: "
 
-#: lib.c:769
+#: lib.c:770
 msgid "File exists, overwrite?"
 msgstr "æÁÊÌ ÓÕÝÅÓÔ×ÕÅÔ, ÐÅÒÅÐÉÓÁÔØ?"
 
-#: lib.c:1142
+#: lib.c:1143
 #, c-format
 msgid "%s is not a mailbox!"
 msgstr "%s - ÜÔÏ ÎÅ ÐÏÞÔÏ×ÙÊ ÑÝÉË!"
 
-#: lib.c:1148
+#: lib.c:1149
 #, c-format
 msgid "Append messages to %s?"
 msgstr "äÏÂÁ×ÉÔØ ÓÏÏÂÝÅÎÉÑ Ë %s?"
 
-#: main.c:35
+#: main.c:36
 msgid "To contact the developers, please mail to <mutt-dev@mutt.org>.\n"
 msgstr "äÌÑ ÏÂÝÅÎÉÑ Ó ÒÁÚÒÁÂÏÔÞÉËÁÍÉ ÐÉÛÉÔÅ ÎÁ ÁÄÒÅÓ <mutt-dev@mutt.org>.\n"
 
-#: main.c:38
+#: main.c:39
 msgid ""
 "Copyright (C) 1996-8 Michael R. Elkins and others.\n"
 "Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.\n"
@@ -1817,7 +1780,7 @@ msgid ""
 "under certain conditions; type `mutt -vv' for details.\n"
 msgstr ""
 
-#: main.c:44
+#: main.c:45
 msgid ""
 "Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>\n"
 "Copyright (C) 1997-8 Thomas Roessler <roessler@guug.de>\n"
@@ -1839,7 +1802,7 @@ msgid ""
 "    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n"
 msgstr ""
 
-#: main.c:66
+#: main.c:67
 msgid ""
 "\n"
 "SHA1 implementation Copyright (C) 1995-7 Eric A. Young <eay@cryptsoft.com>\n"
@@ -1855,7 +1818,7 @@ msgid ""
 "    along with this program; if not, write to the program's developers.\n"
 msgstr ""
 
-#: main.c:92
+#: main.c:93
 msgid ""
 "usage: mutt [ -nRzZ ] [ -e <cmd> ] [ -F <file> ] [ -m <type> ] [ -f <file> "
 "]\n"
@@ -1913,53 +1876,53 @@ msgstr ""
 "  -Z\t\tÏÔËÒÙÔØ ÐÅÒ×ÕÀ ÐÁÐËÕ Ó ÎÏ×ÙÍ ÓÏÏÂÝÅÎÉÅÍ, ÉÎÁÞÅ ÓÒÁÚÕ ×ÙÊÔÉ\n"
 "  -h\t\tÜÔÁ ÐÏÄÓËÁÚËÁ"
 
-#: main.c:298
+#: main.c:299
 msgid "Error initializing terminal."
 msgstr "ïÛÉÂËÁ ÉÎÉÃÉÁÌÉÚÁÃÉÉ ÔÅÒÍÉÎÁÌÁ."
 
-#: main.c:394
+#: main.c:395
 #, c-format
 msgid "Debugging at level %d.\n"
 msgstr "ïÔÌÁÄËÁ Ó ÕÒÏ×ÎÅÍ %d.\n"
 
-#: main.c:396
+#: main.c:397
 msgid "DEBUG was not defined during compilation.  Ignored.\n"
 msgstr "DEBUG ÎÅ ÏÐÒÅÄẠ̊ΠÐÒÉ ËÏÍÐÉÌÑÃÉÉ, ÉÇÎÏÒÉÒÕÅÔÓÑ.\n"
 
-#: main.c:534
+#: main.c:535
 msgid "No recipients specified.\n"
 msgstr "îÅ ÕËÁÚÁÎÏ ÐÏÌÕÞÁÔÅÌÅÊ.\n"
 
-#: main.c:607
+#: main.c:608
 #, c-format
 msgid "%s: unable to attach file.\n"
 msgstr "%s: ÆÁÊÌ ÎÅÌØÚÑ ÐÒÉÓÏÅÄÉÎÉÔØ.\n"
 
-#: main.c:627
+#: main.c:628
 msgid "No mailbox with new mail."
 msgstr "îÅÔ ÐÏÞÔÏ×ÙÈ ÑÝÉËÏ× Ó ÎÏ×ÏÊ ÐÏÞÔÏÊ."
 
-#: main.c:661
+#: main.c:662
 msgid "Mailbox is empty."
 msgstr "ðÏÞÔÏ×ÙÊ ÑÝÉË ÓÏ×ÅÒÛÅÎÎÏ ÐÕÓÔ."
 
-#: mbox.c:186
+#: mbox.c:187
 msgid "Mailbox is corrupt!"
 msgstr "ðÏÞÔÏ×ÙÊ ÑÝÉË ÉÓÐÏÒÞÅÎ!"
 
-#: mbox.c:261
+#: mbox.c:262
 msgid "Reading %s... %d (%d%%)"
 msgstr "þÔÅÎÉÅ %s... %d (%d%%)"
 
-#: mbox.c:626
+#: mbox.c:627
 msgid "Mailbox was corrupted!"
 msgstr "ðÏÞÔÏ×ÙÊ ÑÝÉË ÉÓÐÏÒÔÉÌÉ!"
 
-#: mbox.c:663 mbox.c:852
+#: mbox.c:664 mbox.c:853
 msgid "Fatal error!  Could not reopen mailbox!"
 msgstr "æÁÔÁÌØÎÁÑ ÏÛÉÂËÁ! îÅ ÕÄÁ£ÔÓÑ ÏÔËÒÙÔØ ÐÏÞÔÏ×ÙÊ ÑÝÉË ÓÎÏ×Á!"
 
-#: mbox.c:672
+#: mbox.c:673
 msgid "Unable to lock mailbox!"
 msgstr "ðÏÞÔÏ×ÙÊ ÑÝÉË ÎÅ ÂÌÏËÉÒÕÅÔÓÑ!"
 
@@ -1967,329 +1930,329 @@ msgstr "
 #. * messages were found to be changed or deleted.  This should
 #. * never happen, is we presume it is a bug in mutt.
 #.
-#: mbox.c:711
+#: mbox.c:712
 msgid "sync: mbox modified, but no modified messages! (report this bug)"
 msgstr ""
 
-#: mbox.c:735
+#: mbox.c:736
 msgid "Writing messages... %d (%d%%)"
 msgstr "úÁÐÉÓØ ÓÏÏÂÝÅÎÉÊ... %d (%d%%)"
 
-#: mbox.c:837
+#: mbox.c:838
 #, c-format
 msgid "Write failed!  Saved partial mailbox to %s"
 msgstr "óÂÏÊ ÚÁÐÉÓÉ! þÁÓÔØ ÐÏÞÔÏ×ÏÇÏ ÑÝÉËÁ ÓÏÈÒÁΣÎÁ × %s"
 
-#: mbox.c:885
+#: mbox.c:886
 msgid "Could not reopen mailbox!"
 msgstr "îÅ ÕÄÁ£ÔÓÑ ÏÔËÒÙÔØ ÐÏÞÔÏ×ÙÊ ÑÝÉË ÓÎÏ×Á!"
 
-#: menu.c:297
+#: menu.c:298
 msgid "Jump to: "
 msgstr "ðÅÒÅÊÔÉ Ë: "
 
-#: menu.c:306
+#: menu.c:307
 msgid "Invalid index number."
 msgstr "îÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÓÐÉÓËÁ."
 
-#: menu.c:310 menu.c:328 menu.c:364 menu.c:405 menu.c:421 menu.c:432
-#: menu.c:443 menu.c:485 menu.c:496 menu.c:509 menu.c:522 menu.c:800
+#: menu.c:311 menu.c:329 menu.c:365 menu.c:406 menu.c:422 menu.c:433
+#: menu.c:444 menu.c:486 menu.c:497 menu.c:510 menu.c:523 menu.c:801
 msgid "No entries."
 msgstr "îÉ ÏÄÎÏÊ ÐÏÚÉÃÉÉ."
 
-#: menu.c:325
+#: menu.c:326
 msgid "You cannot scroll down farther."
 msgstr "îÅÌØÚÑ ÓÄ×ÉÎÕÔØ ÄÁÌØÛÅ ×ÎÉÚ."
 
-#: menu.c:341
+#: menu.c:342
 msgid "You cannot scroll up farther."
 msgstr "îÅÌØÚÑ ÓÄ×ÉÎÕÔØ ÄÁÌØÛÅ ××ÅÒÈ."
 
-#: menu.c:361
+#: menu.c:362
 msgid "You are on the last page."
 msgstr "üÔÏ ÐÏÓÌÅÄÎÑÑ ÓÔÒÁÎÉÃÁ."
 
-#: menu.c:383
+#: menu.c:384
 msgid "You are on the first page."
 msgstr "üÔÏ ÐÅÒ×ÁÑ ÓÔÒÁÎÉÃÁ."
 
-#: menu.c:462
+#: menu.c:463
 msgid "First entry is shown."
 msgstr "ðÅÒÅÄ ×ÁÍÉ ÐÅÒ×ÁÑ ÐÏÚÉÃÉÑ."
 
-#: menu.c:482
+#: menu.c:483
 msgid "Last entry is shown."
 msgstr "ðÅÒÅÄ ×ÁÍÉ ÐÏÓÌÅÄÎÑÑ ÐÏÚÉÃÉÑ."
 
-#: menu.c:533
+#: menu.c:534
 msgid "You are on the last entry."
 msgstr "üÔÏ ÐÏÓÌÅÄÎÑÑ ÐÏÚÉÃÉÑ."
 
-#: menu.c:544
+#: menu.c:545
 msgid "You are on the first entry."
 msgstr "üÔÏ ÐÅÒ×ÁÑ ÐÏÚÉÃÉÑ."
 
-#: menu.c:584 pattern.c:1020
+#: menu.c:585 pattern.c:1021
 msgid "Search for: "
 msgstr "éÓËÁÔØ: "
 
-#: menu.c:585
+#: menu.c:586
 msgid "Reverse search for: "
 msgstr "éÓËÁÔØ ÎÁÚÁÄ: "
 
-#: menu.c:596 pattern.c:1053
+#: menu.c:597 pattern.c:1054
 msgid "No search pattern."
 msgstr "éÓËÏÍÏÅ ÎÅ ÎÁÊÄÅÎÏ."
 
-#: menu.c:626 pager.c:1769 pager.c:1785 pager.c:1872 pattern.c:1118
+#: menu.c:627 pager.c:1770 pager.c:1786 pager.c:1873 pattern.c:1119
 msgid "Not found."
 msgstr "îÅ ÎÁÊÄÅÎÏ."
 
-#: menu.c:764
+#: menu.c:765
 msgid "Search is not implemented for this menu."
 msgstr "ðÏÉÓË × ÜÔÏÍ ÍÅÎÀ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ."
 
-#: menu.c:803
+#: menu.c:804
 msgid "Tagging is not supported."
 msgstr "ïÔÍÅÔËÁ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ."
 
-#: mh.c:181
+#: mh.c:182
 #, c-format
 msgid "Reading %s... %d"
 msgstr "þÔÅÎÉÅ %s... %d"
 
-#: mx.c:113
+#: mx.c:114
 #, c-format
 msgid "Lock count exceeded, remove lock for %s?"
 msgstr "ðÏÐÙÔËÉ ÂÌÏËÉÒÏ×ËÉ ÉÓÞÅÒÐÁÎÙ, ÓÎÑÔØ ÂÌÏËÉÒÏ×ËÕ Ó %s?"
 
-#: mx.c:177
+#: mx.c:178
 msgid "Timeout exceeded while attempting fcntl lock!"
 msgstr "÷ÒÅÍÑ ÐÏÐÙÔËÉ ÂÌÏËÉÒÏ×ËÉ fcntl ÉÓÞÅÒÐÁÎÏ!"
 
-#: mx.c:183
+#: mx.c:184
 #, c-format
 msgid "Waiting for fcntl lock... %d"
 msgstr "ïÖÉÄÁÎÉÅ ÂÌÏËÉÒÏ×ËÉ fcntl... %d"
 
-#: mx.c:211
+#: mx.c:212
 msgid "Timeout exceeded while attempting flock lock!"
 msgstr "÷ÒÅÍÑ ÐÏÐÙÔËÉ ÂÌÏËÉÒÏ×ËÉ flock ÉÓÞÅÒÐÁÎÏ!"
 
-#: mx.c:218
+#: mx.c:219
 #, c-format
 msgid "Waiting for flock attempt... %d"
 msgstr "ïÖÉÄÁÎÉÅ ÂÌÏËÉÒÏ×ËÉ flock... %d"
 
-#: mx.c:586
+#: mx.c:587
 #, c-format
 msgid "Reading %s..."
 msgstr "þÔÅÎÉÅ %s..."
 
-#: mx.c:673
+#: mx.c:674
 #, c-format
 msgid "Writing %s..."
 msgstr "úÁÐÉÓØ %s..."
 
-#: mx.c:753
+#: mx.c:754
 #, c-format
 msgid "Move read messages to %s?"
 msgstr "ðÅÒÅÎÅÓÔÉ ÐÒÏÞÉÔÁÎÎÙÅ ÓÏÏÂÝÅÎÉÑ × %s?"
 
-#: mx.c:762 mx.c:939
+#: mx.c:763 mx.c:940
 #, c-format
 msgid "Purge %d deleted message?"
 msgstr "õÎÉÞÔÏÖÉÔØ %d ÕÄÁÌ£ÎÎÏÅ ÓÏÏÂÝÅÎÉÅ?"
 
-#: mx.c:762 mx.c:939
+#: mx.c:763 mx.c:940
 #, c-format
 msgid "Purge %d deleted messages?"
 msgstr "õÎÉÞÔÏÖÉÔØ %d ÕÄÁÌ£ÎÎÙÈ ÓÏÏÂÛÅÎÉÊ?"
 
-#: mx.c:782
+#: mx.c:783
 #, c-format
 msgid "Moving read messages to %s..."
 msgstr "ðÅÒÅÎÏÓ ÐÒÏÞÉÔÁÎÎÙÈ ÓÏÏÂÝÅÎÉÊ × %s..."
 
-#: mx.c:798 mx.c:930
+#: mx.c:799 mx.c:931
 msgid "Mailbox is unchanged."
 msgstr "ðÏÞÔÏ×ÙÊ ÑÝÉË ÎÅ ÉÚÍÅÎÑÌÓÑ."
 
-#: mx.c:817
+#: mx.c:818
 #, c-format
 msgid "%d kept, %d moved, %d deleted."
 msgstr "%d ÏÓÔÁ×ÌÅÎÏ, %d ÐÅÒÅÍÅÝÅÎÏ, %d ÕÄÁÌÅÎÏ."
 
-#: mx.c:820 mx.c:955
+#: mx.c:821 mx.c:956
 #, c-format
 msgid "%d kept, %d deleted."
 msgstr "%d ÏÓÔÁ×ÌÅÎÏ, %d ÕÄÁÌÅÎÏ."
 
-#: mx.c:915
+#: mx.c:916
 #, c-format
 msgid " Press '%s' to toggle write"
 msgstr " îÁÖÍÉÔÅ '%s' ÄÌÑ ÉÚÍÅÎÅÎÉÑ ÚÁÐÉÓÉ"
 
-#: mx.c:917
+#: mx.c:918
 msgid "Use 'toggle-write' to re-enable write!"
 msgstr "éÓÐÏÌØÚÕÊÔÅ 'toggle-write' ÄÌÑ ÒÁÚÒÅÛÅÎÉÑ ÚÁÐÉÓÉ!"
 
-#: mx.c:919
+#: mx.c:920
 #, c-format
 msgid "Mailbox is marked unwritable. %s"
 msgstr "ðÏÞÔÏ×ÙÊ ÑÝÉË ÍÁÒËÉÒÏ×ÁΠÎÅÚÁÐÉÓÙ×ÁÅÍÙÍ. %s"
 
-#: mx.c:924
+#: mx.c:925
 msgid "Mailbox is read-only."
 msgstr "üÔÏÔ ÐÏÞÔÏ×ÙÊ ÑÝÉË ÍÏÖÎÏ ÔÏÌØËÏ ÞÉÔÁÔØ."
 
-#: pager.c:1359
+#: pager.c:1360
 msgid "PrevPg"
 msgstr "ðÒÅÄóÔÒ"
 
-#: pager.c:1360
+#: pager.c:1361
 msgid "NextPg"
 msgstr "óÌÅÄóÔÒ"
 
-#: pager.c:1364
+#: pager.c:1365
 msgid "View Attachm."
 msgstr "ðÒÉÓÏÅÄ."
 
-#: pager.c:1367
+#: pager.c:1368
 msgid "Next"
 msgstr "óÌÅÄ."
 
 #. emulate "less -q" and don't go on to the next message.
-#: pager.c:1681 pager.c:1712 pager.c:1741 pager.c:1960
+#: pager.c:1682 pager.c:1713 pager.c:1742 pager.c:1961
 msgid "Bottom of message is shown."
 msgstr "ðÅÒÅÄ ×ÁÍÉ ËÏÎÅàÓÏÏÂÝÅÎÉÑ."
 
-#: pager.c:1697 pager.c:1719 pager.c:1730
+#: pager.c:1698 pager.c:1720 pager.c:1731
 msgid "Top of message is shown."
 msgstr "ðÅÒÅÄ ×ÁÍÉ ÎÁÞÁÌÏ ÓÏÏÂÝÅÎÉÑ."
 
-#: pager.c:1803
+#: pager.c:1804
 msgid "Reverse search: "
 msgstr "éÓËÁÔØ ÎÁÚÁÄ: "
 
-#: pager.c:1804
+#: pager.c:1805
 msgid "Search: "
 msgstr "éÓËÁÔØ: "
 
-#: pager.c:1898
+#: pager.c:1899
 msgid "Help is currently being shown."
 msgstr "ðÏÄÓËÁÚËÁ ÕÖÅ ÐÅÒÅÄ ×ÁÍÉ."
 
-#: pager.c:1927
+#: pager.c:1928
 msgid "No more quoted text."
 msgstr "âÏÌØÛÅ ÎÅÔ ÃÉÔÉÒÕÅÍÏÇÏ ÔÅËÓÔÁ."
 
-#: pager.c:1940
+#: pager.c:1941
 msgid "No more unquoted text after quoted text."
 msgstr "ðÏÓÌÅ ÃÉÔÉÒÕÅÍÏÇÏ ÔÅËÓÔÁ ÎÅÔ ÎÉÞÅÇÏ."
 
-#: parse.c:476
+#: parse.c:477
 msgid "multipart message has no boundary parameter!"
 msgstr "íÎÏÇÏÞÁÓÔÎÏÅ ÓÏÏÂÝÅÎÉÅ ÎÅ ÉÍÅÅÔ ÐÁÒÁÍÅÔÒÁ ÒÁÚÄÅÌÉÔÅÌÑ!"
 
-#: pattern.c:230
+#: pattern.c:231
 #, c-format
 msgid "Error in expression: %s"
 msgstr "ïÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ: %s"
 
-#: pattern.c:326
+#: pattern.c:327
 #, c-format
 msgid "Invalid day of month: %s"
 msgstr "÷ ÍÅÓÑÃÅ ÎÅÔ ÞÉÓÌÁ '%s'"
 
-#: pattern.c:340
+#: pattern.c:341
 #, c-format
 msgid "Invalid month: %s"
 msgstr "îÅÔ ÍÅÓÑÃÁ '%s'"
 
-#: pattern.c:394
+#: pattern.c:395
 msgid "error in expression"
 msgstr "ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ"
 
-#: pattern.c:579 pattern.c:687
+#: pattern.c:580 pattern.c:688
 #, c-format
 msgid "error in pattern at: %s"
 msgstr "ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ ×: %s"
 
-#: pattern.c:627
+#: pattern.c:628
 #, c-format
 msgid "%c: invalid command"
 msgstr "%c: ÎÅÐÒÁ×ÉÌØÎÁÑ ËÏÍÁÎÄÁ"
 
-#: pattern.c:633
+#: pattern.c:634
 #, c-format
 msgid "%c: not supported in this mode"
 msgstr "%c: × ÜÔÏÍ ÒÅÖÉÍÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ"
 
-#: pattern.c:646
+#: pattern.c:647
 msgid "missing parameter"
 msgstr "ÐÁÒÁÍÅÔÒ ÐÒÏÐÕÝÅÎ"
 
-#: pattern.c:662
+#: pattern.c:663
 #, c-format
 msgid "mismatched parenthesis: %s"
 msgstr "ÏÔÓÕÔÓÔ×ÕÀÝÉÅ ÓËÏÂËÉ: %s"
 
-#: pattern.c:694
+#: pattern.c:695
 msgid "empty pattern"
 msgstr ""
 
-#: pattern.c:847
+#: pattern.c:848
 #, c-format
 msgid "error: unknown op %d (report this error)."
 msgstr ""
 
-#: pattern.c:911 pattern.c:1039
+#: pattern.c:912 pattern.c:1040
 msgid "Compiling search pattern..."
 msgstr "ëÏÍÐÉÌÑÃÉÑ ÉÓËÏÍÏÊ ÆÒÁÚÙ..."
 
-#: pattern.c:925
+#: pattern.c:926
 msgid "Executing command on matching messages..."
 msgstr "éÓÐÏÌÎÅÎÉÅ ËÏÍÁÎÄÙ Ë ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÍ ÓÏÏÂÝÅÎÉÑÍ..."
 
-#: pattern.c:982
+#: pattern.c:983
 msgid "No messages matched criteria."
 msgstr "îÅÔ ËÒÉÔÅÒÉÑ ÓÏÏÔ×ÅÔÓÔ×ÉÑ ÓÏÏÂÝÅÎÉÊ."
 
-#: pattern.c:1077
+#: pattern.c:1078
 msgid "Search hit bottom without finding match"
 msgstr "ðÏÉÓË ÄÏۣ̠ÄÏ ËÏÎÃÁ, ÓÏÏÔ×ÅÔÓÔ×ÉÊ ÎÅ ÎÁÊÄÅÎÏ"
 
-#: pattern.c:1088
+#: pattern.c:1089
 msgid "Search hit top without finding match"
 msgstr "ðÏÉÓË ÄÏۣ̠ÄÏ ÎÁÞÁÌÁ, ÓÏÏÔ×ÅÔÓÔ×ÉÊ ÎÅ ÎÁÊÄÅÎÏ"
 
-#: pattern.c:1110
+#: pattern.c:1111
 msgid "Search interrupted."
 msgstr "ðÏÉÓË ÐÒÅÒ×ÁÎ."
 
-#: pgp.c:130
+#: pgp.c:131
 msgid "Enter PGP passphrase:"
 msgstr "÷×ÅÄÉÔÅ ËÌÀÞÅ×ÕÀ ÆÒÁÚÕ PGP:"
 
-#: pgp.c:146
+#: pgp.c:147
 msgid "PGP passphrase forgotten."
 msgstr "ëÌÀÞÅ×ÁÑ ÆÒÁÚÁ PGP ÚÁÂÙÔÁ."
 
-#: pgp.c:174
+#: pgp.c:175
 #, c-format
 msgid "Unknown PGP version \"%s\"."
 msgstr "îÅÉÚ×ÅÓÔÎÁÑ ×ÅÒÓÉÑ PGP \"%s\"."
 
-#: pgp.c:207
+#: pgp.c:208
 msgid "[-- PGP output follows (current time: "
 msgstr "[-- PGP ×ÙÄÁÌÁ ÓÌÅÄÕÀÝÅÅ (ÓÅÊÞÁÓ: "
 
-#: pgp.c:320
+#: pgp.c:321
 msgid "[-- Error: unable to create PGP subprocess! --]\n"
 msgstr "[-- ïÛÉÂËÁ: ÎÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ÐÏÄÐÒÏÃÅÓÓ PGP! --]\n"
 
-#: pgp.c:347
+#: pgp.c:348
 msgid ""
 "\n"
 "[-- End of PGP output --]\n"
@@ -2299,7 +2262,7 @@ msgstr ""
 "[-- ëÏÎÅà×ÙÄÁÞÉ PGP  --]\n"
 "\n"
 
-#: pgp.c:476
+#: pgp.c:477
 msgid ""
 "[-- Error: could not find beginning of PGP message! --]\n"
 "\n"
@@ -2307,7 +2270,7 @@ msgstr ""
 "[-- ïÛÉÂËÁ: ÎÅ ÕÄÁÌÏÓØ ÎÁÊÔÉ ÎÁÞÁÌÏ ÓÏÏÂÝÅÎÉÑ PGP! --]\n"
 "\n"
 
-#: pgp.c:669 pgp.c:894
+#: pgp.c:670 pgp.c:895
 msgid ""
 "[-- End of PGP output --]\n"
 "\n"
@@ -2316,7 +2279,7 @@ msgstr ""
 "\n"
 
 #. Now display the signed body
-#: pgp.c:676
+#: pgp.c:677
 msgid ""
 "[-- The following data is PGP/MIME signed --]\n"
 "\n"
@@ -2324,7 +2287,7 @@ msgstr ""
 "[-- óÌÅÄÕÀÝÉÅ ÄÁÎÎÙÅ ÐÏÄÐÉÓÁÎÙ PGP/MIME --]\n"
 "\n"
 
-#: pgp.c:682
+#: pgp.c:683
 msgid ""
 "\n"
 "[-- End of PGP/MIME signed data --]\n"
@@ -2332,7 +2295,7 @@ msgstr ""
 "\n"
 "[-- ëÏÎÅàÄÁÎÎÙÈ, ÐÏÄÐÉÓÁÎÎÙÈ PGP/MIME --]\n"
 
-#: pgp.c:687
+#: pgp.c:688
 msgid ""
 "[-- Error: this message does not comply with the PGP/MIME specification! "
 "--]\n"
@@ -2341,11 +2304,11 @@ msgstr ""
 "[-- ïÛÉÂËÁ: ÜÔÏ ÓÏÏÂÝÅÎÉÅ ÎÅ ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÓÐÅÃÉÆÉËÁÃÉÉ PGP/MIME! --]\n"
 "\n"
 
-#: pgp.c:801
+#: pgp.c:802
 msgid "Internal error. Inform <roessler@guug.de>."
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ. óÏÏÂÝÉÔÅ <roessler@guug.de>."
 
-#: pgp.c:865
+#: pgp.c:866
 msgid ""
 "[-- Error: could not create a PGP subprocess! --]\n"
 "\n"
@@ -2353,7 +2316,7 @@ msgstr ""
 "[-- ïÛÉÂËÁ: ÎÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ÐÏÄÐÒÏÃÅÓÓ PGP! --]\n"
 "\n"
 
-#: pgp.c:967
+#: pgp.c:968
 msgid ""
 "[-- Error: malformed PGP/MIME message! --]\n"
 "\n"
@@ -2361,11 +2324,11 @@ msgstr ""
 "[-- ïÛÉÂËÁ: ÎÅÓÆÏÒÍÉÒÏ×ÁÎÎÏÅ ÓÏÏÂÝÅÎÉÅ PGP/MIME! --]\n"
 "\n"
 
-#: pgp.c:980
+#: pgp.c:981
 msgid "[-- Error: could not create temporary file! --]\n"
 msgstr "[-- ïÛÉÂËÁ: ÎÅ ÕÄÁÌÏÓØ ÓÏÚÄÁÔØ ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ! --]\n"
 
-#: pgp.c:989
+#: pgp.c:990
 msgid ""
 "[-- The following data is PGP/MIME encrypted --]\n"
 "\n"
@@ -2373,7 +2336,7 @@ msgstr ""
 "[-- óÌÅÄÕÀÝÉÅ ÄÁÎÎÙÅ ÚÁÛÉÆÒÏ×ÁÎÙ PGP/MIME --]\n"
 "\n"
 
-#: pgp.c:997
+#: pgp.c:998
 msgid ""
 "\n"
 "[-- End of PGP/MIME encrypted data --]\n"
@@ -2381,344 +2344,344 @@ msgstr ""
 "\n"
 "[-- ëÏÎÅàÚÁÛÉÆÒÏ×ÁÎÎÙÈ PGP/MIME ÄÁÎÎÙÈ --]\n"
 
-#: pgp.c:1080
+#: pgp.c:1081
 msgid "Can't open PGP subprocess!"
 msgstr "îÅ ÕÄÁÌÏÓØ ÏÔËÒÙÔØ ÐÏÄÐÒÏÃÅÓÓ PGP!"
 
-#: pgp.c:1214
+#: pgp.c:1215
 #, c-format
 msgid "Use keyID = \"%s\" for %s?"
 msgstr "éÓÐÏÌØÚÏ×ÁÔØ keyID = \"%s\" ÄÌÑ %s?"
 
-#: pgp.c:1220
+#: pgp.c:1221
 #, c-format
 msgid "Enter keyID for %s: "
 msgstr "÷×ÅÄÉÔÅ keyID ÄÌÑ %s: "
 
-#: pgpkey.c:173
+#: pgpkey.c:174
 msgid "Exit  "
 msgstr "÷ÙÈÏÄ  "
 
-#: pgpkey.c:175
+#: pgpkey.c:176
 msgid "Select  "
 msgstr "÷ÙÂÏÒ  "
 
-#: pgpkey.c:178
+#: pgpkey.c:179
 msgid "Check key  "
 msgstr "ðÒÏ×ÅÒËÁ ËÌÀÞÁ  "
 
-#: pgpkey.c:191
+#: pgpkey.c:192
 msgid "PGP keys matching "
 msgstr "PGP ËÌÀÞÉ, ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÅ "
 
-#: pgpkey.c:210 pgpkey.c:387
+#: pgpkey.c:211 pgpkey.c:388
 msgid "Can't open /dev/null"
 msgstr "îÅÄÏÓÔÕÐÅΠ/dev/null"
 
-#: pgpkey.c:216 pgpkey.c:381
+#: pgpkey.c:217 pgpkey.c:382
 msgid "Can't create temporary file"
 msgstr "îÅ ÕÄÁ£ÔÓÑ ÓÏÚÄÁÔØ ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ"
 
-#: pgpkey.c:226 pgpkey.c:398
+#: pgpkey.c:227 pgpkey.c:399
 msgid "Can't create filter"
 msgstr "îÅ ÕÄÁ£ÔÓÑ ÓÏÚÄÁÔØ ÆÉÌØÔÒ"
 
-#: pgpkey.c:236
+#: pgpkey.c:237
 #, c-format
 msgid "Key ID: 0x%s"
 msgstr ""
 
-#: pgpkey.c:257
+#: pgpkey.c:258
 msgid "This ID's trust level is undefined."
 msgstr "õÒÏ×ÅÎØ ÉÓÔÉÎÎÏÓÔÉ ÉÄÅÎÔÉÆÉËÁÔÏÒÁ ÎÅÏÐÒÅÄÅÌ£Î."
 
-#: pgpkey.c:258
+#: pgpkey.c:259
 msgid "This ID is not trusted."
 msgstr "üÔÏÔ ÉÄÅÎÔÉÆÉËÁÔÏÒ ÎÅ ÉÓÔÉÎÎÙÊ."
 
-#: pgpkey.c:259
+#: pgpkey.c:260
 msgid "This ID is only marginally trusted."
 msgstr "üÔÏÔ ÉÄÅÎÔÉÆÉËÁÔÏÒ ÉÓÔÉÎÅΠÏÇÒÁÎÉÞÅÎÎÏ."
 
-#: pgpkey.c:262
+#: pgpkey.c:263
 #, c-format
 msgid "%s Do you really want to use it?"
 msgstr "%s âÕÄÅÔÅ ÅÇÏ ÉÓÐÏÌØÚÏ×ÁÔØ?"
 
-#: pgpkey.c:369
+#: pgpkey.c:370
 msgid "Please enter the key ID: "
 msgstr "÷×ÅÄÉÔÅ ÉÄÅÎÔÉÆÉËÁÔÏÒ ËÌÀÞÁ: "
 
-#: pgpkey.c:416
+#: pgpkey.c:417
 #, c-format
 msgid "PGP Key 0x%s."
 msgstr ""
 
-#: pgppubring.c:58
+#: pgppubring.c:59
 msgid "reserved"
 msgstr ""
 
-#: pgppubring.c:59
+#: pgppubring.c:60
 msgid "Encrypted Session Key"
 msgstr ""
 
-#: pgppubring.c:60
+#: pgppubring.c:61
 msgid "Signature Packet"
 msgstr ""
 
-#: pgppubring.c:61
+#: pgppubring.c:62
 msgid "Conventionally Encrypted Session Key Packet"
 msgstr ""
 
-#: pgppubring.c:62
+#: pgppubring.c:63
 msgid "One-Pass Signature Packet"
 msgstr ""
 
-#: pgppubring.c:63
+#: pgppubring.c:64
 msgid "Secret Key Packet"
 msgstr ""
 
-#: pgppubring.c:64
+#: pgppubring.c:65
 msgid "Public Key Packet"
 msgstr ""
 
-#: pgppubring.c:65
+#: pgppubring.c:66
 msgid "Secret Subkey Packet"
 msgstr ""
 
-#: pgppubring.c:66
+#: pgppubring.c:67
 msgid "Compressed Data Packet"
 msgstr ""
 
-#: pgppubring.c:67
+#: pgppubring.c:68
 msgid "Symmetrically Encrypted Data Packet"
 msgstr ""
 
-#: pgppubring.c:68
+#: pgppubring.c:69
 msgid "Marker Packet"
 msgstr ""
 
-#: pgppubring.c:69
+#: pgppubring.c:70
 msgid "Literal Data Packet"
 msgstr ""
 
-#: pgppubring.c:70
+#: pgppubring.c:71
 msgid "Trust Packet"
 msgstr ""
 
-#: pgppubring.c:71
+#: pgppubring.c:72
 msgid "Name Packet"
 msgstr ""
 
-#: pgppubring.c:72
+#: pgppubring.c:73
 msgid "Subkey Packet"
 msgstr ""
 
-#: pgppubring.c:73
+#: pgppubring.c:74
 msgid "Reserved"
 msgstr ""
 
-#: pgppubring.c:74
+#: pgppubring.c:75
 msgid "Comment Packet"
 msgstr ""
 
-#: pop.c:66
+#: pop.c:67
 msgid "POP Password: "
 msgstr "ðÁÒÏÌØ ÄÌÑ POP: "
 
-#: pop.c:91
+#: pop.c:92
 msgid "POP host is not defined."
 msgstr "èÏÓÔ POP ÎÅ ÏÐÒÅÄÅÌ£Î."
 
-#: pop.c:97
+#: pop.c:98
 msgid "No POP username is defined."
 msgstr "éÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ POP ÎÅ ÏÐÒÅÄÅÌÅÎÏ."
 
-#: pop.c:114
+#: pop.c:115
 #, c-format
 msgid "Could not find address for host %s."
 msgstr "îÅ ÕÄÁ£ÔÓÑ ÎÁÊÔÉ ÁÄÒÅÓ ÈÏÓÔÁ %s."
 
-#: pop.c:122
+#: pop.c:123
 #, c-format
 msgid "Connecting to %s"
 msgstr "óÏÅÄÉÎÅÎÉÅ Ó %s"
 
-#: pop.c:166 pop.c:331
+#: pop.c:167 pop.c:332
 msgid "Server closed connection!"
 msgstr "óÅÒ×ÅÒ ÏÂÏÒ×ÁÌ Ó×ÑÚØ!"
 
-#: pop.c:187
+#: pop.c:188
 msgid "No new mail in POP mailbox."
 msgstr "÷ POP ÑÝÉËÅ ÎÅÔ ÎÏ×ÏÊ ÐÏÞÔÙ."
 
-#: pop.c:209
+#: pop.c:210
 #, c-format
 msgid "Reading %d new message (%d bytes)..."
 msgstr "þÔÅÎÉÅ %d ÎÏ×ÏÇÏ ÓÏÏÂÝÅÎÉÑ (%d ÂÁÊÔ)..."
 
-#: pop.c:245
+#: pop.c:246
 msgid "Error reading message!"
 msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ ÓÏÏÂÝÅÎÉÑ!"
 
-#: pop.c:281
+#: pop.c:282
 msgid "Error while writing mailbox!"
 msgstr "ïÛÉÂËÁ ÐÒÉ ÚÁÐÉÓÉ ÐÏÞÔÏ×ÏÇÏ ÑÝÉËÁ!"
 
-#: pop.c:305
+#: pop.c:306
 #, c-format
 msgid "%s [%d messages read]"
 msgstr "%s [%d ÓÏÏÂÝÅÎÉÊ ÐÒÏÞÉÔÁÎÏ]"
 
-#: postpone.c:111
+#: postpone.c:112
 msgid "Postponed Messages"
 msgstr "ïÔÌÏÖÅÎÎÙÅ ÓÏÏÂÝÅÎÉÑ"
 
-#: postpone.c:182 postpone.c:191
+#: postpone.c:183 postpone.c:192
 msgid "No postponed messages."
 msgstr "îÅÔ ÏÔÌÏÖÅÎÎÙÈ ÓÏÏÂÝÅÎÉÊ."
 
-#: postpone.c:319 postpone.c:339 postpone.c:348
+#: postpone.c:320 postpone.c:340 postpone.c:349
 msgid "Illegal PGP header"
 msgstr "îÅÄÏÐÕÓÔÉÍÙÊ ÚÁÇÏÌÏ×ÏË PGP"
 
-#: query.c:45
+#: query.c:46
 msgid "New Query"
 msgstr "îÏ×ÙÊ ÚÁÐÒÏÓ"
 
-#: query.c:46
+#: query.c:47
 msgid "Make Alias"
 msgstr "óÏÚÄÁÔØ ÁÌÉÁÓ"
 
-#: query.c:47
+#: query.c:48
 msgid "Search"
 msgstr "éÓËÁÔØ"
 
-#: query.c:91
+#: query.c:92
 msgid "Waiting for response..."
 msgstr "öÄÉÔÅ ÏÔ×ÅÔÁ..."
 
-#: query.c:192 query.c:217
+#: query.c:193 query.c:218
 msgid "Query command not defined."
 msgstr "ëÏÍÁÎÄÁ ÚÁÐÒÏÓÁ ÎÅ ÏÐÒÅÄÅÌÅÎÁ."
 
-#: query.c:244
+#: query.c:245
 msgid "Query"
 msgstr "úÁÐÒÏÓ"
 
 #. Prompt for Query
-#: query.c:257 query.c:285
+#: query.c:258 query.c:286
 msgid "Query: "
 msgstr "úÁÐÒÏÓ: "
 
-#: query.c:268 query.c:294
+#: query.c:269 query.c:295
 #, c-format
 msgid "Query '%s'"
 msgstr "úÁÐÒÏÓ '%s'"
 
-#: recvattach.c:49
+#: recvattach.c:50
 msgid "Pipe"
 msgstr "ëÏÎ×ÅÊÅÒ"
 
-#: recvattach.c:50
+#: recvattach.c:51
 msgid "Print"
 msgstr "ðÅÞÁÔØ"
 
-#: recvattach.c:309
+#: recvattach.c:310
 msgid "Saving..."
 msgstr "óÏÈÒÁÎÅÎÉÅ..."
 
-#: recvattach.c:370
+#: recvattach.c:371
 msgid "Attachment saved"
 msgstr "ðÒÉÓÏÅÄÉÎÅÎÉÅ ÓÏÈÒÁÎÅÎÏ"
 
-#: recvattach.c:382
+#: recvattach.c:383
 #, c-format
 msgid "WARNING!  You are about to overwrite %s, continue?"
 msgstr "ïóôïòïöîï!  ÷Ù ÐÅÒÅÚÁÐÉÛÅÔÅ %s, ÂÕÄÅÔÅ ÐÒÏÄÏÌÖÁÔØ?"
 
-#: recvattach.c:400
+#: recvattach.c:401
 msgid "Attachment filtered."
 msgstr "ðÒÉÓÏÅÄÉÎÅÎÉÅ ÏÔÆÉÌØÔÒÏ×ÁÎÏ."
 
-#: recvattach.c:466
+#: recvattach.c:467
 msgid "Filter through: "
 msgstr "þÅÒÅÚ ÆÉÌØÔÒ: "
 
-#: recvattach.c:466
+#: recvattach.c:467
 msgid "Pipe to: "
 msgstr "÷ ËÏÎ×ÅÊÅÒ: "
 
-#: recvattach.c:501
+#: recvattach.c:502
 #, c-format
 msgid "I dont know how to print %s attachments!"
 msgstr "ñ ÎÅ ÚÎÁÀ, ËÁË ÐÅÞÁÔÁÔØ ÐÒÉÓÏÅÄÉÎÅÎÉÑ %s!"
 
-#: recvattach.c:564
+#: recvattach.c:565
 msgid "Print tagged attachment(s)?"
 msgstr "ðÅÞÁÔÁÔØ ÏÔÍÅÞÅÎÎÙÅ ÐÒÉÓÏÅÄÉÎÅÎÉÑ?"
 
-#: recvattach.c:564
+#: recvattach.c:565
 msgid "Print attachment?"
 msgstr "ðÅÞÁÔÁÔØ ÐÒÉÓÏÅÄÉÎÅÎÉÅ?"
 
-#: recvattach.c:592
+#: recvattach.c:593
 msgid "You may only bounce message/rfc822 parts."
 msgstr "íÏÖÎÏ ÐÅÒÅÐÒÁ×ÌÑÔØ ÔÏÌØËÏ message/rfc822 ÞÁÓÔÉ."
 
-#: recvattach.c:625
+#: recvattach.c:626
 #, c-format
 msgid "Bounce messages to %s...?"
 msgstr "ðÅÒÅÐÒÁ×ÉÔØ ÓÏÏÂÝÅÎÉÑ %s...?"
 
-#: recvattach.c:626
+#: recvattach.c:627
 #, c-format
 msgid "Bounce message to %s...?"
 msgstr "ðÅÒÅÐÒÁ×ÉÔØ ÓÏÏÂÝÅÎÉÅ %s...?"
 
-#: recvattach.c:851
+#: recvattach.c:852
 msgid "Attachments"
 msgstr "ðÒÉÓÏÅÄÉÎÅÎÉÑ"
 
-#: recvattach.c:906
+#: recvattach.c:907
 msgid "Only deletion of multipart attachments is supported."
 msgstr "ðÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÔÏÌØËÏ ÕÄÁÌÅÎÉÅ × ÍÎÏÇÏÞÁÓÔÎÙÈ ÓÏÏÂÝÅÎÉÑÈ."
 
-#: recvattach.c:914
+#: recvattach.c:915
 msgid "Deletion of attachments from PGP messages is unsupported."
 msgstr "õÄÁÌÅÎÉÅ ÐÒÉÓÏÅÄÉÎÅÎÉÊ × ÓÏÏÂÝÅÎÉÑÈ PGP ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ."
 
-#: recvattach.c:990
+#: recvattach.c:991
 msgid "This operation is not currently supported for PGP messages."
 msgstr "äÌÑ ÓÏÏÂÝÅÎÉÊ PGP ÜÔÁ ÏÐÅÒÁÃÉÑ ÓÅÊÞÁÓ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ."
 
-#: rfc1524.c:157
+#: rfc1524.c:158
 #, c-format
 msgid "Improperly formated entry for type %s in \"%s\" line %d"
 msgstr "îÅÐÒÁ×ÉÌØÎÏ ÆÏÒÍÁÔÉÒÏ×ÁÎÎÙÊ ÔÉР%s × \"%s\", ÓÔÒÏËÁ %d"
 
-#: rfc1524.c:389
+#: rfc1524.c:390
 msgid "No mailcap path specified"
 msgstr "ðÕÔØ Ë mailcap ÎÅ ÕËÁÚÁÎ"
 
-#: rfc1524.c:415
+#: rfc1524.c:416
 #, c-format
 msgid "mailcap entry for type %s not found"
 msgstr "ôÉР%s ÎÅ ÎÁÊÄÅΠנmailcap"
 
-#: score.c:71
+#: score.c:72
 msgid "score: too few arguments"
 msgstr "score: ÓÌÉÛËÏÍ ÍÁÌÏ ÁÒÇÕÍÅÎÔÏ×"
 
-#: score.c:80
+#: score.c:81
 msgid "score: too many arguments"
 msgstr "score: ÓÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ×"
 
-#: send.c:229
+#: send.c:230
 msgid "No subject, abort?"
 msgstr "îÅÔ ÔÅÍÙ, ÏÔÍÅÎÉÔØ?"
 
-#: send.c:231
+#: send.c:232
 msgid "No subject, aborting."
 msgstr "îÅÔ ÔÅÍÙ, ÏÔÍÅÎÑÅÔÓÑ."
 
@@ -2727,7 +2690,7 @@ msgstr "
 #. * to send a message to only the sender of the message.  This
 #. * provides a way to do that.
 #.
-#: send.c:424
+#: send.c:425
 #, c-format
 msgid "Reply to %s?"
 msgstr "ïÔ×ÅÔÉÔØ %s?"
@@ -2735,124 +2698,151 @@ msgstr "
 #. This could happen if the user tagged some messages and then did
 #. * a limit such that none of the tagged message are visible.
 #.
-#: send.c:507
+#: send.c:508
 msgid "No tagged messages are visible!"
 msgstr "îÅ ×ÉÄÎÏ ÏÔÍÅÞÅÎÎÙÈ ÓÏÏÂÝÅÎÉÊ!"
 
-#: send.c:532
+#: send.c:533
 msgid "No mailing lists found!"
 msgstr "óÐÉÓËÏ× ÒÁÓÓÙÌËÉ ÎÅ ÎÁÊÄÅÎÏ!"
 
-#: send.c:619
+#: send.c:620
 msgid "Include message in reply?"
 msgstr "÷ËÌÀÞÉÔØ ÓÏÏÂÝÅÎÉÅ × ÏÔ×ÅÔ?"
 
-#: send.c:633
+#: send.c:634
 msgid "Could not include all requested messages!"
 msgstr "îÅ ÕÄÁÌÏÓØ ×ËÌÀÞÉÔØ ×ÓÅ ÔÒÅÂÕÅÍÙÅ ÓÏÏÂÝÅÎÉÑ!"
 
-#: send.c:646
+#: send.c:647
 msgid "Forward MIME encapsulated?"
 msgstr "ðÅÒÅÓÌÁÔØ ÉÎËÁÐÓÕÌÉÒÏ×ÁÎÎÙÍ × MIME?"
 
 #. If the user is composing a new message, check to see if there
 #. * are any postponed messages first.
 #.
-#: send.c:857
+#: send.c:858
 msgid "Recall postponed message?"
 msgstr "÷ÙÚ×ÁÔØ ÏÔÌÏÖÅÎÎÏÅ ÓÏÏÂÝÅÎÉÅ?"
 
-#: send.c:1087
+#: send.c:1088
 msgid "Abort unmodified message?"
 msgstr "ïÔÍÅÎÉÔØ ÎÅ ÉÚÍÅΣÎÎÏÅ ÓÏÏÂÝÅÎÉÅ?"
 
-#: send.c:1089
+#: send.c:1090
 msgid "Aborted unmodified message."
 msgstr "óÏÏÂÝÅÎÉÅ ÎÅ ÉÚÍÅÎÅÎÏ, ÏÔÍÅÎÑÅÔÓÑ."
 
 #. abort
-#: send.c:1127
+#: send.c:1128
 msgid "Mail not sent."
 msgstr "ðÉÓØÍÏ ÎÅ ÏÔÐÒÁ×ÌÅÎÏ."
 
-#: send.c:1140
+#: send.c:1141
 msgid "Message postponed."
 msgstr "óÏÏÂÝÅÎÉÅ ÏÔÌÏÖÅÎÏ."
 
-#: send.c:1149
+#: send.c:1150
 msgid "No recipients are specified!"
 msgstr "ðÏÌÕÞÁÔÅÌÉ ÎÅ ÕËÁÚÁÎÙ!"
 
-#: send.c:1154
+#: send.c:1155
 msgid "No recipients were specified."
 msgstr "ðÏÌÕÞÁÔÅÌÉ ÎÅ ÂÙÌÉ ÕËÁÚÁÎÙ."
 
-#: send.c:1160
+#: send.c:1161
 msgid "No subject, abort sending?"
 msgstr "âÅÚ ÔÅÍÙ, ÏÔÍÅÎÉÔØ ÏÔÐÒÁ×ËÕ?"
 
-#: send.c:1164
+#: send.c:1165
 msgid "No subject specified."
 msgstr "ôÅÍÁ ÎÅ ÕËÁÚÁÎÁ."
 
-#: send.c:1203
+#: send.c:1204
 msgid "Message edited. Really send?"
 msgstr "óÏÏÂÝÅÎÉÅ ÉÚÍÅÎÅÎÏ. äÅÊÓÔ×ÉÔÅÌØÎÏ ÏÔÐÒÁ×ÌÑÔØ?"
 
-#: send.c:1209
+#: send.c:1210
 msgid "Sending message..."
 msgstr "ïÔÐÒÁ×ËÁ ÓÏÏÂÝÅÎÉÑ..."
 
-#: send.c:1309
+#: send.c:1310
 msgid "Mail sent."
 msgstr "ðÉÓØÍÏ ÏÔÐÒÁ×ÌÅÎÏ."
 
-#: sendlib.c:408
+#: sendlib.c:409
 msgid "No boundary parameter found! [report this error]"
 msgstr ""
 
-#: sendlib.c:442
+#: sendlib.c:443
 #, c-format
 msgid "%s no longer exists!"
 msgstr "%s ÂÏÌØÛÅ ÎÅ ÓÕÝÅÓÔ×ÕÅÔ!"
 
-#: sendlib.c:695
+#: sendlib.c:696
 #, c-format
 msgid "Could not open %s"
 msgstr "îÅ ÕÄÁÌÏÓØ ÏÔËÒÙÔØ %s"
 
-#: sendlib.c:1622
+#: sendlib.c:1623
 #, c-format
 msgid "Error sending message, child exited %d (%s).\n"
 msgstr "ïÛÉÂËÁ ÏÔÐÒÁ×ËÉ, ÐÏÒÏÖÄÅÎÉÅ ×ÅÒÎÕÌÏ %d (%s).\n"
 
-#: sendlib.c:1624
+#: sendlib.c:1625
 #, c-format
 msgid "Saved output of child process to %s.\n"
 msgstr "÷ÙÈÏÄ ÐÏÒÏÖÄÅÎÉÑ ÓÏÈÒÁΣΠנ%s.\n"
 
-#: sendlib.c:1628
+#: sendlib.c:1629
 msgid "Error sending message."
 msgstr "ïÛÉÂËÁ ÏÔÐÒÁ×ËÉ ÓÏÏÂÝÅÎÉÑ."
 
-#: signal.c:38 signal.c:41
+#: signal.c:39 signal.c:42
 #, c-format
 msgid "Caught %s...  Exiting.\n"
 msgstr "ðÏÌÕÞÅÎÏ %s... ÷ÙÈÏÖÕ.\n"
 
-#: signal.c:43
+#: signal.c:44
 #, c-format
 msgid "Caught signal %d...  Exiting.\n"
 msgstr "ðÏÌÕÞÅΠÓÉÇÎÁÌ %d... ÷ÙÈÏÖÕ.\n"
 
-#: sort.c:198
+#: sort.c:199
 msgid "Sorting mailbox..."
 msgstr "óÏÒÔÉÒÏ×ËÁ ÐÏÞÔÏ×ÏÇÏ ÑÝÉËÁ..."
 
-#: sort.c:226
+#: sort.c:227
 msgid "Could not find sorting function! [report this bug]"
 msgstr ""
 
-#: status.c:101
+#: status.c:102
 msgid "(no mailbox)"
 msgstr "(ÐÏÞÔÏ×ÏÇÏ ÑÝÉËÁ ÎÅÔ)"
+
+#~ msgid "attach a PGP public key"
+#~ msgstr "ÐÒÉÓÏÅÄÉÎÉÔØ ÐÕÂÌÉÞÎÙÊ ËÌÀÞ PGP"
+
+#~ msgid "show PGP options"
+#~ msgstr "ÐÏËÁÚÁÔØ ÐÁÒÁÍÅÔÒÙ PGP"
+
+#~ msgid "extract PGP public keys"
+#~ msgstr "ÒÁÓÐÁËÏ×ÁÔØ ÐÕÂÌÉÞÎÙÅ ËÌÀÞÉ PGP"
+
+#~ msgid "wipe PGP passphrase from memory"
+#~ msgstr "×ÙÞÉÓÔÉÔØ ÐÁÒÏÌØ PGP ÉÚ ÐÁÍÑÔÉ"
+
+#~ msgid "mail a PGP public key"
+#~ msgstr "ÏÔÏÓÌÁÔØ ÐÕÂÌÉÞÎÙÊ ËÌÀÞ PGP"
+
+#~ msgid "verify a PGP public key"
+#~ msgstr "ÐÒÏ×ÅÒÉÔØ ÐÕÂÌÉÞÎÙÊ ËÌÀÞ PGP"
+
+#~ msgid "view the key's user id"
+#~ msgstr "ÐÏËÁÚÁÔØ ÉÄÅÎÔÉÆÉËÁÔÏÒ ÐÏÌØÚÏ×ÁÔÅÌÑ ËÌÀÞÁ"
+
+#~ msgid "make decrypted copy and delete"
+#~ msgstr "ÒÁÓÛÉÆÒÏ×ÁÔØ É ÕÄÁÌÉÔØ"
+
+#~ msgid "make decrypted copy"
+#~ msgstr "ÒÁÓÛÉÆÒÏ×ÁÔØ"
diff --git a/reap.pl b/reap.pl
new file mode 100755 (executable)
index 0000000..1140f83
--- /dev/null
+++ b/reap.pl
@@ -0,0 +1,31 @@
+#!/usr/local/bin/perl
+#
+# A small script to strip out any "illegal" PGP code to make sure it is
+# safe for International export.
+#
+
+#
+# $Id$
+#
+
+$word = shift;
+$illegal = 0;
+$count = 0;
+while (<>)
+{
+       if (/^#if/)
+       {
+               if (/${word}/) { $illegal = 1; }
+               if ($illegal) { $count++; }
+       }
+       elsif ($illegal && /^#endif/)
+       {
+               $count--;
+               if ($count == 0)
+               {
+                       $illegal = 0;
+                       next;
+               }
+       }
+       print if (! $illegal);
+}