summaryrefslogtreecommitdiff
path: root/src/strings.c
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2018-07-05 20:11:10 -0700
committerGitHub <noreply@github.com>2018-07-05 20:11:10 -0700
commit9238533346fd97c67e48fee33a204d1e8e2dd0a7 (patch)
treee9a140e919d72891ea825b64fc72a9cfa175ce88 /src/strings.c
parent99c98097753008b1f824a676b36f34ac2857effe (diff)
parentf309f3272ae04be643ee3d1dd9f3fc3e5fc6c699 (diff)
Merge pull request #648 from yenatch/master
fix WarpEvent and label some of pokemon_summary_screen
Diffstat (limited to 'src/strings.c')
-rw-r--r--src/strings.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/strings.c b/src/strings.c
index cded04f96..e9d9ea87e 100644
--- a/src/strings.c
+++ b/src/strings.c
@@ -2,6 +2,7 @@
#include "strings.h"
#if ENGLISH
+
// placeholder strings
const u8 gExpandedPlaceholder_Empty[] = _("");
const u8 gExpandedPlaceholder_Kun[] = _("");
@@ -180,7 +181,8 @@ const u8 gOtherText_OneDash[] = _("-");
const u8 gOtherText_TwoDashes[] = _("--");
const u8 gOtherText_ThreeDashes2[] = _("---");
const u8 gOtherText_MaleSymbol2[] = _("♂");
-const u8 gOtherText_FemaleSymbolAndLv[] = _("♀$Lv.");
+const u8 gOtherText_FemaleSymbol2[] = _("♀");
+const u8 gOtherText_Lv[] = _("Lv.");
const u8 gOtherText_TallPlusAndRightArrow[] = _("{TALL_PLUS}${RIGHT_ARROW}");
const u8 gMenuText_GoBackToPrev[] = _("Go back to the\nprevious menu.");
const u8 gOtherText_WhatWillYouDo[] = _("What would you like to do?");
@@ -926,6 +928,7 @@ const u8 gSystemText_SaveFailed[] = _("Save failed...");
const u8 gSystemText_NoSaveFileNoTime[] = _("There is no save file, so the time\ncan’t be set.");
const u8 gSystemText_ClockAdjustmentUsable[] = _("The in-game clock adjustment system\nis now useable.");
const u8 gSystemText_Saving[] = _("SAVING...\nDON’T TURN OFF THE POWER.");
+
#elif GERMAN
// placeholder strings
@@ -1106,7 +1109,8 @@ const u8 gOtherText_OneDash[] = _("-");
const u8 gOtherText_TwoDashes[] = _("--");
const u8 gOtherText_ThreeDashes2[] = _("---");
const u8 gOtherText_MaleSymbol2[] = _("♂");
-const u8 gOtherText_FemaleSymbolAndLv[] = _("♀$Lv.");
+const u8 gOtherText_FemaleSymbol2[] = _("♀");
+const u8 gOtherText_Lv[] = _("Lv.");
const u8 gOtherText_TallPlusAndRightArrow[] = _("{TALL_PLUS}${RIGHT_ARROW}");
const u8 gMenuText_GoBackToPrev[] = _("Kehre zurück zum\nvorherigen Menü.");
const u8 gOtherText_WhatWillYouDo[] = _("Was möchtest du tun?");