OSDN Git Service

[Refactor] #3627 何体に分かれるかそもそも生物とも限らないので英文の分裂メッセージからinto two persons を消した
authorHourier <66951241+Hourier@users.noreply.github.com>
Sun, 8 Oct 2023 11:39:25 +0000 (20:39 +0900)
committerHourier <66951241+Hourier@users.noreply.github.com>
Sun, 15 Oct 2023 13:33:11 +0000 (22:33 +0900)
ついでに日本語も「分裂」から「分離」にした (分裂だと同じもののコピーが作られるニュアンスのため)

src/mspell/mspell-special.cpp

index 009710e..20296b9 100644 (file)
@@ -74,8 +74,7 @@ static MonsterSpellResult spell_RF6_SPECIAL_UNIFICATION(PlayerType *player_ptr,
         }
 
         const auto &m_name = monraces[it_unified->first].name;
-        const auto fmt = _("%sが分裂した!", "%s splits into two persons!");
-        msg_print(format(fmt, m_name.data()));
+        msg_format(_("%sが分離した!", "%s splits!"), m_name.data());
         return MonsterSpellResult::make_valid();
     }