OSDN Git Service

English: use Homonculi as the plural for Homonculous
authorEric Branlund <ebranlund@fastmail.com>
Sun, 15 Oct 2023 09:53:30 +0000 (18:53 +0900)
committerDeskull <61610939+sikabane-works@users.noreply.github.com>
Sun, 15 Oct 2023 09:54:12 +0000 (18:54 +0900)
Resolves https://github.com/hengband/hengband/issues/3604 .

src/locale/english.cpp

index 3fc335c..682190d 100644 (file)
@@ -52,6 +52,8 @@ void plural_aux(char *Name)
         strcpy(&(Name[NameLen - 1]), "ies");
     } else if (suffix(Name, "ouse")) {
         strcpy(&(Name[NameLen - 4]), "ice");
+    } else if (suffix(Name, "ous")) {
+        strcpy(&(Name[NameLen - 3]), "i");
     } else if (suffix(Name, "us")) {
         strcpy(&(Name[NameLen - 2]), "i");
     } else if (suffix(Name, "kelman")) {