OSDN Git Service

patch src/
[jnethack/source.git] / src / o_init.c
index 17f49b8..ed0cd54 100644 (file)
@@ -2,6 +2,11 @@
 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
 /* NetHack may be freely redistributed.  See license for details. */
 
+/* JNetHack Copyright */
+/* (c) Issei Numata, Naoki Hamada, Shigehiro Miyashita, 1994-2000  */
+/* For 3.4-, Copyright (c) SHIRAKATA Kentaro, 2002-2016            */
+/* JNetHack may be freely redistributed.  See license for details. */
+
 #include "hack.h"
 #include "lev.h" /* save & restore info */
 
@@ -418,7 +423,10 @@ dodiscovered() /* free after Robert Viduya */
     winid tmpwin;
 
     tmpwin = create_nhwindow(NHW_MENU);
+/*JP
     putstr(tmpwin, 0, "Discoveries");
+*/
+    putstr(tmpwin, 0, "\94­\8c©\95¨\88ê\97\97");
     putstr(tmpwin, 0, "");
 
     /* gather "unique objects" into a pseudo-class; note that they'll
@@ -426,7 +434,10 @@ dodiscovered() /* free after Robert Viduya */
     for (i = dis = 0; i < SIZE(uniq_objs); i++)
         if (objects[uniq_objs[i]].oc_name_known) {
             if (!dis++)
+/*JP
                 putstr(tmpwin, iflags.menu_headings, "Unique items");
+*/
+                putstr(tmpwin, iflags.menu_headings, "\93Á\8eê\83A\83C\83e\83\80");
             Sprintf(buf, "  %s", OBJ_NAME(objects[uniq_objs[i]]));
             putstr(tmpwin, 0, buf);
             ++ct;
@@ -462,7 +473,10 @@ dodiscovered() /* free after Robert Viduya */
         }
     }
     if (ct == 0) {
+/*JP
         You("haven't discovered anything yet...");
+*/
+        You("\82Ü\82¾\89½\82à\94­\8c©\82µ\82Ä\82¢\82È\82¢\81D\81D\81D");
     } else
         display_nhwindow(tmpwin, TRUE);
     destroy_nhwindow(tmpwin);