OSDN Git Service

English message has swapped order for string and integer parameters but was given...
authorEric Branlund <ebranlund@fastmail.com>
Fri, 30 Aug 2019 21:13:53 +0000 (14:13 -0700)
committerEric Branlund <ebranlund@fastmail.com>
Fri, 30 Aug 2019 21:13:53 +0000 (14:13 -0700)
src/bldg.c

index f79e990..e3d981c 100644 (file)
@@ -2155,7 +2155,11 @@ static void castle_quest(void)
 
                        q_ptr->cur_num = 0;
                        name = (r_name + r_ptr->name);
-                       msg_format(_("クエスト: %sを %d体倒す", "Your quest: kill %d %s"), name,q_ptr->max_num);
+#ifdef JP
+                       msg_format("クエスト: %sを %d体倒す", name, q_ptr->max_num);
+#else
+                       msg_format("Your quest: kill %d %s", q_ptr->max_num, name);
+#endif
                }
                else
                {