From becc68328909f05a5765a83c3d34c3d01c488c7e Mon Sep 17 00:00:00 2001 From: BRODY MORAN Date: Mon, 26 Sep 2022 13:05:03 +0000 Subject: [PATCH] chore: Fix some capitalization --- data/maps/BattleFrontier_BattleTowerLobby/scripts.inc | 2 +- data/text/cable_club.inc | 10 +++++----- src/data/text/move_names.h | 2 +- src/strings.c | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/data/maps/BattleFrontier_BattleTowerLobby/scripts.inc b/data/maps/BattleFrontier_BattleTowerLobby/scripts.inc index 0bf6a9b..8a5f4a0 100644 --- a/data/maps/BattleFrontier_BattleTowerLobby/scripts.inc +++ b/data/maps/BattleFrontier_BattleTowerLobby/scripts.inc @@ -1378,7 +1378,7 @@ BattleFrontier_BattleTowerLobby_Text_ExplainMultiLinkRules: .string "The Link Multi Battle Mode is for two\n" .string "friends to mount a challenge together.\p" .string "You and your friend must be linked with\n" - .string "Wireless Adapters or a Gba Game Link\l" + .string "Wireless Adapters or a GBA Game Link\l" .string "cable.\p" .string "You must choose two Pokémon at\n" .string "the registration counter.\p" diff --git a/data/text/cable_club.inc b/data/text/cable_club.inc index 73c7c8a..496c402 100644 --- a/data/text/cable_club.inc +++ b/data/text/cable_club.inc @@ -10,15 +10,15 @@ CableClub_Text_WhichService: CableClub_Text_TradeUsingLinkCable:: .string "Trade Pokémon with another player\n" - .string "using a Gba Game Link cable.$" + .string "using a GBA Game Link cable.$" CableClub_Text_BattleUsingLinkCable:: .string "You may battle another Trainer\n" - .string "using a Gba Game Link cable.$" + .string "using a GBA Game Link cable.$" CableClub_Text_RecordCornerUsingLinkCable:: .string "You can use the Record Corner with\n" - .string "others using a Gba Game Link cable.$" + .string "others using a GBA Game Link cable.$" @ Unused CableClub_Text_CloseThisMenu: @@ -440,7 +440,7 @@ CableClub_Text_ExplainWirelessClubFirstTime: .string "with your friends in this room.\p" .string "If the Wireless Adapter isn't\n" .string "connected, you may still link up\l" - .string "using a Gba Game Link cable.\p" + .string "using a GBA Game Link cable.\p" .string "If that is the case, you must go\n" .string "to the Direct Corner.\p" .string "I hope you enjoy the Wireless \n" @@ -476,7 +476,7 @@ CableClub_Text_ExplainWirelessClub: .string "to your friends.\p" .string "If the Wireless Adapter isn't\n" .string "connected, you may still link up\l" - .string "using a Gba Game Link cable.\p" + .string "using a GBA Game Link cable.\p" .string "If that is the case, you must go\n" .string "to the Direct Corner.\p" .string "I hope you enjoy the Wireless \n" diff --git a/src/data/text/move_names.h b/src/data/text/move_names.h index ba8fc47..b366177 100644 --- a/src/data/text/move_names.h +++ b/src/data/text/move_names.h @@ -189,7 +189,7 @@ const u8 gMoveNames[MOVES_COUNT][MOVE_NAME_LENGTH + 1] = [MOVE_SWEET_KISS] = _("Sweet Kiss"), [MOVE_BELLY_DRUM] = _("Belly Drum"), [MOVE_SLUDGE_BOMB] = _("Sludge Bomb"), - [MOVE_MUD_SLAP] = _("Mud-slap"), + [MOVE_MUD_SLAP] = _("Mud-Slap"), [MOVE_OCTAZOOKA] = _("Octazooka"), [MOVE_SPIKES] = _("Spikes"), [MOVE_ZAP_CANNON] = _("Zap Cannon"), diff --git a/src/strings.c b/src/strings.c index 3f3120e..2bb9394 100644 --- a/src/strings.c +++ b/src/strings.c @@ -1180,7 +1180,7 @@ const u8 gText_ThunderWave48BP[] = _("Thunder Wave{CLEAR_TO 0x4E}48Bp"); const u8 gText_SwordsDance48BP[] = _("Swords Dance{CLEAR_TO 0x4E}48Bp"); const u8 gText_DefenseCurl16BP[] = _("Defense Curl{CLEAR_TO 0x4E}16Bp"); const u8 gText_Snore24BP[] = _("Snore{CLEAR_TO 0x4E}24Bp"); -const u8 gText_MudSlap24BP[] = _("Mud-slap{CLEAR_TO 0x4E}24Bp"); +const u8 gText_MudSlap24BP[] = _("Mud-Slap{CLEAR_TO 0x4E}24Bp"); const u8 gText_Swift24BP[] = _("Swift{CLEAR_TO 0x4E}24Bp"); const u8 gText_IcyWind24BP[] = _("Icy Wind{CLEAR_TO 0x4E}24Bp"); const u8 gText_Endure48BP[] = _("Endure{CLEAR_TO 0x4E}48Bp");