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
10 +2005-09-24 20:03:04 Brendan Cully <brendan@kublai.com> (brendan)
12 + * edit.c: Inflict more needless pain on translators by splitting
13 + EditorHelp to satisfy -pedantic.
15 + * mbox.c, mutt.h, configure.in: Use fseeko/ftello when available
16 + while opening mbox/mmdf. Closes: #2084.
18 +2005-09-24 19:36:35 Alain Bench <veronatif@free.fr> (brendan)
20 + * copy.c, mutt.h, parse.c, sendlib.c, thread.c: Cosmetic fixes to
21 + MIME headers. Closes: #2086.
23 +2005-09-24 17:51:17 TAKAHASHI Tamotsu <ttakah@lapis.plala.or.jp> (brendan)
25 + * po/ja.po: Update to HEAD.
27 +2005-09-23 18:38:36 TAKAHASHI Tamotsu <ttakah@lapis.plala.or.jp> (brendan)
29 + * configure.in: Quote an error message.
31 2005-09-22 16:38:08 Takahashi Tamotsu <ttakah@lapis.plala.or.jp> (brendan)
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
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.])
54 +AH_BOTTOM([/* fseeko portability defines */
56 +# define LOFF_T off_t
59 +# define fseeko fseek
60 +# define ftello ftell
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])
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])
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)
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
94 if (crypt_pgp_decrypt_mime (fpin, &fp, hdr->content, &cur))
96 - fputs ("Mime-Version: 1.0\n", fpout);
97 + fputs ("MIME-Version: 1.0\n", fpout);
100 if ((WithCrypto & APPLICATION_SMIME)
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
110 * SLcurses_waddnstr() can't take a "const char *", so this is only
111 * declared "static" (sigh)
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");
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
133 - addstr (_(EditorHelp));
134 + addstr (_(EditorHelp1));
135 + addstr (_(EditorHelp2));
138 msg->env->bcc = mutt_parse_adrlist (msg->env->bcc, p);
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;
152 + LOFF_T loc, tmploc;
155 #ifdef NFS_ATTRIBUTE_HACK
156 @@ -122,7 +122,7 @@ int mmdf_parse_mailbox (CONTEXT *ctx)
158 if (mutt_strcmp (buf, MMDF_SEP) == 0)
160 - loc = ftell (ctx->fp);
161 + loc = ftello (ctx->fp);
164 if (!ctx->quiet && ReadInc && ((count % ReadInc == 0) || count == 1))
165 @@ -159,7 +159,7 @@ int mmdf_parse_mailbox (CONTEXT *ctx)
167 hdr->env = mutt_read_rfc822_header (ctx->fp, hdr, 0, 0);
169 - loc = ftell (ctx->fp);
170 + loc = ftello (ctx->fp);
172 if (hdr->content->length > 0 && hdr->lines > 0)
174 @@ -186,7 +186,7 @@ int mmdf_parse_mailbox (CONTEXT *ctx)
178 - loc = ftell (ctx->fp);
179 + loc = ftello (ctx->fp);
180 if (fgets (buf, sizeof (buf) - 1, ctx->fp) == NULL)
183 @@ -231,7 +231,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
186 int count = 0, lines = 0;
189 #ifdef NFS_ATTRIBUTE_HACK
190 struct utimbuf newtime;
192 @@ -262,7 +262,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
194 tz = mutt_local_tz (0);
196 - loc = ftell (ctx->fp);
197 + loc = ftello (ctx->fp);
198 while (fgets (buf, sizeof (buf), ctx->fp) != NULL)
200 if (is_from (buf, return_path, sizeof (return_path), &t))
201 @@ -304,9 +304,9 @@ int mbox_parse_mailbox (CONTEXT *ctx)
203 if (curhdr->content->length > 0)
208 - loc = ftell (ctx->fp);
209 + loc = ftello (ctx->fp);
210 tmploc = loc + curhdr->content->length + 1;
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
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)
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 */
227 dprint (1, (debugfile, "mbox_parse_mailbox: fseek() failed\n"));
229 @@ -346,7 +346,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
230 int cl = curhdr->content->length;
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"));
238 @@ -356,7 +356,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
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"));
247 @@ -374,7 +374,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
251 - loc = ftell (ctx->fp);
252 + loc = ftello (ctx->fp);
256 @@ -387,7 +387,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
258 if (PREV->content->length < 0)
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;
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
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
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 */
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;
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,
301 else if (!ascii_strcasecmp (line + 1, "essage-id"))
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);
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);
320 - fputs ("Mime-Version: 1.0\n", fpout);
321 + fputs ("MIME-Version: 1.0\n", fpout);
322 mutt_write_mime_header (a->parts, fpout);
324 mutt_write_mime_body (a->parts, fpout);
325 @@ -1614,7 +1614,7 @@ int mutt_write_rfc822_header (FILE *fp,
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);
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
344 HEADER *h = cur->message;
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);
350 h->env->refs_changed = h->changed = 1;
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
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"
379 @@ -610,7 +610,7 @@ msgstr "·Ù¹ð: '%s' ¤ÏÉÔÀµ¤Ê IDN."
380 msgid "You may not delete the only attachment."
381 msgstr "Í£°ì¤ÎźÉÕ¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Æ¤Ï¤¤¤±¤Ê¤¤¡£"
383 -#: compose.c:601 send.c:1492
384 +#: compose.c:601 send.c:1499
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"
392 -#: crypt-gpgme.c:2074 pgp.c:410
393 +#: crypt-gpgme.c:2074 pgp.c:418
395 "[-- BEGIN PGP MESSAGE --]\n"
397 @@ -916,11 +916,11 @@ msgstr ""
398 "[-- PGP ¥á¥Ã¥»¡¼¥¸³«»Ï --]\n"
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"
406 -#: crypt-gpgme.c:2079 pgp.c:414
407 +#: crypt-gpgme.c:2079 pgp.c:422
409 "[-- BEGIN PGP SIGNED MESSAGE --]\n"
411 @@ -928,19 +928,19 @@ msgstr ""
412 "[-- PGP ½ð̾¥á¥Ã¥»¡¼¥¸³«»Ï --]\n"
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"
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"
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"
430 -#: crypt-gpgme.c:2131 pgp.c:476
431 +#: crypt-gpgme.c:2131 pgp.c:484
433 "[-- Error: could not find beginning of PGP message! --]\n"
435 @@ -948,7 +948,7 @@ msgstr ""
436 "[-- ¥¨¥é¡¼: PGP ¥á¥Ã¥»¡¼¥¸¤Î³«»ÏÅÀ¤òȯ¸«¤Ç¤¤Ê¤«¤Ã¤¿! --]\n"
439 -#: crypt-gpgme.c:2162 pgp.c:905
440 +#: crypt-gpgme.c:2162 pgp.c:913
442 "[-- Error: malformed PGP/MIME message! --]\n"
444 @@ -956,7 +956,7 @@ msgstr ""
445 "[-- ¥¨¥é¡¼: ÉÔÀµ¤Ê·Á¼°¤Î PGP/MIME ¥á¥Ã¥»¡¼¥¸! --]\n"
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"
453 @@ -968,7 +968,7 @@ msgstr ""
454 "[-- °Ê²¼¤Î¥Ç¡¼¥¿¤Ï PGP/MIME ¤Ç½ð̾¤ª¤è¤Ó°Å¹æ²½¤µ¤ì¤Æ¤¤¤ë --]\n"
457 -#: crypt-gpgme.c:2187 pgp.c:927
458 +#: crypt-gpgme.c:2187 pgp.c:935
460 "[-- The following data is PGP/MIME encrypted --]\n"
462 @@ -980,7 +980,7 @@ msgstr ""
463 msgid "[-- End of PGP/MIME signed and encrypted data --]\n"
464 msgstr "[-- PGP/MIME ½ð̾¤ª¤è¤Ó°Å¹æ²½¥Ç¡¼¥¿½ªÎ» --]\n"
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"
471 @@ -1050,7 +1050,6 @@ msgid "Key Type ..: %s, %lu bit %s\n"
472 msgstr "¸°¼ïÊÌ ...........: %s, %lu ¥Ó¥Ã¥È %s\n"
474 #: crypt-gpgme.c:3013 crypt-gpgme.c:3156
476 msgid "Key Usage .: "
477 msgstr "¸°Ç½ÎÏ ...........: "
479 @@ -1077,7 +1076,6 @@ msgid "Serial-No .: 0x%s\n"
480 msgstr "¥·¥ê¥¢¥ëÈÖ¹æ .....: 0x%s\n"
482 #: crypt-gpgme.c:3076
484 msgid "Issued By .: "
485 msgstr "ȯ¹Ô¼Ô ...........: "
487 @@ -1212,12 +1210,12 @@ msgstr "%s ËÜÅö¤Ë¤³¤Î¸°¤ò»ÈÍÑ?"
488 msgid "Looking for keys matching \"%s\"..."
489 msgstr "\"%s\" ¤Ë°ìÃפ¹¤ë¸°¤ò¸¡º÷Ãæ..."
491 -#: crypt-gpgme.c:4002 pgp.c:1154
492 +#: crypt-gpgme.c:4002 pgp.c:1162
494 msgid "Use keyID = \"%s\" for %s?"
495 msgstr "¸° ID = \"%s\" ¤ò %s ¤Ë»È¤¦?"
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
500 msgid "Enter keyID for %s: "
501 msgstr "%s ¤Î¸° ID ÆþÎÏ: "
502 @@ -1248,8 +1246,7 @@ msgstr "esabmfc"
505 #. unset_option(OPTCRYPTCHECKTRUST);
507 -#: crypt-gpgme.c:4152 pgp.c:1563 smime.c:1990
508 +#: crypt-gpgme.c:4152 pgp.c:1571 smime.c:1990
510 msgstr "½ð̾¤Ë»È¤¦¸°: "
512 @@ -1286,7 +1283,7 @@ msgid "Message can't be sent inline. Re
513 msgstr "¥á¥Ã¥»¡¼¥¸¤ò¥¤¥ó¥é¥¤¥ó¤ÇÁ÷¿®¤Ç¤¤Ê¤¤¡£PGP/MIME ¤ò»È¤¦?"
516 -#: crypt.c:158 send.c:1444
517 +#: crypt.c:158 send.c:1451
518 msgid "Mail not sent."
519 msgstr "¥á¡¼¥ë¤ÏÁ÷¿®¤µ¤ì¤Ê¤«¤Ã¤¿¡£"
521 @@ -1518,90 +1515,90 @@ msgstr "Æɤ߽Ф·ÀìÍѥ⡼¥É¤Ç¥á¡¼¥ë¥Ü¥Ã¥¯
523 msgstr "¥á¡¼¥ë¥Ü¥Ã¥¯¥¹¤ò¥ª¡¼¥×¥ó"
525 -#: curs_main.c:1085 mx.c:512 mx.c:658
526 +#: curs_main.c:1093 mx.c:512 mx.c:658
528 msgid "%s is not a mailbox."
529 msgstr "%s ¤Ï¥á¡¼¥ë¥Ü¥Ã¥¯¥¹¤Ç¤Ï¤Ê¤¤¡£"
533 msgid "Exit Mutt without saving?"
534 msgstr "Êݸ¤·¤Ê¤¤¤Ç Mutt ¤òÈ´¤±¤ë?"
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 "¥¹¥ì¥Ã¥Éɽ¼¨¤¬Í¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Ê¤¤¡£"
544 msgid "Thread broken"
545 msgstr "¥¹¥ì¥Ã¥É¤¬³°¤µ¤ì¤¿"
549 msgid "No Message-ID: header available to link thread"
550 msgstr "Message-ID ¥Ø¥Ã¥À¤¬ÍøÍѤǤ¤Ê¤¤¤Î¤Ç¥¹¥ì¥Ã¥É¤ò¤Ä¤Ê¤²¤é¤ì¤Ê¤¤"
554 msgid "First, please tag a message to be linked here"
555 msgstr "¤½¤ÎÁ°¤Ë¡¢¤³¤³¤Ø¤Ä¤Ê¤²¤¿¤¤¥á¥Ã¥»¡¼¥¸¤Ë¥¿¥°¤òÉÕ¤±¤Æ¤ª¤¯¤³¤È"
559 msgid "Threads linked"
560 msgstr "¥¹¥ì¥Ã¥É¤¬¤Ä¤Ê¤¬¤Ã¤¿"
564 msgid "No thread linked"
565 msgstr "¥¹¥ì¥Ã¥É¤Ï¤Ä¤Ê¤¬¤é¤Ê¤«¤Ã¤¿"
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 "¤¹¤Ç¤ËºÇ¸å¤Î¥á¥Ã¥»¡¼¥¸¡£"
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 "̤ºï½ü¥á¥Ã¥»¡¼¥¸¤¬¤Ê¤¤¡£"
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 "¤¹¤Ç¤ËºÇ½é¤Î¥á¥Ã¥»¡¼¥¸¡£"
582 -#: curs_main.c:1428 pattern.c:1361
583 +#: curs_main.c:1436 pattern.c:1366
584 msgid "Search wrapped to top."
585 msgstr "¸¡º÷¤Ï°ìÈÖ¾å¤ËÌá¤Ã¤¿¡£"
587 -#: curs_main.c:1437 pattern.c:1372
588 +#: curs_main.c:1445 pattern.c:1377
589 msgid "Search wrapped to bottom."
590 msgstr "¸¡º÷¤Ï°ìÈÖ²¼¤ËÌá¤Ã¤¿¡£"
594 msgid "No new messages"
595 msgstr "¿·Ãå¥á¥Ã¥»¡¼¥¸¤¬¤Ê¤¤"
599 msgid "No unread messages"
600 msgstr "̤ÆÉ¥á¥Ã¥»¡¼¥¸¤¬¤Ê¤¤"
602 # ÆüËܸì¤Ç¤Ï¸ì½ç¤¬°ã¤¦¤Î¤Ç¤¹ (T_T
605 msgid " in this limited view"
606 msgstr " (¤³¤ÎÀ©¸Âɽ¼¨¾õÂ֤ǤÏ)"
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 ¥µ¡¼¥Ð¾å¤Ç¤Ï¡Ö½ÅÍסץե饰¤òÊѹ¹¤Ç¤¤Ê¤¤¡£"
615 msgid "No more threads."
616 msgstr "¤â¤¦¥¹¥ì¥Ã¥É¤¬¤Ê¤¤¡£"
620 msgid "You are on the first thread."
621 msgstr "¤¹¤Ç¤ËºÇ½é¤Î¥¹¥ì¥Ã¥É¡£"
625 msgid "Thread contains unread messages."
626 msgstr "¥¹¥ì¥Ã¥ÉÃæ¤Ë̤ÆÉ¥á¥Ã¥»¡¼¥¸¤¬¤¢¤ë¡£"
630 msgid "Can't edit message on POP server."
631 msgstr "POP ¥µ¡¼¥Ð¾å¤Ç¤Ï¥á¥Ã¥»¡¼¥¸¤òÊÔ½¸¤Ç¤¤Ê¤¤¡£"
633 @@ -1886,7 +1883,6 @@ msgid "Help for %s"
638 msgid "unhook: Can't do unhook * from within a hook."
639 msgstr "unhook: ¥Õ¥Ã¥¯Æ⤫¤é¤Ï unhook * ¤Ç¤¤Ê¤¤"
641 @@ -2070,21 +2066,21 @@ msgstr "imap_sync_mailbox: ºï½ü¤Ë¼ºÇÔ¤·¤
643 msgstr "¥¯¥í¡¼¥º¤Ë¼ºÇÔ¤·¤¿"
648 msgid "Header search without header name: %s"
649 msgstr "¸¡º÷¤¹¤ë¥Ø¥Ã¥À̾¤Î»ØÄ꤬¤Ê¤¤: %s"
653 msgid "Bad mailbox name"
654 msgstr "ÉÔÀµ¤Ê¥á¡¼¥ë¥Ü¥Ã¥¯¥¹Ì¾"
659 msgid "Subscribing to %s..."
660 msgstr "%s ¤Î¹ØÆɤò³«»ÏÃæ..."
665 msgid "Unsubscribing to %s..."
666 msgstr "%s ¤Î¹ØÆɤò¼è¤ê¾Ã¤·Ãæ..."
667 @@ -2136,127 +2132,129 @@ msgstr "¥á¥Ã¥»¡¼¥¸ %d ¤ò %s ¤Ë¥³¥Ô¡¼Ãæ..
672 +#: init.c:57 init.c:1277 pager.c:57
673 +msgid "Not available in this menu."
674 +msgstr "¤³¤Î¥á¥Ë¥å¡¼¤Ç¤ÏÍøÍѤǤ¤Ê¤¤¡£"
678 msgid "Bad regexp: %s"
679 msgstr "ÉÔÀµ¤ÊÀµµ¬É½¸½: %s"
683 msgid "spam: no matching pattern"
684 msgstr "spam: °ìÃפ¹¤ë¥Ñ¥¿¡¼¥ó¤¬¤Ê¤¤"
688 msgid "nospam: no matching pattern"
689 msgstr "nospam: °ìÃפ¹¤ë¥Ñ¥¿¡¼¥ó¤¬¤Ê¤¤"
693 msgid "alias: no address"
694 msgstr "alias (ÊÌ̾): ¥¢¥É¥ì¥¹¤¬¤Ê¤¤"
699 msgid "Warning: Bad IDN '%s' in alias '%s'.\n"
700 msgstr "·Ù¹ð: ÉÔÀµ¤Ê IDN '%s' ¤¬¥¨¥¤¥ê¥¢¥¹ '%s' Ãæ¤Ë¤¢¤ë¡£\n"
704 msgid "invalid header field"
705 msgstr "ÉÔÀµ¤Ê¤Ø¥Ã¥À¥Õ¥£¡¼¥ë¥É"
710 msgid "%s: unknown sorting method"
711 msgstr "%s ¤ÏÉÔÌÀ¤ÊÀ°ÎóÊýË¡"
716 msgid "mutt_restore_default(%s): error in regexp: %s\n"
717 msgstr "mutt_restore_default(%s): Àµµ¬É½¸½¤Ç¥¨¥é¡¼: %s\n"
722 msgid "%s: unknown variable"
723 msgstr "%s ¤ÏÉÔÌÀ¤ÊÊÑ¿ô"
728 msgid "prefix is illegal with reset"
729 msgstr "reset ¤È¶¦¤Ë»È¤¦ÀÜƬ¼¤¬ÉÔÀµ"
734 msgid "value is illegal with reset"
735 msgstr "reset ¤È¶¦¤Ë»È¤¦Ãͤ¬ÉÔÀµ"
741 msgstr "%s ¤ÏÀßÄꤵ¤ì¤Æ¤¤¤ë"
747 msgstr "%s ¤Ï²ò½ü¤µ¤ì¤Æ¤¤¤ë"
752 msgid "%s: invalid mailbox type"
753 msgstr "%s ¤ÏÉÔÀµ¤Ê¥á¡¼¥ë¥Ü¥Ã¥¯¥¹·Á¼°"
755 -#: init.c:1511 init.c:1556
756 +#: init.c:1543 init.c:1589
758 msgid "%s: invalid value"
759 msgstr "%s ¤ÏÉÔÀµ¤ÊÃÍ"
764 msgid "%s: Unknown type."
765 msgstr "%s ¤ÏÉÔÌÀ¤Ê¥¿¥¤¥×"
770 msgid "%s: unknown type"
771 msgstr "%s ¤ÏÉÔÌÀ¤Ê¥¿¥¤¥×"
776 msgid "Error in %s, line %d: %s"
777 msgstr "%s Ãæ¤Î %d ¹ÔÌܤǥ¨¥é¡¼: %s"
779 #. the muttrc source keyword
783 msgid "source: errors in %s"
784 msgstr "source: %s Ãæ¤Ç¥¨¥é¡¼"
789 msgid "source: reading aborted due too many errors in %s"
790 msgstr "source: %s Ãæ¤Ë¥¨¥é¡¼¤¬Â¿¤¹¤®¤ë¤Î¤ÇÆɤ߽Ф·Ãæ»ß"
795 msgid "source: error at %s"
796 msgstr "source: %s ¤Ç¥¨¥é¡¼"
800 msgid "source: too many arguments"
801 msgstr "source: °ú¿ô¤¬Â¿¤¹¤®¤ë"
806 msgid "%s: unknown command"
807 msgstr "%s: ÉÔÌÀ¤Ê¥³¥Þ¥ó¥É"
812 msgid "Error in command line: %s\n"
813 msgstr "¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¥¨¥é¡¼: %s\n"
817 msgid "unable to determine home directory"
818 msgstr "¥Û¡¼¥à¥Ç¥£¥ì¥¯¥È¥ê¤ò¼±Ê̤Ǥ¤Ê¤¤"
822 msgid "unable to determine username"
823 msgstr "¥æ¡¼¥¶Ì¾¤ò¼±Ê̤Ǥ¤Ê¤¤"
825 @@ -3122,15 +3120,15 @@ msgstr "¥á¥â¥êÉÔÂ!"
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"
832 "³«È¯¼Ô(ËܲÈ)¤ËÏ¢Íí¤ò¤È¤ë¤Ë¤Ï <mutt-dev@mutt.org> ¤Ø¥á¡¼¥ë¤»¤è¡£\n"
833 -"¥Ð¥°¤ò¥ì¥Ý¡¼¥È¤¹¤ë¤Ë¤Ï flea (1) ¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤ò»ÈÍѤ»¤è¡£\n"
834 +"¥Ð¥°¤ò¥ì¥Ý¡¼¥È¤¹¤ë¤Ë¤Ï http://bugs.mutt.org/ ¤ò»²¾È¤Î¤³¤È¡£\n"
835 "ÆüËܸìÈǤΥХ°¥ì¥Ý¡¼¥È¤ª¤è¤ÓÏ¢Íí¤Ï mutt-j-users ML ¤Ø¡£\n"
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"
848 -"Lots of others not mentioned here contributed lots of code,\n"
849 -"fixes, and suggestions.\n"
851 +"Many others not mentioned here contributed code, fixes,\n"
852 +"and suggestions.\n"
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"
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-"
879 "usage: mutt [ -nRyzZ ] [ -e <cmd> ] [ -F <file> ] [ -m <type> ] [ -f "
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"
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"
893 "»ÈÍÑË¡: mutt [-nRyzZ] [-e <¥³¥Þ¥ó¥É>] [-F <¥Õ¥¡¥¤¥ë>] [-m <¥¿¥¤¥×>] \n"
895 @@ -3197,7 +3195,16 @@ msgstr ""
896 " [-c <¥¢¥É¥ì¥¹>] <¥¢¥É¥ì¥¹> [ ... ]\n"
897 " mutt [-n] [-e <¥³¥Þ¥ó¥É>] [-F <¥Õ¥¡¥¤¥ë>] -p\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"
911 " -A <ÊÌ̾>\t»ØÄꤷ¤¿ÊÌ̾¤ÎŸ³«\n"
912 " -a <¥Õ¥¡¥¤¥ë>\t¥á¥Ã¥»¡¼¥¸¤Ë¥Õ¥¡¥¤¥ë¤òźÉÕ\n"
913 @@ -3205,11 +3212,11 @@ msgstr ""
914 " -c <¥¢¥É¥ì¥¹>\tcarbon-copy (CC) ¥¢¥É¥ì¥¹¤Î»ØÄê\n"
915 " -D\t\tÊÑ¿ô¤ò¤¹¤Ù¤Æɸ½à½ÐÎϤØɽ¼¨"
919 msgid " -d <level>\tlog debugging output to ~/.muttdebug0"
920 msgstr " -d <¥ì¥Ù¥ë>\t¥Ç¥Ð¥°½ÐÎϤò ~/.muttdebug0 ¤ËµÏ¿"
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"
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Êݸ¤µ¤ì¤Æ¤¤¤ë (½ñ¤¤«¤±) ¥á¥Ã¥»¡¼¥¸¤ÎºÆÆɤ߽Ф·¤Î»ØÄê"
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"
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¤³¤Î¥Ø¥ë¥×¥á¥Ã¥»¡¼¥¸"
974 @@ -3255,47 +3266,47 @@ msgstr ""
976 "¥³¥ó¥Ñ¥¤¥ë»þ¥ª¥×¥·¥ç¥ó:"
980 msgid "Error initializing terminal."
981 msgstr "üËö½é´ü²½¥¨¥é¡¼"
986 msgid "Debugging at level %d.\n"
987 msgstr "¥ì¥Ù¥ë %d ¤Ç¥Ç¥Ð¥Ã¥°Ãæ¡£\n"
991 msgid "DEBUG was not defined during compilation. Ignored.\n"
992 msgstr "DEBUG ¤¬¥³¥ó¥Ñ¥¤¥ë»þ¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤«¤Ã¤¿¡£Ìµ»ë¤¹¤ë¡£\n"
997 msgid "%s does not exist. Create it?"
998 msgstr "%s ¤¬Â¸ºß¤·¤Ê¤¤¡£ºîÀ®?"
1003 msgid "Can't create %s: %s."
1004 msgstr "%s ¤¬ %s ¤Î¤¿¤á¤ËºîÀ®¤Ç¤¤Ê¤¤¡£"
1008 msgid "No recipients specified.\n"
1009 msgstr "¼õ¿®¼Ô¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¡£\n"
1014 msgid "%s: unable to attach file.\n"
1015 msgstr "%s: ¥Õ¥¡¥¤¥ë¤òźÉդǤ¤Ê¤¤¡£\n"
1019 msgid "No mailbox with new mail."
1020 msgstr "¿·Ãå¥á¡¼¥ë¤Î¤¢¤ë¥á¡¼¥ë¥Ü¥Ã¥¯¥¹¤Ï¤Ê¤¤¡£"
1024 msgid "No incoming mailboxes defined."
1025 msgstr "ÅþÃåÍѥ᡼¥ë¥Ü¥Ã¥¯¥¹¤¬Ì¤ÄêµÁ¡£"
1029 msgid "Mailbox is empty."
1030 msgstr "¥á¡¼¥ë¥Ü¥Ã¥¯¥¹¤¬¶õ¡£"
1032 @@ -3391,19 +3402,19 @@ msgstr "¤¹¤Ç¤ËºÇ¸å¤Î¥¨¥ó¥È¥ê¡£"
1033 msgid "You are on the first entry."
1034 msgstr "¤¹¤Ç¤ËºÇ½é¤Î¥¨¥ó¥È¥ê¡£"
1036 -#: menu.c:718 pattern.c:1303
1037 +#: menu.c:718 pattern.c:1308
1038 msgid "Search for: "
1039 msgstr "¸¡º÷¥Ñ¥¿¡¼¥ó: "
1041 -#: menu.c:719 pattern.c:1304
1042 +#: menu.c:719 pattern.c:1309
1043 msgid "Reverse search for: "
1044 msgstr "µÕ½ç¸¡º÷¥Ñ¥¿¡¼¥ó: "
1046 -#: menu.c:729 pattern.c:1336
1047 +#: menu.c:729 pattern.c:1341
1048 msgid "No search pattern."
1049 msgstr "¸¡º÷¥Ñ¥¿¡¼¥ó¤¬¤Ê¤¤¡£"
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
1054 msgstr "¸«¤Ä¤«¤é¤Ê¤«¤Ã¤¿¡£"
1056 @@ -3517,7 +3528,6 @@ msgid "Unknown"
1059 #: mutt_ssl.c:417 mutt_ssl_gnutls.c:381
1061 msgid "[unable to calculate]"
1064 @@ -3542,7 +3552,6 @@ msgid "This certificate was issued by:"
1065 msgstr "¤³¤Î¾ÚÌÀ½ñ¤Îȯ¹Ô¸µ:"
1067 #: mutt_ssl.c:651 mutt_ssl_gnutls.c:712
1069 msgid "This certificate is valid"
1070 msgstr "¤³¤Î¾ÚÌÀ½ñ¤Î͸ú´ü´Ö¤Ï"
1072 @@ -3816,10 +3825,6 @@ msgstr "¥á¥Ã¥»¡¼¥¸¤ò½ñ¤¹þ¤á¤Ê¤¤"
1073 msgid "Integer overflow -- can't allocate memory."
1074 msgstr "·å¤¢¤Õ¤ì -- ¥á¥â¥ê¤ò³ä¤êÅö¤Æ¤é¤ì¤Ê¤¤¡£"
1077 -msgid "Not available in this menu."
1078 -msgstr "¤³¤Î¥á¥Ë¥å¡¼¤Ç¤ÏÍøÍѤǤ¤Ê¤¤¡£"
1083 @@ -3874,81 +3879,84 @@ msgstr "¥Þ¥ë¥Á¥Ñ¡¼¥È¤Î¥á¥Ã¥»¡¼¥¸¤À¤¬ bou
1084 msgid "Error in expression: %s"
1085 msgstr "±¦µ¤Î¼°Ãæ¤Ë¥¨¥é¡¼: %s"
1089 +msgid "Empty expression"
1090 +msgstr "¶õ¤ÎÀµµ¬É½¸½"
1094 msgid "Invalid day of month: %s"
1095 msgstr "%s ¤ÏÉÔÀµ¤ÊÆüÉÕ"
1100 msgid "Invalid month: %s"
1101 msgstr "%s ¤ÏÉÔÀµ¤Ê·î"
1103 #. getDate has its own error message, don't overwrite it here
1107 msgid "Invalid relative date: %s"
1108 msgstr "%s ¤ÏÉÔÀµ¤ÊÁêÂзîÆü"
1112 msgid "error in expression"
1113 msgstr "¼°Ãæ¤Ë¥¨¥é¡¼"
1115 -#: pattern.c:784 pattern.c:894
1116 +#: pattern.c:789 pattern.c:899
1118 msgid "error in pattern at: %s"
1119 msgstr "%s ¥Ñ¥¿¡¼¥óÃæ¤Ë¥¨¥é¡¼"
1124 msgid "%c: invalid command"
1125 msgstr "%c ¤ÏÉÔÀµ¤Ê¥³¥Þ¥ó¥É"
1130 msgid "%c: not supported in this mode"
1131 msgstr "%c ¤Ï¤³¤Î¥â¡¼¥É¤Ç¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤"
1136 msgid "missing parameter"
1137 msgstr "¥Ñ¥é¥á¡¼¥¿¤¬¤Ê¤¤"
1142 msgid "mismatched parenthesis: %s"
1143 msgstr "Âбþ¤¹¤ë³ç¸Ì¤¬¤Ê¤¤: %s"
1147 msgid "empty pattern"
1148 msgstr "¥Ñ¥¿¡¼¥ó¤¬¶õ"
1153 msgid "error: unknown op %d (report this error)."
1154 msgstr "¥¨¥é¡¼: ÉÔÌÀ¤Ê op %d (¤³¤Î¥¨¥é¡¼¤òÊó¹ð¤»¤è)¡£"
1156 -#: pattern.c:1193 pattern.c:1322
1157 +#: pattern.c:1198 pattern.c:1327
1158 msgid "Compiling search pattern..."
1159 msgstr "¸¡º÷¥Ñ¥¿¡¼¥ó¤ò¥³¥ó¥Ñ¥¤¥ëÃæ..."
1163 msgid "Executing command on matching messages..."
1164 msgstr "¥á¥Ã¥»¡¼¥¸¥Ñ¥¿¡¼¥ó¸¡º÷¤Î¤¿¤á¤Ë¥³¥Þ¥ó¥É¼Â¹ÔÃæ..."
1168 msgid "No messages matched criteria."
1169 msgstr "¥Ñ¥¿¡¼¥ó¤Ë°ìÃפ¹¤ë¥á¥Ã¥»¡¼¥¸¤¬¤Ê¤«¤Ã¤¿¡£"
1173 msgid "Search hit bottom without finding match"
1174 msgstr "°ìÈÖ²¼¤Þ¤Ç¡¢²¿¤â¸¡º÷¤Ë°ìÃפ·¤Ê¤«¤Ã¤¿¡£"
1178 msgid "Search hit top without finding match"
1179 msgstr "°ìÈÖ¾å¤Þ¤Ç¡¢²¿¤â¸¡º÷¤Ë°ìÃפ·¤Ê¤«¤Ã¤¿¡£"
1183 msgid "Search interrupted."
1184 msgstr "¸¡º÷¤¬ÃæÃǤµ¤ì¤¿¡£"
1186 @@ -3960,11 +3968,11 @@ msgstr "PGP ¥Ñ¥¹¥Õ¥ì¡¼¥ºÆþÎÏ:"
1187 msgid "PGP passphrase forgotten."
1188 msgstr "PGP ¥Ñ¥¹¥Õ¥ì¡¼¥º¤¬¥á¥â¥ê¤«¤é¾Ãµî¤µ¤ì¤¿¡£"
1192 msgid "[-- Error: unable to create PGP subprocess! --]\n"
1193 msgstr "[-- ¥¨¥é¡¼: PGP »Ò¥×¥í¥»¥¹¤òºîÀ®¤Ç¤¤Ê¤«¤Ã¤¿! --]\n"
1195 -#: pgp.c:379 pgp.c:620 pgp.c:824
1196 +#: pgp.c:387 pgp.c:628 pgp.c:832
1198 "[-- End of PGP output --]\n"
1200 @@ -3972,20 +3980,20 @@ msgstr ""
1201 "[-- PGP ½ÐÎϽªÎ» --]\n"
1204 -#: pgp.c:392 pgp.c:956
1205 +#: pgp.c:400 pgp.c:964
1206 msgid "Could not decrypt PGP message"
1207 msgstr "PGP ¥á¥Ã¥»¡¼¥¸¤òÉü¹æ²½¤Ç¤¤Ê¤«¤Ã¤¿"
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 ¥á¥Ã¥»¡¼¥¸¤ÎÉü¹æ²½¤ËÀ®¸ù¤·¤¿¡£"
1217 msgid "Internal error. Inform <roessler@does-not-exist.org>."
1218 msgstr "ÆâÉô¥¨¥é¡¼¡£<roessler@does-not-exist.org> ¤ËÊó¹ð¤»¤è¡£"
1223 "[-- Error: could not create a PGP subprocess! --]\n"
1225 @@ -3993,32 +4001,32 @@ msgstr ""
1226 "[-- ¥¨¥é¡¼: PGP »Ò¥×¥í¥»¥¹¤òºîÀ®¤Ç¤¤Ê¤«¤Ã¤¿! --]\n"
1231 msgid "Decryption failed"
1232 msgstr "Éü¹æ²½¤Ë¼ºÇÔ¤·¤¿"
1236 msgid "Can't open PGP subprocess!"
1237 msgstr "PGP »Ò¥×¥í¥»¥¹¤ò¥ª¡¼¥×¥ó¤Ç¤¤Ê¤¤!"
1241 msgid "Can't invoke PGP"
1242 msgstr "PGP µ¯Æ°¤Ç¤¤Ê¤¤"
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:¤Ê¤· "
1258 msgstr "i:¥¤¥ó¥é¥¤¥ó"
1265 @@ -4058,7 +4066,6 @@ msgid "PGP Key %s."
1268 #: pop.c:91 pop_lib.c:201
1270 msgid "Command TOP is not supported by server."
1271 msgstr "¥³¥Þ¥ó¥É TOP ¤ò¥µ¡¼¥Ð¤¬¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤¡£"
1273 @@ -4067,7 +4074,6 @@ msgid "Can't write header to temporary f
1274 msgstr "¥Ø¥Ã¥À¤ò°ì»þ¥Õ¥¡¥¤¥ë¤Ë½ñ¤¹þ¤á¤Ê¤¤!"
1276 #: pop.c:199 pop_lib.c:203
1278 msgid "Command UIDL is not supported by server."
1279 msgstr "¥³¥Þ¥ó¥É UIDL ¤ò¥µ¡¼¥Ð¤¬¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤¡£"
1281 @@ -4131,7 +4137,6 @@ msgid "APOP authentication failed."
1282 msgstr "APOP ǧ¾Ú¤Ë¼ºÇÔ¤·¤¿¡£"
1286 msgid "Command USER is not supported by server."
1287 msgstr "¥³¥Þ¥ó¥É USER ¤Ï¥µ¡¼¥Ð¤¬¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤¡£"
1289 @@ -4201,7 +4206,6 @@ msgid "Query command not defined."
1290 msgstr "Ì䤤¹ç¤ï¤»¥³¥Þ¥ó¥É¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤¤¡£"
1297 @@ -4323,7 +4327,7 @@ msgstr "%s ¤òºîÀ®¤Ç¤¤Ê¤¤¡£"
1298 msgid "Can't find any tagged messages."
1299 msgstr "¥¿¥°ÉÕ¤¥á¥Ã¥»¡¼¥¸¤¬°ì¤Ä¤â¸«¤Ä¤«¤é¤Ê¤¤¡£"
1301 -#: recvcmd.c:749 send.c:715
1302 +#: recvcmd.c:749 send.c:721
1303 msgid "No mailing lists found!"
1304 msgstr "¥á¡¼¥ê¥ó¥°¥ê¥¹¥È¤¬¸«¤Ä¤«¤é¤Ê¤«¤Ã¤¿!"
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.
1312 msgid "No tagged messages are visible!"
1313 msgstr "²Ä»ë¤Ê¥¿¥°ÉÕ¤¥á¥Ã¥»¡¼¥¸¤¬¤Ê¤¤!"
1317 msgid "Include message in reply?"
1318 msgstr "ÊÖ¿®¤Ë¥á¥Ã¥»¡¼¥¸¤ò´Þ¤á¤ë¤«?"
1322 msgid "Including quoted message..."
1323 msgstr "°úÍÑ¥á¥Ã¥»¡¼¥¸¤ò¼è¤ê¹þ¤ßÃæ..."
1327 msgid "Could not include all requested messages!"
1328 msgstr "¤¹¤Ù¤Æ¤ÎÍ׵ᤵ¤ì¤¿¥á¥Ã¥»¡¼¥¸¤ò¼è¤ê¹þ¤á¤Ê¤«¤Ã¤¿!"
1332 msgid "Forward as attachment?"
1333 msgstr "źÉÕ¥Õ¥¡¥¤¥ë¤È¤·¤ÆžÁ÷?"
1337 msgid "Preparing forwarded message..."
1338 msgstr "žÁ÷¥á¥Ã¥»¡¼¥¸¤ò½àÈ÷Ãæ..."
1340 #. If the user is composing a new message, check to see if there
1341 #. * are any postponed messages first.
1345 msgid "Recall postponed message?"
1346 msgstr "½ñ¤¤«¤±¤Î¥á¥Ã¥»¡¼¥¸¤ò¸Æ¤Ó½Ð¤¹?"
1350 msgid "Edit forwarded message?"
1351 msgstr "žÁ÷¥á¥Ã¥»¡¼¥¸¤òÊÔ½¸?"
1355 msgid "Abort unmodified message?"
1356 msgstr "¥á¥Ã¥»¡¼¥¸¤Ï̤Êѹ¹¡£Ãæ»ß?"
1360 msgid "Aborted unmodified message."
1361 msgstr "̤Êѹ¹¤Î¥á¥Ã¥»¡¼¥¸¤òÃæ»ß¤·¤¿¡£"
1365 msgid "Message postponed."
1366 msgstr "¥á¥Ã¥»¡¼¥¸¤Ï½ñ¤¤«¤±¤ÇÊÝᤵ¤ì¤¿¡£"
1370 msgid "No recipients are specified!"
1371 msgstr "¼õ¿®¼Ô¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤!"
1375 msgid "No recipients were specified."
1376 msgstr "¼õ¿®¼Ô¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤«¤Ã¤¿¡£"
1380 msgid "No subject, abort sending?"
1381 msgstr "Âê̾¤¬¤Ê¤¤¡£Á÷¿®¤òÃæ»ß?"
1385 msgid "No subject specified."
1386 msgstr "Âê̾¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¡£"
1390 msgid "Sending message..."
1395 msgid "Could not send the message."
1396 msgstr "¥á¥Ã¥»¡¼¥¸¤òÁ÷¿®¤Ç¤¤Ê¤«¤Ã¤¿¡£"
1401 msgstr "¥á¡¼¥ë¤òÁ÷¿®¤·¤¿¡£"
1405 msgid "Sending in background."
1406 msgstr "¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¤ÇÁ÷¿®¡£"