]> git.llucax.com Git - software/mutt-debian.git/blob - upstream/patches/cvs_2005-09-24
Import mutt_1.5.11-2
[software/mutt-debian.git] / upstream / patches / cvs_2005-09-24
1 Index: mutt/ChangeLog
2 ===================================================================
3 RCS file: /home/roessler/cvs/mutt/ChangeLog,v
4 retrieving revision 3.607
5 retrieving revision 3.610
6 diff -u -p -u -a -r3.607 -r3.610
7 --- mutt/ChangeLog      22 Sep 2005 16:39:10 -0000      3.607
8 +++ mutt/ChangeLog      24 Sep 2005 20:04:38 -0000      3.610
9 @@ -1,3 +1,24 @@
10 +2005-09-24 20:03:04  Brendan Cully  <brendan@kublai.com>  (brendan)
11 +
12 +       * edit.c: Inflict more needless pain on translators by splitting
13 +       EditorHelp to satisfy -pedantic.
14 +
15 +       * mbox.c, mutt.h, configure.in: Use fseeko/ftello when available
16 +       while opening mbox/mmdf. Closes: #2084.
17 +
18 +2005-09-24 19:36:35  Alain Bench  <veronatif@free.fr>  (brendan)
19 +
20 +       * copy.c, mutt.h, parse.c, sendlib.c, thread.c: Cosmetic fixes to
21 +       MIME headers. Closes: #2086.
22 +
23 +2005-09-24 17:51:17  TAKAHASHI Tamotsu  <ttakah@lapis.plala.or.jp>  (brendan)
24 +
25 +       * po/ja.po: Update to HEAD.
26 +
27 +2005-09-23 18:38:36  TAKAHASHI Tamotsu  <ttakah@lapis.plala.or.jp>  (brendan)
28 +
29 +       * configure.in: Quote an error message.
30 +
31  2005-09-22 16:38:08  Takahashi Tamotsu  <ttakah@lapis.plala.or.jp>  (brendan)
32  
33         * configure.in, globals.h, hcache.c, init.h: Update QDBM patch to
34 Index: mutt/configure.in
35 ===================================================================
36 RCS file: /home/roessler/cvs/mutt/configure.in,v
37 retrieving revision 3.37
38 retrieving revision 3.39
39 diff -u -p -u -a -r3.37 -r3.39
40 --- mutt/configure.in   22 Sep 2005 16:38:08 -0000      3.37
41 +++ mutt/configure.in   24 Sep 2005 19:45:22 -0000      3.39
42 @@ -41,6 +41,7 @@ AC_C_INLINE
43  AC_C_CONST
44  
45  AC_SYS_LARGEFILE
46 +AC_FUNC_FSEEKO
47  
48  AC_PATH_PROG(DBX, dbx, no)
49  AC_PATH_PROG(GDB, gdb, no)
50 @@ -82,6 +83,15 @@ AH_TEMPLATE([ICONV_NONTRANS],
51              [Define as 1 if iconv() only converts exactly and we should treat
52               all return values other than (size_t)(-1) as equivalent.])
53  
54 +AH_BOTTOM([/* fseeko portability defines */
55 +#ifdef HAVE_FSEEKO
56 +# define LOFF_T off_t
57 +#else
58 +# define LOFF_T long
59 +# define fseeko fseek
60 +# define ftello ftell
61 +#endif
62 +])
63  MUTT_C99_INTTYPES
64  
65  ac_aux_path_sendmail=/usr/sbin:/usr/lib
66 @@ -825,7 +835,7 @@ AC_ARG_ENABLE(hcache, AC_HELP_STRING([--
67          LIBS="$OLDLIBS -L$BDB_LIB_DIR -l$BDB_LIB"
68          AC_DEFINE(HAVE_DB4, 1, [Sleepycat DB4 Support])
69      else
70 -        AC_MSG_ERROR(You need QDBM, Sleepycat DB4 or GDBM for --enable-hcache)
71 +        AC_MSG_ERROR([You need QDBM, GDBM or Sleepycat DB4 for hcache])
72      fi
73  fi])
74  dnl -- end cache --
75 Index: mutt/copy.c
76 ===================================================================
77 RCS file: /home/roessler/cvs/mutt/copy.c,v
78 retrieving revision 3.24
79 retrieving revision 3.25
80 diff -u -p -u -a -r3.24 -r3.25
81 --- mutt/copy.c 17 Sep 2005 20:46:10 -0000      3.24
82 +++ mutt/copy.c 24 Sep 2005 19:36:35 -0000      3.25
83 @@ -364,7 +364,7 @@ mutt_copy_header (FILE *in, HEADER *h, F
84    if (flags & CH_TXTPLAIN)
85    {
86      char chsbuf[SHORT_STRING];
87 -    fputs ("Mime-Version: 1.0\n", out);
88 +    fputs ("MIME-Version: 1.0\n", out);
89      fputs ("Content-Transfer-Encoding: 8bit\n", out);
90      fputs ("Content-Type: text/plain; charset=", out);
91      mutt_canonical_charset (chsbuf, sizeof (chsbuf), Charset ? Charset : "us-ascii");
92 @@ -672,7 +672,7 @@ _mutt_copy_message (FILE *fpout, FILE *f
93      {
94        if (crypt_pgp_decrypt_mime (fpin, &fp, hdr->content, &cur))
95         return (-1);
96 -      fputs ("Mime-Version: 1.0\n", fpout);
97 +      fputs ("MIME-Version: 1.0\n", fpout);
98      }
99  
100      if ((WithCrypto & APPLICATION_SMIME)
101 Index: mutt/edit.c
102 ===================================================================
103 RCS file: /home/roessler/cvs/mutt/edit.c,v
104 retrieving revision 3.7
105 retrieving revision 3.8
106 diff -u -p -u -a -r3.7 -r3.8
107 --- mutt/edit.c 17 Sep 2005 20:46:10 -0000      3.7
108 +++ mutt/edit.c 24 Sep 2005 20:03:04 -0000      3.8
109 @@ -38,7 +38,7 @@
110   * SLcurses_waddnstr() can't take a "const char *", so this is only
111   * declared "static" (sigh)
112   */
113 -static char* EditorHelp = N_("\
114 +static char* EditorHelp1 = N_("\
115  ~~             insert a line begining with a single ~\n\
116  ~b users       add users to the Bcc: field\n\
117  ~c users       add users to the Cc: field\n\
118 @@ -47,7 +47,9 @@ static char* EditorHelp = N_("\
119  ~h             edit the message header\n\
120  ~m messages    include and quote messages\n\
121  ~M messages    same as ~m, except include headers\n\
122 -~p             print the message\n\
123 +~p             print the message\n");
124 +
125 +static char* EditorHelp2 = N_("\
126  ~q             write file and quit editor\n\
127  ~r file                read a file into the editor\n\
128  ~t users       add users to the To: field\n\
129 @@ -352,7 +354,8 @@ int mutt_builtin_editor (const char *pat
130        switch (tmp[1])
131        {
132         case '?':
133 -         addstr (_(EditorHelp));
134 +         addstr (_(EditorHelp1));
135 +          addstr (_(EditorHelp2));
136           break;
137         case 'b':
138           msg->env->bcc = mutt_parse_adrlist (msg->env->bcc, p);
139 Index: mutt/mbox.c
140 ===================================================================
141 RCS file: /home/roessler/cvs/mutt/mbox.c,v
142 retrieving revision 3.9
143 retrieving revision 3.10
144 diff -u -p -u -a -r3.9 -r3.10
145 --- mutt/mbox.c 17 Sep 2005 20:46:10 -0000      3.9
146 +++ mutt/mbox.c 24 Sep 2005 19:45:23 -0000      3.10
147 @@ -85,7 +85,7 @@ int mmdf_parse_mailbox (CONTEXT *ctx)
148    int count = 0, oldmsgcount = ctx->msgcount;
149    int lines;
150    time_t t, tz;
151 -  long loc, tmploc;
152 +  LOFF_T loc, tmploc;
153    HEADER *hdr;
154    struct stat sb;
155  #ifdef NFS_ATTRIBUTE_HACK
156 @@ -122,7 +122,7 @@ int mmdf_parse_mailbox (CONTEXT *ctx)
157  
158      if (mutt_strcmp (buf, MMDF_SEP) == 0)
159      {
160 -      loc = ftell (ctx->fp);
161 +      loc = ftello (ctx->fp);
162        
163        count++;
164        if (!ctx->quiet && ReadInc && ((count % ReadInc == 0) || count == 1))
165 @@ -159,7 +159,7 @@ int mmdf_parse_mailbox (CONTEXT *ctx)
166  
167        hdr->env = mutt_read_rfc822_header (ctx->fp, hdr, 0, 0);
168  
169 -      loc = ftell (ctx->fp);
170 +      loc = ftello (ctx->fp);
171  
172        if (hdr->content->length > 0 && hdr->lines > 0)
173        {
174 @@ -186,7 +186,7 @@ int mmdf_parse_mailbox (CONTEXT *ctx)
175        {
176         lines = -1;
177         do {
178 -         loc = ftell (ctx->fp);
179 +         loc = ftello (ctx->fp);
180           if (fgets (buf, sizeof (buf) - 1, ctx->fp) == NULL)
181             break;
182           lines++;
183 @@ -231,7 +231,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
184    HEADER *curhdr;
185    time_t t, tz;
186    int count = 0, lines = 0;
187 -  long loc;
188 +  LOFF_T loc;
189  #ifdef NFS_ATTRIBUTE_HACK
190    struct utimbuf newtime;
191  #endif
192 @@ -262,7 +262,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
193       date received */
194    tz = mutt_local_tz (0);
195  
196 -  loc = ftell (ctx->fp);
197 +  loc = ftello (ctx->fp);
198    while (fgets (buf, sizeof (buf), ctx->fp) != NULL)
199    {
200      if (is_from (buf, return_path, sizeof (return_path), &t))
201 @@ -304,9 +304,9 @@ int mbox_parse_mailbox (CONTEXT *ctx)
202         */
203        if (curhdr->content->length > 0)
204        {
205 -       long tmploc;
206 +       LOFF_T tmploc;
207  
208 -       loc = ftell (ctx->fp);
209 +       loc = ftello (ctx->fp);
210         tmploc = loc + curhdr->content->length + 1;
211  
212         if (0 < tmploc && tmploc < ctx->size)
213 @@ -315,13 +315,13 @@ int mbox_parse_mailbox (CONTEXT *ctx)
214            * check to see if the content-length looks valid.  we expect to
215            * to see a valid message separator at this point in the stream
216            */
217 -         if (fseek (ctx->fp, tmploc, SEEK_SET) != 0 ||
218 +         if (fseeko (ctx->fp, tmploc, SEEK_SET) != 0 ||
219               fgets (buf, sizeof (buf), ctx->fp) == NULL ||
220               mutt_strncmp ("From ", buf, 5) != 0)
221           {
222             dprint (1, (debugfile, "mbox_parse_mailbox: bad content-length in message %d (cl=%ld)\n", curhdr->index, curhdr->content->length));
223             dprint (1, (debugfile, "\tLINE: %s", buf));
224 -           if (fseek (ctx->fp, loc, SEEK_SET) != 0) /* nope, return the previous position */
225 +           if (fseeko (ctx->fp, loc, SEEK_SET) != 0) /* nope, return the previous position */
226             {
227               dprint (1, (debugfile, "mbox_parse_mailbox: fseek() failed\n"));
228             }
229 @@ -346,7 +346,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
230             int cl = curhdr->content->length;
231  
232             /* count the number of lines in this message */
233 -           if (fseek (ctx->fp, loc, SEEK_SET) != 0)
234 +           if (fseeko (ctx->fp, loc, SEEK_SET) != 0)
235               dprint (1, (debugfile, "mbox_parse_mailbox: fseek() failed\n"));
236             while (cl-- > 0)
237             {
238 @@ -356,7 +356,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
239           }
240  
241           /* return to the offset of the next message separator */
242 -         if (fseek (ctx->fp, tmploc, SEEK_SET) != 0)
243 +         if (fseeko (ctx->fp, tmploc, SEEK_SET) != 0)
244             dprint (1, (debugfile, "mbox_parse_mailbox: fseek() failed\n"));
245         }
246        }
247 @@ -374,7 +374,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
248      else
249        lines++;
250      
251 -    loc = ftell (ctx->fp);
252 +    loc = ftello (ctx->fp);
253    }
254    
255    /*
256 @@ -387,7 +387,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
257    {
258      if (PREV->content->length < 0)
259      {
260 -      PREV->content->length = ftell (ctx->fp) - PREV->content->offset - 1;
261 +      PREV->content->length = ftello (ctx->fp) - PREV->content->offset - 1;
262        if (PREV->content->length < 0)
263         PREV->content->length = 0;
264      }
265 Index: mutt/mutt.h
266 ===================================================================
267 RCS file: /home/roessler/cvs/mutt/mutt.h,v
268 retrieving revision 3.57
269 retrieving revision 3.59
270 diff -u -p -u -a -r3.57 -r3.59
271 --- mutt/mutt.h 21 Sep 2005 06:04:37 -0000      3.57
272 +++ mutt/mutt.h 24 Sep 2005 19:45:23 -0000      3.59
273 @@ -627,7 +627,7 @@ typedef struct body
274                                  * attachment
275                                  */
276    long offset;                  /* offset where the actual data begins */
277 -  long length;                  /* length (in bytes) of attachment */
278 +  LOFF_T length;                  /* length (in bytes) of attachment */
279    char *filename;               /* when sending a message, this is the file
280                                  * to which this structure refers
281                                  */
282 @@ -692,7 +692,7 @@ typedef struct header
283    unsigned int security : 11;  /* bit 0-6: flags, bit 7,8: application.
284                                  see: crypt.h pgplib.h, smime.h */
285  
286 -  unsigned int mime : 1;               /* has a Mime-Version header? */
287 +  unsigned int mime : 1;               /* has a MIME-Version header? */
288    unsigned int flagged : 1;            /* marked important? */
289    unsigned int tagged : 1;
290    unsigned int deleted : 1;
291 Index: mutt/parse.c
292 ===================================================================
293 RCS file: /home/roessler/cvs/mutt/parse.c,v
294 retrieving revision 3.18
295 retrieving revision 3.19
296 diff -u -p -u -a -r3.18 -r3.19
297 --- mutt/parse.c        17 Sep 2005 20:46:10 -0000      3.18
298 +++ mutt/parse.c        24 Sep 2005 19:36:35 -0000      3.19
299 @@ -1105,7 +1105,7 @@ int mutt_parse_rfc822_line (ENVELOPE *e,
300      }
301      else if (!ascii_strcasecmp (line + 1, "essage-id"))
302      {
303 -      /* We add a new "Message-Id:" when building a message */
304 +      /* We add a new "Message-ID:" when building a message */
305        FREE (&e->message_id);
306        e->message_id = extract_message_id (p);
307        matched = 1;
308 Index: mutt/sendlib.c
309 ===================================================================
310 RCS file: /home/roessler/cvs/mutt/sendlib.c,v
311 retrieving revision 3.34
312 retrieving revision 3.35
313 diff -u -p -u -a -r3.34 -r3.35
314 --- mutt/sendlib.c      17 Sep 2005 20:46:11 -0000      3.34
315 +++ mutt/sendlib.c      24 Sep 2005 19:36:35 -0000      3.35
316 @@ -1057,7 +1057,7 @@ void mutt_message_to_7bit (BODY *a, FILE
317    mutt_copy_hdr (fpin, fpout, a->offset, a->offset + a->length, 
318                  CH_MIME | CH_NONEWLINE | CH_XMIT, NULL);
319  
320 -  fputs ("Mime-Version: 1.0\n", fpout);
321 +  fputs ("MIME-Version: 1.0\n", fpout);
322    mutt_write_mime_header (a->parts, fpout);
323    fputc ('\n', fpout);
324    mutt_write_mime_body (a->parts, fpout);
325 @@ -1614,7 +1614,7 @@ int mutt_write_rfc822_header (FILE *fp, 
326      }
327  
328      /* Add the MIME headers */
329 -    fputs ("Mime-Version: 1.0\n", fp);
330 +    fputs ("MIME-Version: 1.0\n", fp);
331      mutt_write_mime_header (attach, fp);
332    }
333  
334 Index: mutt/thread.c
335 ===================================================================
336 RCS file: /home/roessler/cvs/mutt/thread.c,v
337 retrieving revision 3.15
338 retrieving revision 3.16
339 diff -u -p -u -a -r3.15 -r3.16
340 --- mutt/thread.c       17 Sep 2005 20:46:11 -0000      3.15
341 +++ mutt/thread.c       24 Sep 2005 19:36:35 -0000      3.16
342 @@ -1374,7 +1374,7 @@ static void clean_references (THREAD *br
343      {
344        HEADER *h = cur->message;
345  
346 -      /* clearing the References: header from obsolete Message-Id(s) */
347 +      /* clearing the References: header from obsolete Message-ID(s) */
348        mutt_free_list (&ref->next);
349  
350        h->env->refs_changed = h->changed = 1;
351 Index: mutt/po/ja.po
352 ===================================================================
353 RCS file: /home/roessler/cvs/mutt/po/ja.po,v
354 retrieving revision 3.34
355 retrieving revision 3.35
356 diff -u -p -u -a -r3.34 -r3.35
357 --- mutt/po/ja.po       17 Sep 2005 20:46:13 -0000      3.34
358 +++ mutt/po/ja.po       24 Sep 2005 17:51:17 -0000      3.35
359 @@ -6,15 +6,15 @@
360  #
361  msgid ""
362  msgstr ""
363 -"Project-Id-Version: 1.5.9\n"
364 -"Report-Msgid-Bugs-To: \n"
365 -"POT-Creation-Date: 2005-09-15 16:23+0200\n"
366 -"PO-Revision-Date: 2005-08-12 19:00+0900\n"
367 +"Project-Id-Version: 1.5.11\n"
368 +"POT-Creation-Date: 2005-09-24 22:08+0900\n"
369 +"PO-Revision-Date: 2005-09-24 22:10+0900\n"
370  "Last-Translator: Tamotsu TAKAHASHI <tamo@momonga-linux.org>\n"
371  "Language-Team: mutt-j <mutt-j-users@lists.sourceforge.jp>\n"
372  "MIME-Version: 1.0\n"
373  "Content-Type: text/plain; charset=euc-jp\n"
374  "Content-Transfer-Encoding: 8bit\n"
375 +"Report-Msgid-Bugs-To: Tamo <tamo@momonga-linux.org>\n"
376  
377  #: account.c:154
378  #, c-format
379 @@ -610,7 +610,7 @@ msgstr "·Ù¹ð: '%s' ¤ÏÉÔÀµ¤Ê IDN."
380  msgid "You may not delete the only attachment."
381  msgstr "Í£°ì¤ÎźÉÕ¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Æ¤Ï¤¤¤±¤Ê¤¤¡£"
382  
383 -#: compose.c:601 send.c:1492
384 +#: compose.c:601 send.c:1499
385  #, c-format
386  msgid "Bad IDN in \"%s\": '%s'"
387  msgstr "\"%s\" Ãæ¤ËÉÔÀµ¤Ê IDN: '%s'"
388 @@ -908,7 +908,7 @@ msgstr "¥¨¥é¡¼: Éü¹æ²½/¸¡¾Ú¤¬¼ºÇÔ¤·¤¿: %
389  msgid "Error: copy data failed\n"
390  msgstr "¥¨¥é¡¼: ¥Ç¡¼¥¿¤Î¥³¥Ô¡¼¤Ë¼ºÇÔ¤·¤¿\n"
391  
392 -#: crypt-gpgme.c:2074 pgp.c:410
393 +#: crypt-gpgme.c:2074 pgp.c:418
394  msgid ""
395  "[-- BEGIN PGP MESSAGE --]\n"
396  "\n"
397 @@ -916,11 +916,11 @@ msgstr ""
398  "[-- PGP ¥á¥Ã¥»¡¼¥¸³«»Ï --]\n"
399  "\n"
400  
401 -#: crypt-gpgme.c:2076 pgp.c:412
402 +#: crypt-gpgme.c:2076 pgp.c:420
403  msgid "[-- BEGIN PGP PUBLIC KEY BLOCK --]\n"
404  msgstr "[-- PGP ¸ø³«¸°¥Ö¥í¥Ã¥¯³«»Ï --]\n"
405  
406 -#: crypt-gpgme.c:2079 pgp.c:414
407 +#: crypt-gpgme.c:2079 pgp.c:422
408  msgid ""
409  "[-- BEGIN PGP SIGNED MESSAGE --]\n"
410  "\n"
411 @@ -928,19 +928,19 @@ msgstr ""
412  "[-- PGP ½ð̾¥á¥Ã¥»¡¼¥¸³«»Ï --]\n"
413  "\n"
414  
415 -#: crypt-gpgme.c:2106 pgp.c:440
416 +#: crypt-gpgme.c:2106 pgp.c:448
417  msgid "[-- END PGP MESSAGE --]\n"
418  msgstr "[-- PGP¥á¥Ã¥»¡¼¥¸½ªÎ» --]\n"
419  
420 -#: crypt-gpgme.c:2108 pgp.c:444
421 +#: crypt-gpgme.c:2108 pgp.c:452
422  msgid "[-- END PGP PUBLIC KEY BLOCK --]\n"
423  msgstr "[-- PGP ¸ø³«¸°¥Ö¥í¥Ã¥¯½ªÎ» --]\n"
424  
425 -#: crypt-gpgme.c:2110 pgp.c:446
426 +#: crypt-gpgme.c:2110 pgp.c:454
427  msgid "[-- END PGP SIGNED MESSAGE --]\n"
428  msgstr "[-- PGP ½ð̾¥á¥Ã¥»¡¼¥¸½ªÎ» --]\n"
429  
430 -#: crypt-gpgme.c:2131 pgp.c:476
431 +#: crypt-gpgme.c:2131 pgp.c:484
432  msgid ""
433  "[-- Error: could not find beginning of PGP message! --]\n"
434  "\n"
435 @@ -948,7 +948,7 @@ msgstr ""
436  "[-- ¥¨¥é¡¼: PGP ¥á¥Ã¥»¡¼¥¸¤Î³«»ÏÅÀ¤òȯ¸«¤Ç¤­¤Ê¤«¤Ã¤¿! --]\n"
437  "\n"
438  
439 -#: crypt-gpgme.c:2162 pgp.c:905
440 +#: crypt-gpgme.c:2162 pgp.c:913
441  msgid ""
442  "[-- Error: malformed PGP/MIME message! --]\n"
443  "\n"
444 @@ -956,7 +956,7 @@ msgstr ""
445  "[-- ¥¨¥é¡¼: ÉÔÀµ¤Ê·Á¼°¤Î PGP/MIME ¥á¥Ã¥»¡¼¥¸! --]\n"
446  "\n"
447  
448 -#: crypt-gpgme.c:2174 crypt-gpgme.c:2240 pgp.c:918
449 +#: crypt-gpgme.c:2174 crypt-gpgme.c:2240 pgp.c:926
450  msgid "[-- Error: could not create temporary file! --]\n"
451  msgstr "[-- ¥¨¥é¡¼: °ì»þ¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Ê¤«¤Ã¤¿! --]\n"
452  
453 @@ -968,7 +968,7 @@ msgstr ""
454  "[-- °Ê²¼¤Î¥Ç¡¼¥¿¤Ï PGP/MIME ¤Ç½ð̾¤ª¤è¤Ó°Å¹æ²½¤µ¤ì¤Æ¤¤¤ë --]\n"
455  "\n"
456  
457 -#: crypt-gpgme.c:2187 pgp.c:927
458 +#: crypt-gpgme.c:2187 pgp.c:935
459  msgid ""
460  "[-- The following data is PGP/MIME encrypted --]\n"
461  "\n"
462 @@ -980,7 +980,7 @@ msgstr ""
463  msgid "[-- End of PGP/MIME signed and encrypted data --]\n"
464  msgstr "[-- PGP/MIME ½ð̾¤ª¤è¤Ó°Å¹æ²½¥Ç¡¼¥¿½ªÎ» --]\n"
465  
466 -#: crypt-gpgme.c:2210 pgp.c:947
467 +#: crypt-gpgme.c:2210 pgp.c:955
468  msgid "[-- End of PGP/MIME encrypted data --]\n"
469  msgstr "[-- PGP/MIME °Å¹æ²½¥Ç¡¼¥¿½ªÎ» --]\n"
470  
471 @@ -1050,7 +1050,6 @@ msgid "Key Type ..: %s, %lu bit %s\n"
472  msgstr "¸°¼ïÊÌ ...........: %s, %lu ¥Ó¥Ã¥È %s\n"
473  
474  #: crypt-gpgme.c:3013 crypt-gpgme.c:3156
475 -#, c-format
476  msgid "Key Usage .: "
477  msgstr "¸°Ç½ÎÏ ...........: "
478  
479 @@ -1077,7 +1076,6 @@ msgid "Serial-No .: 0x%s\n"
480  msgstr "¥·¥ê¥¢¥ëÈÖ¹æ .....: 0x%s\n"
481  
482  #: crypt-gpgme.c:3076
483 -#, c-format
484  msgid "Issued By .: "
485  msgstr "ȯ¹Ô¼Ô ...........: "
486  
487 @@ -1212,12 +1210,12 @@ msgstr "%s ËÜÅö¤Ë¤³¤Î¸°¤ò»ÈÍÑ?"
488  msgid "Looking for keys matching \"%s\"..."
489  msgstr "\"%s\" ¤Ë°ìÃפ¹¤ë¸°¤ò¸¡º÷Ãæ..."
490  
491 -#: crypt-gpgme.c:4002 pgp.c:1154
492 +#: crypt-gpgme.c:4002 pgp.c:1162
493  #, c-format
494  msgid "Use keyID = \"%s\" for %s?"
495  msgstr "¸° ID = \"%s\" ¤ò %s ¤Ë»È¤¦?"
496  
497 -#: crypt-gpgme.c:4038 pgp.c:1188 smime.c:665 smime.c:790
498 +#: crypt-gpgme.c:4038 pgp.c:1196 smime.c:665 smime.c:790
499  #, c-format
500  msgid "Enter keyID for %s: "
501  msgstr "%s ¤Î¸° ID ÆþÎÏ: "
502 @@ -1248,8 +1246,7 @@ msgstr "esabmfc"
503  
504  #. sign (a)s
505  #. unset_option(OPTCRYPTCHECKTRUST);
506 -#. sign (a)s
507 -#: crypt-gpgme.c:4152 pgp.c:1563 smime.c:1990
508 +#: crypt-gpgme.c:4152 pgp.c:1571 smime.c:1990
509  msgid "Sign as: "
510  msgstr "½ð̾¤Ë»È¤¦¸°: "
511  
512 @@ -1286,7 +1283,7 @@ msgid "Message can't be sent inline.  Re
513  msgstr "¥á¥Ã¥»¡¼¥¸¤ò¥¤¥ó¥é¥¤¥ó¤ÇÁ÷¿®¤Ç¤­¤Ê¤¤¡£PGP/MIME ¤ò»È¤¦?"
514  
515  #. abort
516 -#: crypt.c:158 send.c:1444
517 +#: crypt.c:158 send.c:1451
518  msgid "Mail not sent."
519  msgstr "¥á¡¼¥ë¤ÏÁ÷¿®¤µ¤ì¤Ê¤«¤Ã¤¿¡£"
520  
521 @@ -1518,90 +1515,90 @@ msgstr "Æɤ߽Ф·ÀìÍѥ⡼¥É¤Ç¥á¡¼¥ë¥Ü¥Ã¥¯
522  msgid "Open mailbox"
523  msgstr "¥á¡¼¥ë¥Ü¥Ã¥¯¥¹¤ò¥ª¡¼¥×¥ó"
524  
525 -#: curs_main.c:1085 mx.c:512 mx.c:658
526 +#: curs_main.c:1093 mx.c:512 mx.c:658
527  #, c-format
528  msgid "%s is not a mailbox."
529  msgstr "%s ¤Ï¥á¡¼¥ë¥Ü¥Ã¥¯¥¹¤Ç¤Ï¤Ê¤¤¡£"
530  
531 -#: curs_main.c:1180
532 +#: curs_main.c:1188
533  msgid "Exit Mutt without saving?"
534  msgstr "Êݸ¤·¤Ê¤¤¤Ç Mutt ¤òÈ´¤±¤ë?"
535  
536 -#: curs_main.c:1198 curs_main.c:1230 curs_main.c:1692 curs_main.c:1724
537 +#: curs_main.c:1206 curs_main.c:1238 curs_main.c:1700 curs_main.c:1732
538  #: flags.c:293 thread.c:1022 thread.c:1077 thread.c:1132
539  msgid "Threading is not enabled."
540  msgstr "¥¹¥ì¥Ã¥Éɽ¼¨¤¬Í­¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Ê¤¤¡£"
541  
542 -#: curs_main.c:1210
543 +#: curs_main.c:1218
544  msgid "Thread broken"
545  msgstr "¥¹¥ì¥Ã¥É¤¬³°¤µ¤ì¤¿"
546  
547 -#: curs_main.c:1232
548 +#: curs_main.c:1240
549  msgid "No Message-ID: header available to link thread"
550  msgstr "Message-ID ¥Ø¥Ã¥À¤¬ÍøÍѤǤ­¤Ê¤¤¤Î¤Ç¥¹¥ì¥Ã¥É¤ò¤Ä¤Ê¤²¤é¤ì¤Ê¤¤"
551  
552 -#: curs_main.c:1234
553 +#: curs_main.c:1242
554  msgid "First, please tag a message to be linked here"
555  msgstr "¤½¤ÎÁ°¤Ë¡¢¤³¤³¤Ø¤Ä¤Ê¤²¤¿¤¤¥á¥Ã¥»¡¼¥¸¤Ë¥¿¥°¤òÉÕ¤±¤Æ¤ª¤¯¤³¤È"
556  
557 -#: curs_main.c:1246
558 +#: curs_main.c:1254
559  msgid "Threads linked"
560  msgstr "¥¹¥ì¥Ã¥É¤¬¤Ä¤Ê¤¬¤Ã¤¿"
561  
562 -#: curs_main.c:1249
563 +#: curs_main.c:1257
564  msgid "No thread linked"
565  msgstr "¥¹¥ì¥Ã¥É¤Ï¤Ä¤Ê¤¬¤é¤Ê¤«¤Ã¤¿"
566  
567 -#: curs_main.c:1285 curs_main.c:1310
568 +#: curs_main.c:1293 curs_main.c:1318
569  msgid "You are on the last message."
570  msgstr "¤¹¤Ç¤ËºÇ¸å¤Î¥á¥Ã¥»¡¼¥¸¡£"
571  
572 -#: curs_main.c:1292 curs_main.c:1336
573 +#: curs_main.c:1300 curs_main.c:1344
574  msgid "No undeleted messages."
575  msgstr "̤ºï½ü¥á¥Ã¥»¡¼¥¸¤¬¤Ê¤¤¡£"
576  
577 -#: curs_main.c:1329 curs_main.c:1353
578 +#: curs_main.c:1337 curs_main.c:1361
579  msgid "You are on the first message."
580  msgstr "¤¹¤Ç¤ËºÇ½é¤Î¥á¥Ã¥»¡¼¥¸¡£"
581  
582 -#: curs_main.c:1428 pattern.c:1361
583 +#: curs_main.c:1436 pattern.c:1366
584  msgid "Search wrapped to top."
585  msgstr "¸¡º÷¤Ï°ìÈÖ¾å¤ËÌá¤Ã¤¿¡£"
586  
587 -#: curs_main.c:1437 pattern.c:1372
588 +#: curs_main.c:1445 pattern.c:1377
589  msgid "Search wrapped to bottom."
590  msgstr "¸¡º÷¤Ï°ìÈÖ²¼¤ËÌá¤Ã¤¿¡£"
591  
592 -#: curs_main.c:1478
593 +#: curs_main.c:1486
594  msgid "No new messages"
595  msgstr "¿·Ãå¥á¥Ã¥»¡¼¥¸¤¬¤Ê¤¤"
596  
597 -#: curs_main.c:1478
598 +#: curs_main.c:1486
599  msgid "No unread messages"
600  msgstr "̤ÆÉ¥á¥Ã¥»¡¼¥¸¤¬¤Ê¤¤"
601  
602  # ÆüËܸì¤Ç¤Ï¸ì½ç¤¬°ã¤¦¤Î¤Ç¤¹ (T_T
603 -#: curs_main.c:1479
604 +#: curs_main.c:1487
605  msgid " in this limited view"
606  msgstr " (¤³¤ÎÀ©¸Âɽ¼¨¾õÂ֤ǤÏ)"
607  
608 -#: curs_main.c:1500 pager.c:2403
609 +#: curs_main.c:1508 pager.c:2403
610  msgid "Can't change 'important' flag on POP server."
611  msgstr "POP ¥µ¡¼¥Ð¾å¤Ç¤Ï¡Ö½ÅÍסץե饰¤òÊѹ¹¤Ç¤­¤Ê¤¤¡£"
612  
613 -#: curs_main.c:1624
614 +#: curs_main.c:1632
615  msgid "No more threads."
616  msgstr "¤â¤¦¥¹¥ì¥Ã¥É¤¬¤Ê¤¤¡£"
617  
618 -#: curs_main.c:1626
619 +#: curs_main.c:1634
620  msgid "You are on the first thread."
621  msgstr "¤¹¤Ç¤ËºÇ½é¤Î¥¹¥ì¥Ã¥É¡£"
622  
623 -#: curs_main.c:1710
624 +#: curs_main.c:1718
625  msgid "Thread contains unread messages."
626  msgstr "¥¹¥ì¥Ã¥ÉÃæ¤Ë̤ÆÉ¥á¥Ã¥»¡¼¥¸¤¬¤¢¤ë¡£"
627  
628 -#: curs_main.c:1897
629 +#: curs_main.c:1905
630  msgid "Can't edit message on POP server."
631  msgstr "POP ¥µ¡¼¥Ð¾å¤Ç¤Ï¥á¥Ã¥»¡¼¥¸¤òÊÔ½¸¤Ç¤­¤Ê¤¤¡£"
632  
633 @@ -1886,7 +1883,6 @@ msgid "Help for %s"
634  msgstr "%s ¤Î¥Ø¥ë¥×"
635  
636  #: hook.c:246
637 -#, c-format
638  msgid "unhook: Can't do unhook * from within a hook."
639  msgstr "unhook: ¥Õ¥Ã¥¯Æ⤫¤é¤Ï unhook * ¤Ç¤­¤Ê¤¤"
640  
641 @@ -2070,21 +2066,21 @@ msgstr "imap_sync_mailbox: ºï½ü¤Ë¼ºÇÔ¤·¤
642  msgid "CLOSE failed"
643  msgstr "¥¯¥í¡¼¥º¤Ë¼ºÇÔ¤·¤¿"
644  
645 -#: imap/imap.c:1388
646 +#: imap/imap.c:1387
647  #, c-format
648  msgid "Header search without header name: %s"
649  msgstr "¸¡º÷¤¹¤ë¥Ø¥Ã¥À̾¤Î»ØÄ꤬¤Ê¤¤: %s"
650  
651 -#: imap/imap.c:1536
652 +#: imap/imap.c:1535
653  msgid "Bad mailbox name"
654  msgstr "ÉÔÀµ¤Ê¥á¡¼¥ë¥Ü¥Ã¥¯¥¹Ì¾"
655  
656 -#: imap/imap.c:1559
657 +#: imap/imap.c:1558
658  #, c-format
659  msgid "Subscribing to %s..."
660  msgstr "%s ¤Î¹ØÆɤò³«»ÏÃæ..."
661  
662 -#: imap/imap.c:1561
663 +#: imap/imap.c:1560
664  #, c-format
665  msgid "Unsubscribing to %s..."
666  msgstr "%s ¤Î¹ØÆɤò¼è¤ê¾Ã¤·Ãæ..."
667 @@ -2136,127 +2132,129 @@ msgstr "¥á¥Ã¥»¡¼¥¸ %d ¤ò %s ¤Ë¥³¥Ô¡¼Ãæ..
668  msgid "Continue?"
669  msgstr "·Ñ³?"
670  
671 -#: init.c:427
672 +#: init.c:57 init.c:1277 pager.c:57
673 +msgid "Not available in this menu."
674 +msgstr "¤³¤Î¥á¥Ë¥å¡¼¤Ç¤ÏÍøÍѤǤ­¤Ê¤¤¡£"
675 +
676 +#: init.c:438
677  #, c-format
678  msgid "Bad regexp: %s"
679  msgstr "ÉÔÀµ¤ÊÀµµ¬É½¸½: %s"
680  
681 -#: init.c:686
682 +#: init.c:697
683  msgid "spam: no matching pattern"
684  msgstr "spam: °ìÃפ¹¤ë¥Ñ¥¿¡¼¥ó¤¬¤Ê¤¤"
685  
686 -#: init.c:688
687 +#: init.c:699
688  msgid "nospam: no matching pattern"
689  msgstr "nospam: °ìÃפ¹¤ë¥Ñ¥¿¡¼¥ó¤¬¤Ê¤¤"
690  
691 -#: init.c:891
692 +#: init.c:902
693  msgid "alias: no address"
694  msgstr "alias (ÊÌ̾): ¥¢¥É¥ì¥¹¤¬¤Ê¤¤"
695  
696 -#: init.c:936
697 +#: init.c:947
698  #, c-format
699  msgid "Warning: Bad IDN '%s' in alias '%s'.\n"
700  msgstr "·Ù¹ð: ÉÔÀµ¤Ê IDN '%s' ¤¬¥¨¥¤¥ê¥¢¥¹ '%s' Ãæ¤Ë¤¢¤ë¡£\n"
701  
702 -#: init.c:1014
703 +#: init.c:1026
704  msgid "invalid header field"
705  msgstr "ÉÔÀµ¤Ê¤Ø¥Ã¥À¥Õ¥£¡¼¥ë¥É"
706  
707 -#: init.c:1067
708 +#: init.c:1079
709  #, c-format
710  msgid "%s: unknown sorting method"
711  msgstr "%s ¤ÏÉÔÌÀ¤ÊÀ°ÎóÊýË¡"
712  
713 -#: init.c:1177
714 +#: init.c:1189
715  #, c-format
716  msgid "mutt_restore_default(%s): error in regexp: %s\n"
717  msgstr "mutt_restore_default(%s): Àµµ¬É½¸½¤Ç¥¨¥é¡¼: %s\n"
718  
719 -#: init.c:1242
720 +#: init.c:1254
721  #, c-format
722  msgid "%s: unknown variable"
723  msgstr "%s ¤ÏÉÔÌÀ¤ÊÊÑ¿ô"
724  
725 -#: init.c:1251
726 -#, c-format
727 +#: init.c:1263
728  msgid "prefix is illegal with reset"
729  msgstr "reset ¤È¶¦¤Ë»È¤¦ÀÜƬ¼­¤¬ÉÔÀµ"
730  
731 -#: init.c:1257
732 -#, c-format
733 +#: init.c:1269
734  msgid "value is illegal with reset"
735  msgstr "reset ¤È¶¦¤Ë»È¤¦Ãͤ¬ÉÔÀµ"
736  
737 -#: init.c:1296
738 +#: init.c:1322
739  #, c-format
740  msgid "%s is set"
741  msgstr "%s ¤ÏÀßÄꤵ¤ì¤Æ¤¤¤ë"
742  
743 -#: init.c:1296
744 +#: init.c:1322
745  #, c-format
746  msgid "%s is unset"
747  msgstr "%s ¤Ï²ò½ü¤µ¤ì¤Æ¤¤¤ë"
748  
749 -#: init.c:1486
750 +#: init.c:1517
751  #, c-format
752  msgid "%s: invalid mailbox type"
753  msgstr "%s ¤ÏÉÔÀµ¤Ê¥á¡¼¥ë¥Ü¥Ã¥¯¥¹·Á¼°"
754  
755 -#: init.c:1511 init.c:1556
756 +#: init.c:1543 init.c:1589
757  #, c-format
758  msgid "%s: invalid value"
759  msgstr "%s ¤ÏÉÔÀµ¤ÊÃÍ"
760  
761 -#: init.c:1597
762 +#: init.c:1630
763  #, c-format
764  msgid "%s: Unknown type."
765  msgstr "%s ¤ÏÉÔÌÀ¤Ê¥¿¥¤¥×"
766  
767 -#: init.c:1623
768 +#: init.c:1657
769  #, c-format
770  msgid "%s: unknown type"
771  msgstr "%s ¤ÏÉÔÌÀ¤Ê¥¿¥¤¥×"
772  
773 -#: init.c:1682
774 +#: init.c:1716
775  #, c-format
776  msgid "Error in %s, line %d: %s"
777  msgstr "%s Ãæ¤Î %d ¹ÔÌܤǥ¨¥é¡¼: %s"
778  
779  #. the muttrc source keyword
780 -#: init.c:1705
781 +#: init.c:1739
782  #, c-format
783  msgid "source: errors in %s"
784  msgstr "source: %s Ãæ¤Ç¥¨¥é¡¼"
785  
786 -#: init.c:1706
787 +#: init.c:1740
788  #, c-format
789  msgid "source: reading aborted due too many errors in %s"
790  msgstr "source: %s Ãæ¤Ë¥¨¥é¡¼¤¬Â¿¤¹¤®¤ë¤Î¤ÇÆɤ߽Ф·Ãæ»ß"
791  
792 -#: init.c:1720
793 +#: init.c:1754
794  #, c-format
795  msgid "source: error at %s"
796  msgstr "source: %s ¤Ç¥¨¥é¡¼"
797  
798 -#: init.c:1725
799 +#: init.c:1759
800  msgid "source: too many arguments"
801  msgstr "source: °ú¿ô¤¬Â¿¤¹¤®¤ë"
802  
803 -#: init.c:1776
804 +#: init.c:1810
805  #, c-format
806  msgid "%s: unknown command"
807  msgstr "%s: ÉÔÌÀ¤Ê¥³¥Þ¥ó¥É"
808  
809 -#: init.c:2220
810 +#: init.c:2258
811  #, c-format
812  msgid "Error in command line: %s\n"
813  msgstr "¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¥¨¥é¡¼: %s\n"
814  
815 -#: init.c:2270
816 +#: init.c:2308
817  msgid "unable to determine home directory"
818  msgstr "¥Û¡¼¥à¥Ç¥£¥ì¥¯¥È¥ê¤ò¼±Ê̤Ǥ­¤Ê¤¤"
819  
820 -#: init.c:2278
821 +#: init.c:2316
822  msgid "unable to determine username"
823  msgstr "¥æ¡¼¥¶Ì¾¤ò¼±Ê̤Ǥ­¤Ê¤¤"
824  
825 @@ -3122,15 +3120,15 @@ msgstr "¥á¥â¥êÉÔ­!"
826  #: main.c:59
827  msgid ""
828  "To contact the developers, please mail to <mutt-dev@mutt.org>.\n"
829 -"To report a bug, please use the flea(1) utility.\n"
830 +"To report a bug, please visit http://bugs.mutt.org/.\n"
831  msgstr ""
832  "³«È¯¼Ô(ËܲÈ)¤ËÏ¢Íí¤ò¤È¤ë¤Ë¤Ï <mutt-dev@mutt.org> ¤Ø¥á¡¼¥ë¤»¤è¡£\n"
833 -"¥Ð¥°¤ò¥ì¥Ý¡¼¥È¤¹¤ë¤Ë¤Ï flea (1) ¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤ò»ÈÍѤ»¤è¡£\n"
834 +"¥Ð¥°¤ò¥ì¥Ý¡¼¥È¤¹¤ë¤Ë¤Ï http://bugs.mutt.org/ ¤ò»²¾È¤Î¤³¤È¡£\n"
835  "ÆüËܸìÈǤΥХ°¥ì¥Ý¡¼¥È¤ª¤è¤ÓÏ¢Íí¤Ï mutt-j-users ML ¤Ø¡£\n"
836  
837  #: main.c:63
838  msgid ""
839 -"Copyright (C) 1996-2002 Michael R. Elkins and others.\n"
840 +"Copyright (C) 1996-2005 Michael R. Elkins and others.\n"
841  "Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.\n"
842  "Mutt is free software, and you are welcome to redistribute it\n"
843  "under certain conditions; type `mutt -vv' for details.\n"
844 @@ -3146,9 +3144,12 @@ msgid ""
845  "Copyright (C) 1999-2002 Tommi Komulainen <Tommi.Komulainen@iki.fi>\n"
846  "Copyright (C) 2000-2002 Edmund Grimley Evans <edmundo@rano.org>\n"
847  "\n"
848 -"Lots of others not mentioned here contributed lots of code,\n"
849 -"fixes, and suggestions.\n"
850 -"\n"
851 +"Many others not mentioned here contributed code, fixes,\n"
852 +"and suggestions.\n"
853 +msgstr ""
854 +
855 +#: main.c:81
856 +msgid ""
857  "    This program is free software; you can redistribute it and/or modify\n"
858  "    it under the terms of the GNU General Public License as published by\n"
859  "    the Free Software Foundation; either version 2 of the License, or\n"
860 @@ -3158,13 +3159,17 @@ msgid ""
861  "    but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
862  "    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
863  "    GNU General Public License for more details.\n"
864 -"\n"
865 +msgstr ""
866 +
867 +#: main.c:91
868 +msgid ""
869  "    You should have received a copy of the GNU General Public License\n"
870  "    along with this program; if not, write to the Free Software\n"
871 -"    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.\n"
872 +"    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-"
873 +"1301, USA.\n"
874  msgstr ""
875  
876 -#: main.c:107
877 +#: main.c:108
878  msgid ""
879  "usage: mutt [ -nRyzZ ] [ -e <cmd> ] [ -F <file> ] [ -m <type> ] [ -f "
880  "<file> ]\n"
881 @@ -3177,13 +3182,6 @@ msgid ""
882  "[ -i <file> ] [ -s <subj> ] [ -b <addr> ] [ -c <addr> ] <addr> [ ... ]\n"
883  "       mutt [ -n ] [ -e <cmd> ] [ -F <file> ] -p\n"
884  "       mutt -v[v]\n"
885 -"\n"
886 -"options:\n"
887 -"  -A <alias>\texpand the given alias\n"
888 -"  -a <file>\tattach a file to the message\n"
889 -"  -b <address>\tspecify a blind carbon-copy (BCC) address\n"
890 -"  -c <address>\tspecify a carbon-copy (CC) address\n"
891 -"  -D\t\tprint the value of all variables to stdout"
892  msgstr ""
893  "»ÈÍÑË¡: mutt [-nRyzZ] [-e <¥³¥Þ¥ó¥É>] [-F <¥Õ¥¡¥¤¥ë>] [-m <¥¿¥¤¥×>] \n"
894  "             [-f <¥Õ¥¡¥¤¥ë>]\n"
895 @@ -3197,7 +3195,16 @@ msgstr ""
896  "             [-c <¥¢¥É¥ì¥¹>] <¥¢¥É¥ì¥¹> [ ... ]\n"
897  "        mutt [-n] [-e <¥³¥Þ¥ó¥É>] [-F <¥Õ¥¡¥¤¥ë>] -p\n"
898  "        mutt -v[v]\n"
899 -"\n"
900 +
901 +#: main.c:116
902 +msgid ""
903 +"options:\n"
904 +"  -A <alias>\texpand the given alias\n"
905 +"  -a <file>\tattach a file to the message\n"
906 +"  -b <address>\tspecify a blind carbon-copy (BCC) address\n"
907 +"  -c <address>\tspecify a carbon-copy (CC) address\n"
908 +"  -D\t\tprint the value of all variables to stdout"
909 +msgstr ""
910  "¥ª¥×¥·¥ç¥ó:\n"
911  "  -A <ÊÌ̾>\t»ØÄꤷ¤¿ÊÌ̾¤ÎŸ³«\n"
912  "  -a <¥Õ¥¡¥¤¥ë>\t¥á¥Ã¥»¡¼¥¸¤Ë¥Õ¥¡¥¤¥ë¤òźÉÕ\n"
913 @@ -3205,11 +3212,11 @@ msgstr ""
914  "  -c <¥¢¥É¥ì¥¹>\tcarbon-copy (CC) ¥¢¥É¥ì¥¹¤Î»ØÄê\n"
915  "  -D\t\tÊÑ¿ô¤ò¤¹¤Ù¤Æɸ½à½ÐÎϤØɽ¼¨"
916  
917 -#: main.c:122
918 +#: main.c:124
919  msgid "  -d <level>\tlog debugging output to ~/.muttdebug0"
920  msgstr "  -d <¥ì¥Ù¥ë>\t¥Ç¥Ð¥°½ÐÎϤò ~/.muttdebug0 ¤Ëµ­Ï¿"
921  
922 -#: main.c:125
923 +#: main.c:127
924  msgid ""
925  "  -e <command>\tspecify a command to be executed after initialization\n"
926  "  -f <file>\tspecify which mailbox to read\n"
927 @@ -3218,7 +3225,19 @@ msgid ""
928  "  -i <file>\tspecify a file which Mutt should include in the body\n"
929  "  -m <type>\tspecify a default mailbox type\n"
930  "  -n\t\tcauses Mutt not to read the system Muttrc\n"
931 -"  -p\t\trecall a postponed message\n"
932 +"  -p\t\trecall a postponed message"
933 +msgstr ""
934 +"  -e <¥³¥Þ¥ó¥É>\t½é´ü²½¸å¤Ë¼Â¹Ô¤¹¤ë¥³¥Þ¥ó¥É¤Î»ØÄê\n"
935 +"  -f <¥Õ¥¡¥¤¥ë>\tÆɤ߽Ф·¥á¡¼¥ë¥Ü¥Ã¥¯¥¹¤Î»ØÄê\n"
936 +"  -F <¥Õ¥¡¥¤¥ë>\tÂåÂØ muttrc ¥Õ¥¡¥¤¥ë¤Î»ØÄê\n"
937 +"  -H <¥Õ¥¡¥¤¥ë>\t¤Ø¥Ã¥À¤òÆɤि¤á¤Ë²¼½ñ¥Õ¥¡¥¤¥ë¤ò»ØÄê\n"
938 +"  -i <¥Õ¥¡¥¤¥ë>\tÊÖ¿®»þ¤Ë Mutt ¤¬ÁÞÆþ¤¹¤ë¥Õ¥¡¥¤¥ë¤Î»ØÄê\n"
939 +"  -m <¥¿¥¤¥×>\t¥á¡¼¥ë¥Ü¥Ã¥¯¥¹·Á¼°¤Î»ØÄê\n"
940 +"  -n\t\t¥·¥¹¥Æ¥à´ûÄê¤Î Muttrc ¤òÆɤޤʤ¤¤³¤È¤Î»ØÄê\n"
941 +"  -p\t\tÊݸ¤µ¤ì¤Æ¤¤¤ë (½ñ¤­¤«¤±) ¥á¥Ã¥»¡¼¥¸¤ÎºÆÆɤ߽Ф·¤Î»ØÄê"
942 +
943 +#: main.c:136
944 +msgid ""
945  "  -Q <variable>\tquery a configuration variable\n"
946  "  -R\t\topen mailbox in read-only mode\n"
947  "  -s <subj>\tspecify a subject (must be in quotes if it has spaces)\n"
948 @@ -3229,15 +3248,7 @@ msgid ""
949  "  -Z\t\topen the first folder with new message, exit immediately if none\n"
950  "  -h\t\tthis help message"
951  msgstr ""
952 -"  -e <¥³¥Þ¥ó¥É>\t½é´ü²½¸å¤Ë¼Â¹Ô¤¹¤ë¥³¥Þ¥ó¥É¤Î»ØÄê\n"
953 -"  -f <¥Õ¥¡¥¤¥ë>\tÆɤ߽Ф·¥á¡¼¥ë¥Ü¥Ã¥¯¥¹¤Î»ØÄê\n"
954 -"  -F <¥Õ¥¡¥¤¥ë>\tÂåÂØ muttrc ¥Õ¥¡¥¤¥ë¤Î»ØÄê\n"
955 -"  -H <¥Õ¥¡¥¤¥ë>\t¤Ø¥Ã¥À¤òÆɤि¤á¤Ë²¼½ñ¥Õ¥¡¥¤¥ë¤ò»ØÄê\n"
956 -"  -i <¥Õ¥¡¥¤¥ë>\tÊÖ¿®»þ¤Ë Mutt ¤¬ÁÞÆþ¤¹¤ë¥Õ¥¡¥¤¥ë¤Î»ØÄê\n"
957 -"  -m <¥¿¥¤¥×>\t¥á¡¼¥ë¥Ü¥Ã¥¯¥¹·Á¼°¤Î»ØÄê\n"
958 -"  -n\t\t¥·¥¹¥Æ¥à´ûÄê¤Î Muttrc ¤òÆɤޤʤ¤¤³¤È¤Î»ØÄê\n"
959 -"  -p\t\tÊݸ¤µ¤ì¤Æ¤¤¤ë (½ñ¤­¤«¤±) ¥á¥Ã¥»¡¼¥¸¤ÎºÆÆɤ߽Ф·¤Î»ØÄê\n"
960 -"  -Q <variable>\tÀßÄêÊÑ¿ô¤ÎÌ䤤¹ç¤ï¤»\n"
961 +"  -Q <ÊÑ¿ô>\tÀßÄêÊÑ¿ô¤ÎÌ䤤¹ç¤ï¤»\n"
962  "  -R\t\t¥á¡¼¥ë¥Ü¥Ã¥¯¥¹¤òÆɤ߽Ф·ÀìÍѥ⡼¥É¤Ç¥ª¡¼¥×¥ó¤¹¤ë¤³¤È¤Î»ØÄê\n"
963  "  -s <Âê̾>\tÂê̾¤Î»ØÄê (¶õÇò¤¬¤¢¤ë¾ì¹ç¤Ë¤Ï°úÍÑÉä¤Ç¤¯¤¯¤ë¤³¤È)\n"
964  "  -v\t\t¥Ð¡¼¥¸¥ç¥ó¤È¥³¥ó¥Ñ¥¤¥ë»þ»ØÄê¤Îɽ¼¨\n"
965 @@ -3247,7 +3258,7 @@ msgstr ""
966  "  -Z\t\t¿·Ãå¥á¥Ã¥»¡¼¥¸¤¬Ìµ¤±¤ì¤Ð¤¹¤°¤Ë½ªÎ»\n"
967  "  -h\t\t¤³¤Î¥Ø¥ë¥×¥á¥Ã¥»¡¼¥¸"
968  
969 -#: main.c:181
970 +#: main.c:185
971  msgid ""
972  "\n"
973  "Compile options:"
974 @@ -3255,47 +3266,47 @@ msgstr ""
975  "\n"
976  "¥³¥ó¥Ñ¥¤¥ë»þ¥ª¥×¥·¥ç¥ó:"
977  
978 -#: main.c:487
979 +#: main.c:494
980  msgid "Error initializing terminal."
981  msgstr "üËö½é´ü²½¥¨¥é¡¼"
982  
983 -#: main.c:597
984 +#: main.c:604
985  #, c-format
986  msgid "Debugging at level %d.\n"
987  msgstr "¥ì¥Ù¥ë %d ¤Ç¥Ç¥Ð¥Ã¥°Ãæ¡£\n"
988  
989 -#: main.c:599
990 +#: main.c:606
991  msgid "DEBUG was not defined during compilation.  Ignored.\n"
992  msgstr "DEBUG ¤¬¥³¥ó¥Ñ¥¤¥ë»þ¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤«¤Ã¤¿¡£Ìµ»ë¤¹¤ë¡£\n"
993  
994 -#: main.c:749
995 +#: main.c:758
996  #, c-format
997  msgid "%s does not exist. Create it?"
998  msgstr "%s ¤¬Â¸ºß¤·¤Ê¤¤¡£ºîÀ®?"
999  
1000 -#: main.c:753
1001 +#: main.c:762
1002  #, c-format
1003  msgid "Can't create %s: %s."
1004  msgstr "%s ¤¬ %s ¤Î¤¿¤á¤ËºîÀ®¤Ç¤­¤Ê¤¤¡£"
1005  
1006 -#: main.c:798
1007 +#: main.c:807
1008  msgid "No recipients specified.\n"
1009  msgstr "¼õ¿®¼Ô¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¡£\n"
1010  
1011 -#: main.c:884
1012 +#: main.c:893
1013  #, c-format
1014  msgid "%s: unable to attach file.\n"
1015  msgstr "%s: ¥Õ¥¡¥¤¥ë¤òźÉդǤ­¤Ê¤¤¡£\n"
1016  
1017 -#: main.c:904
1018 +#: main.c:913
1019  msgid "No mailbox with new mail."
1020  msgstr "¿·Ãå¥á¡¼¥ë¤Î¤¢¤ë¥á¡¼¥ë¥Ü¥Ã¥¯¥¹¤Ï¤Ê¤¤¡£"
1021  
1022 -#: main.c:913
1023 +#: main.c:922
1024  msgid "No incoming mailboxes defined."
1025  msgstr "ÅþÃåÍѥ᡼¥ë¥Ü¥Ã¥¯¥¹¤¬Ì¤ÄêµÁ¡£"
1026  
1027 -#: main.c:941
1028 +#: main.c:950
1029  msgid "Mailbox is empty."
1030  msgstr "¥á¡¼¥ë¥Ü¥Ã¥¯¥¹¤¬¶õ¡£"
1031  
1032 @@ -3391,19 +3402,19 @@ msgstr "¤¹¤Ç¤ËºÇ¸å¤Î¥¨¥ó¥È¥ê¡£"
1033  msgid "You are on the first entry."
1034  msgstr "¤¹¤Ç¤ËºÇ½é¤Î¥¨¥ó¥È¥ê¡£"
1035  
1036 -#: menu.c:718 pattern.c:1303
1037 +#: menu.c:718 pattern.c:1308
1038  msgid "Search for: "
1039  msgstr "¸¡º÷¥Ñ¥¿¡¼¥ó: "
1040  
1041 -#: menu.c:719 pattern.c:1304
1042 +#: menu.c:719 pattern.c:1309
1043  msgid "Reverse search for: "
1044  msgstr "µÕ½ç¸¡º÷¥Ñ¥¿¡¼¥ó: "
1045  
1046 -#: menu.c:729 pattern.c:1336
1047 +#: menu.c:729 pattern.c:1341
1048  msgid "No search pattern."
1049  msgstr "¸¡º÷¥Ñ¥¿¡¼¥ó¤¬¤Ê¤¤¡£"
1050  
1051 -#: menu.c:759 pager.c:1980 pager.c:1996 pager.c:2104 pattern.c:1405
1052 +#: menu.c:759 pager.c:1980 pager.c:1996 pager.c:2104 pattern.c:1410
1053  msgid "Not found."
1054  msgstr "¸«¤Ä¤«¤é¤Ê¤«¤Ã¤¿¡£"
1055  
1056 @@ -3517,7 +3528,6 @@ msgid "Unknown"
1057  msgstr "ÉÔÌÀ"
1058  
1059  #: mutt_ssl.c:417 mutt_ssl_gnutls.c:381
1060 -#, c-format
1061  msgid "[unable to calculate]"
1062  msgstr "[·×»»ÉÔǽ]"
1063  
1064 @@ -3542,7 +3552,6 @@ msgid "This certificate was issued by:"
1065  msgstr "¤³¤Î¾ÚÌÀ½ñ¤Îȯ¹Ô¸µ:"
1066  
1067  #: mutt_ssl.c:651 mutt_ssl_gnutls.c:712
1068 -#, c-format
1069  msgid "This certificate is valid"
1070  msgstr "¤³¤Î¾ÚÌÀ½ñ¤ÎÍ­¸ú´ü´Ö¤Ï"
1071  
1072 @@ -3816,10 +3825,6 @@ msgstr "¥á¥Ã¥»¡¼¥¸¤ò½ñ¤­¹þ¤á¤Ê¤¤"
1073  msgid "Integer overflow -- can't allocate memory."
1074  msgstr "·å¤¢¤Õ¤ì -- ¥á¥â¥ê¤ò³ä¤êÅö¤Æ¤é¤ì¤Ê¤¤¡£"
1075  
1076 -#: pager.c:57
1077 -msgid "Not available in this menu."
1078 -msgstr "¤³¤Î¥á¥Ë¥å¡¼¤Ç¤ÏÍøÍѤǤ­¤Ê¤¤¡£"
1079 -
1080  #: pager.c:1484
1081  msgid "PrevPg"
1082  msgstr "Á°ÊÇ"
1083 @@ -3874,81 +3879,84 @@ msgstr "¥Þ¥ë¥Á¥Ñ¡¼¥È¤Î¥á¥Ã¥»¡¼¥¸¤À¤¬ bou
1084  msgid "Error in expression: %s"
1085  msgstr "±¦µ­¤Î¼°Ãæ¤Ë¥¨¥é¡¼: %s"
1086  
1087 -#: pattern.c:389
1088 +#: pattern.c:268
1089 +msgid "Empty expression"
1090 +msgstr "¶õ¤ÎÀµµ¬É½¸½"
1091 +
1092 +#: pattern.c:394
1093  #, c-format
1094  msgid "Invalid day of month: %s"
1095  msgstr "%s ¤ÏÉÔÀµ¤ÊÆüÉÕ"
1096  
1097 -#: pattern.c:403
1098 +#: pattern.c:408
1099  #, c-format
1100  msgid "Invalid month: %s"
1101  msgstr "%s ¤ÏÉÔÀµ¤Ê·î"
1102  
1103  #. getDate has its own error message, don't overwrite it here
1104 -#: pattern.c:555
1105 +#: pattern.c:560
1106  #, c-format
1107  msgid "Invalid relative date: %s"
1108  msgstr "%s ¤ÏÉÔÀµ¤ÊÁêÂзîÆü"
1109  
1110 -#: pattern.c:569
1111 +#: pattern.c:574
1112  msgid "error in expression"
1113  msgstr "¼°Ãæ¤Ë¥¨¥é¡¼"
1114  
1115 -#: pattern.c:784 pattern.c:894
1116 +#: pattern.c:789 pattern.c:899
1117  #, c-format
1118  msgid "error in pattern at: %s"
1119  msgstr "%s ¥Ñ¥¿¡¼¥óÃæ¤Ë¥¨¥é¡¼"
1120  
1121 -#: pattern.c:834
1122 +#: pattern.c:839
1123  #, c-format
1124  msgid "%c: invalid command"
1125  msgstr "%c ¤ÏÉÔÀµ¤Ê¥³¥Þ¥ó¥É"
1126  
1127 -#: pattern.c:840
1128 +#: pattern.c:845
1129  #, c-format
1130  msgid "%c: not supported in this mode"
1131  msgstr "%c ¤Ï¤³¤Î¥â¡¼¥É¤Ç¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤"
1132  
1133 -#: pattern.c:853
1134 -#, c-format
1135 +#: pattern.c:858
1136  msgid "missing parameter"
1137  msgstr "¥Ñ¥é¥á¡¼¥¿¤¬¤Ê¤¤"
1138  
1139 -#: pattern.c:869
1140 +#: pattern.c:874
1141  #, c-format
1142  msgid "mismatched parenthesis: %s"
1143  msgstr "Âбþ¤¹¤ë³ç¸Ì¤¬¤Ê¤¤: %s"
1144  
1145 -#: pattern.c:901
1146 +#: pattern.c:906
1147  msgid "empty pattern"
1148  msgstr "¥Ñ¥¿¡¼¥ó¤¬¶õ"
1149  
1150 -#: pattern.c:1117
1151 +#: pattern.c:1122
1152  #, c-format
1153  msgid "error: unknown op %d (report this error)."
1154  msgstr "¥¨¥é¡¼: ÉÔÌÀ¤Ê op %d (¤³¤Î¥¨¥é¡¼¤òÊó¹ð¤»¤è)¡£"
1155  
1156 -#: pattern.c:1193 pattern.c:1322
1157 +#: pattern.c:1198 pattern.c:1327
1158  msgid "Compiling search pattern..."
1159  msgstr "¸¡º÷¥Ñ¥¿¡¼¥ó¤ò¥³¥ó¥Ñ¥¤¥ëÃæ..."
1160  
1161 -#: pattern.c:1212
1162 +#: pattern.c:1217
1163  msgid "Executing command on matching messages..."
1164  msgstr "¥á¥Ã¥»¡¼¥¸¥Ñ¥¿¡¼¥ó¸¡º÷¤Î¤¿¤á¤Ë¥³¥Þ¥ó¥É¼Â¹ÔÃæ..."
1165  
1166 -#: pattern.c:1275
1167 +#: pattern.c:1280
1168  msgid "No messages matched criteria."
1169  msgstr "¥Ñ¥¿¡¼¥ó¤Ë°ìÃפ¹¤ë¥á¥Ã¥»¡¼¥¸¤¬¤Ê¤«¤Ã¤¿¡£"
1170  
1171 -#: pattern.c:1364
1172 +#: pattern.c:1369
1173  msgid "Search hit bottom without finding match"
1174  msgstr "°ìÈÖ²¼¤Þ¤Ç¡¢²¿¤â¸¡º÷¤Ë°ìÃפ·¤Ê¤«¤Ã¤¿¡£"
1175  
1176 -#: pattern.c:1375
1177 +#: pattern.c:1380
1178  msgid "Search hit top without finding match"
1179  msgstr "°ìÈÖ¾å¤Þ¤Ç¡¢²¿¤â¸¡º÷¤Ë°ìÃפ·¤Ê¤«¤Ã¤¿¡£"
1180  
1181 -#: pattern.c:1397
1182 +#: pattern.c:1402
1183  msgid "Search interrupted."
1184  msgstr "¸¡º÷¤¬ÃæÃǤµ¤ì¤¿¡£"
1185  
1186 @@ -3960,11 +3968,11 @@ msgstr "PGP ¥Ñ¥¹¥Õ¥ì¡¼¥ºÆþÎÏ:"
1187  msgid "PGP passphrase forgotten."
1188  msgstr "PGP ¥Ñ¥¹¥Õ¥ì¡¼¥º¤¬¥á¥â¥ê¤«¤é¾Ãµî¤µ¤ì¤¿¡£"
1189  
1190 -#: pgp.c:345
1191 +#: pgp.c:353
1192  msgid "[-- Error: unable to create PGP subprocess! --]\n"
1193  msgstr "[-- ¥¨¥é¡¼: PGP »Ò¥×¥í¥»¥¹¤òºîÀ®¤Ç¤­¤Ê¤«¤Ã¤¿! --]\n"
1194  
1195 -#: pgp.c:379 pgp.c:620 pgp.c:824
1196 +#: pgp.c:387 pgp.c:628 pgp.c:832
1197  msgid ""
1198  "[-- End of PGP output --]\n"
1199  "\n"
1200 @@ -3972,20 +3980,20 @@ msgstr ""
1201  "[-- PGP ½ÐÎϽªÎ» --]\n"
1202  "\n"
1203  
1204 -#: pgp.c:392 pgp.c:956
1205 +#: pgp.c:400 pgp.c:964
1206  msgid "Could not decrypt PGP message"
1207  msgstr "PGP ¥á¥Ã¥»¡¼¥¸¤òÉü¹æ²½¤Ç¤­¤Ê¤«¤Ã¤¿"
1208  
1209  #. clear 'Invoking...' message, since there's no error
1210 -#: pgp.c:441 pgp.c:952
1211 +#: pgp.c:449 pgp.c:960
1212  msgid "PGP message successfully decrypted."
1213  msgstr "PGP ¥á¥Ã¥»¡¼¥¸¤ÎÉü¹æ²½¤ËÀ®¸ù¤·¤¿¡£"
1214  
1215 -#: pgp.c:728
1216 +#: pgp.c:736
1217  msgid "Internal error. Inform <roessler@does-not-exist.org>."
1218  msgstr "ÆâÉô¥¨¥é¡¼¡£<roessler@does-not-exist.org> ¤ËÊó¹ð¤»¤è¡£"
1219  
1220 -#: pgp.c:789
1221 +#: pgp.c:797
1222  msgid ""
1223  "[-- Error: could not create a PGP subprocess! --]\n"
1224  "\n"
1225 @@ -3993,32 +4001,32 @@ msgstr ""
1226  "[-- ¥¨¥é¡¼: PGP »Ò¥×¥í¥»¥¹¤òºîÀ®¤Ç¤­¤Ê¤«¤Ã¤¿! --]\n"
1227  "\n"
1228  
1229 -#: pgp.c:833
1230 +#: pgp.c:841
1231  msgid "Decryption failed"
1232  msgstr "Éü¹æ²½¤Ë¼ºÇÔ¤·¤¿"
1233  
1234 -#: pgp.c:1008
1235 +#: pgp.c:1016
1236  msgid "Can't open PGP subprocess!"
1237  msgstr "PGP »Ò¥×¥í¥»¥¹¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Ê¤¤!"
1238  
1239 -#: pgp.c:1444
1240 +#: pgp.c:1452
1241  msgid "Can't invoke PGP"
1242  msgstr "PGP µ¯Æ°¤Ç¤­¤Ê¤¤"
1243  
1244 -#: pgp.c:1545
1245 +#: pgp.c:1553
1246  #, c-format
1247  msgid "PGP (e)ncrypt, (s)ign, sign (a)s, (b)oth, %s, or (c)lear? "
1248  msgstr "PGP e:°Å¹æ²½, s:½ð̾, a:½ð̾¸°ÁªÂò, b:°Å¹æ+½ð̾, %s, c:¤Ê¤· "
1249  
1250 -#: pgp.c:1546
1251 +#: pgp.c:1554
1252  msgid "PGP/M(i)ME"
1253  msgstr "i:PGP/MIME"
1254  
1255 -#: pgp.c:1546
1256 +#: pgp.c:1554
1257  msgid "(i)nline"
1258  msgstr "i:¥¤¥ó¥é¥¤¥ó"
1259  
1260 -#: pgp.c:1548
1261 +#: pgp.c:1556
1262  msgid "esabifc"
1263  msgstr "esabifc"
1264  
1265 @@ -4058,7 +4066,6 @@ msgid "PGP Key %s."
1266  msgstr "PGP ¸° %s"
1267  
1268  #: pop.c:91 pop_lib.c:201
1269 -#, c-format
1270  msgid "Command TOP is not supported by server."
1271  msgstr "¥³¥Þ¥ó¥É TOP ¤ò¥µ¡¼¥Ð¤¬¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤¡£"
1272  
1273 @@ -4067,7 +4074,6 @@ msgid "Can't write header to temporary f
1274  msgstr "¥Ø¥Ã¥À¤ò°ì»þ¥Õ¥¡¥¤¥ë¤Ë½ñ¤­¹þ¤á¤Ê¤¤!"
1275  
1276  #: pop.c:199 pop_lib.c:203
1277 -#, c-format
1278  msgid "Command UIDL is not supported by server."
1279  msgstr "¥³¥Þ¥ó¥É UIDL ¤ò¥µ¡¼¥Ð¤¬¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤¡£"
1280  
1281 @@ -4131,7 +4137,6 @@ msgid "APOP authentication failed."
1282  msgstr "APOP Ç§¾Ú¤Ë¼ºÇÔ¤·¤¿¡£"
1283  
1284  #: pop_auth.c:243
1285 -#, c-format
1286  msgid "Command USER is not supported by server."
1287  msgstr "¥³¥Þ¥ó¥É USER ¤Ï¥µ¡¼¥Ð¤¬¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤¡£"
1288  
1289 @@ -4201,7 +4206,6 @@ msgid "Query command not defined."
1290  msgstr "Ì䤤¹ç¤ï¤»¥³¥Þ¥ó¥É¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤¤¡£"
1291  
1292  #: query.c:290
1293 -#, c-format
1294  msgid "Query"
1295  msgstr "Ì䤤¹ç¤ï¤»"
1296  
1297 @@ -4323,7 +4327,7 @@ msgstr "%s ¤òºîÀ®¤Ç¤­¤Ê¤¤¡£"
1298  msgid "Can't find any tagged messages."
1299  msgstr "¥¿¥°ÉÕ¤­¥á¥Ã¥»¡¼¥¸¤¬°ì¤Ä¤â¸«¤Ä¤«¤é¤Ê¤¤¡£"
1300  
1301 -#: recvcmd.c:749 send.c:715
1302 +#: recvcmd.c:749 send.c:721
1303  msgid "No mailing lists found!"
1304  msgstr "¥á¡¼¥ê¥ó¥°¥ê¥¹¥È¤¬¸«¤Ä¤«¤é¤Ê¤«¤Ã¤¿!"
1305  
1306 @@ -4444,82 +4448,82 @@ msgstr "%s%s ¤Ø¤Î¥Õ¥©¥í¡¼¥¢¥Ã¥×?"
1307  #. This could happen if the user tagged some messages and then did
1308  #. * a limit such that none of the tagged message are visible.
1309  #.
1310 -#: send.c:690
1311 +#: send.c:696
1312  msgid "No tagged messages are visible!"
1313  msgstr "²Ä»ë¤Ê¥¿¥°ÉÕ¤­¥á¥Ã¥»¡¼¥¸¤¬¤Ê¤¤!"
1314  
1315 -#: send.c:741
1316 +#: send.c:747
1317  msgid "Include message in reply?"
1318  msgstr "ÊÖ¿®¤Ë¥á¥Ã¥»¡¼¥¸¤ò´Þ¤á¤ë¤«?"
1319  
1320 -#: send.c:746
1321 +#: send.c:752
1322  msgid "Including quoted message..."
1323  msgstr "°úÍÑ¥á¥Ã¥»¡¼¥¸¤ò¼è¤ê¹þ¤ßÃæ..."
1324  
1325 -#: send.c:756
1326 +#: send.c:762
1327  msgid "Could not include all requested messages!"
1328  msgstr "¤¹¤Ù¤Æ¤ÎÍ׵ᤵ¤ì¤¿¥á¥Ã¥»¡¼¥¸¤ò¼è¤ê¹þ¤á¤Ê¤«¤Ã¤¿!"
1329  
1330 -#: send.c:770
1331 +#: send.c:776
1332  msgid "Forward as attachment?"
1333  msgstr "źÉÕ¥Õ¥¡¥¤¥ë¤È¤·¤ÆžÁ÷?"
1334  
1335 -#: send.c:774
1336 +#: send.c:780
1337  msgid "Preparing forwarded message..."
1338  msgstr "žÁ÷¥á¥Ã¥»¡¼¥¸¤ò½àÈ÷Ãæ..."
1339  
1340  #. If the user is composing a new message, check to see if there
1341  #. * are any postponed messages first.
1342  #.
1343 -#: send.c:1071
1344 +#: send.c:1077
1345  msgid "Recall postponed message?"
1346  msgstr "½ñ¤­¤«¤±¤Î¥á¥Ã¥»¡¼¥¸¤ò¸Æ¤Ó½Ð¤¹?"
1347  
1348 -#: send.c:1372
1349 +#: send.c:1379
1350  msgid "Edit forwarded message?"
1351  msgstr "žÁ÷¥á¥Ã¥»¡¼¥¸¤òÊÔ½¸?"
1352  
1353 -#: send.c:1400
1354 +#: send.c:1407
1355  msgid "Abort unmodified message?"
1356  msgstr "¥á¥Ã¥»¡¼¥¸¤Ï̤Êѹ¹¡£Ãæ»ß?"
1357  
1358 -#: send.c:1402
1359 +#: send.c:1409
1360  msgid "Aborted unmodified message."
1361  msgstr "̤Êѹ¹¤Î¥á¥Ã¥»¡¼¥¸¤òÃæ»ß¤·¤¿¡£"
1362  
1363 -#: send.c:1471
1364 +#: send.c:1478
1365  msgid "Message postponed."
1366  msgstr "¥á¥Ã¥»¡¼¥¸¤Ï½ñ¤­¤«¤±¤ÇÊÝᤵ¤ì¤¿¡£"
1367  
1368 -#: send.c:1480
1369 +#: send.c:1487
1370  msgid "No recipients are specified!"
1371  msgstr "¼õ¿®¼Ô¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤!"
1372  
1373 -#: send.c:1485
1374 +#: send.c:1492
1375  msgid "No recipients were specified."
1376  msgstr "¼õ¿®¼Ô¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤«¤Ã¤¿¡£"
1377  
1378 -#: send.c:1501
1379 +#: send.c:1508
1380  msgid "No subject, abort sending?"
1381  msgstr "Âê̾¤¬¤Ê¤¤¡£Á÷¿®¤òÃæ»ß?"
1382  
1383 -#: send.c:1505
1384 +#: send.c:1512
1385  msgid "No subject specified."
1386  msgstr "Âê̾¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¡£"
1387  
1388 -#: send.c:1567
1389 +#: send.c:1574
1390  msgid "Sending message..."
1391  msgstr "Á÷¿®Ãæ..."
1392  
1393 -#: send.c:1708
1394 +#: send.c:1715
1395  msgid "Could not send the message."
1396  msgstr "¥á¥Ã¥»¡¼¥¸¤òÁ÷¿®¤Ç¤­¤Ê¤«¤Ã¤¿¡£"
1397  
1398 -#: send.c:1713
1399 +#: send.c:1720
1400  msgid "Mail sent."
1401  msgstr "¥á¡¼¥ë¤òÁ÷¿®¤·¤¿¡£"
1402  
1403 -#: send.c:1713
1404 +#: send.c:1720
1405  msgid "Sending in background."
1406  msgstr "¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¤ÇÁ÷¿®¡£"
1407