Skip to content

Commit 4006597

Browse files
committed
French Hint Importance
Thanks SSHDR
1 parent bfd9c61 commit 4006597

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

logic/Location.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,10 @@ std::u16string Location::generateImportanceText(const std::string& language)
198198
}
199199
else if (language == "French")
200200
{
201-
// TODO
201+
// TODO: check this (borrowed from SSHDR fr_FR for now)
202+
required = u"nécessaire";
203+
possiblyRequired = u"potentiellement utile";
204+
notRequired = u"pas nécessaire";
202205
}
203206

204207
// Get all the progression chain locations for this location's item

text_replacements.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ TextReplacements generate_text_replacements(World& world)
217217
// KoRL Barren Dungeon Text
218218
{"01509",
219219
{{"English", CAPITAL + REPLACE(ReplaceTags::PLAYER_NAME) + u", this area is unrequired and\nthere are no valuable items in here. You can\nskip it in full confidence." + TEXT_END},
220-
{"Spanish", CAPITAL + REPLACE(ReplaceTags::PLAYER_NAME) + u", this area is unrequired and\nthere are no valuable items in here. You can\nskip it in full confidence." + TEXT_END},
220+
{"Spanish", CAPITAL + REPLACE(ReplaceTags::PLAYER_NAME) + u", this area is unrequired and\nthere are no valuable items in here. You can\nskip it in full confidence." + TEXT_END}, //TODO:
221221
{"French", CAPITAL + REPLACE(ReplaceTags::PLAYER_NAME) + u", this area is unrequired and\nthere are no valuable items in here. You can\nskip it in full confidence." + TEXT_END}}},
222222

223223
// Savage Labyrinth Hints

0 commit comments

Comments
 (0)