Skip to content

Commit

Permalink
keep consistent use of underscores in translation keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamby777 committed Aug 19, 2024
1 parent 7ddf3e1 commit 2feefbd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 17 deletions.
22 changes: 10 additions & 12 deletions pets-gd/i18n/translations.csv
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@ DG_SPK_CLAY,Clay
DG_SPK_MR_TULIVAE,Mr. Tulivae
DG_SPK_MRS_TULIVAE,Mrs. Tulivae
,
DG_CHECK_CRATE,"It's just a crate. Doesn't look like anything good is inside."
DG_CHECK_CRATES,"It's just a bunch of crates. Doesn't look like they have anything useful."
DG_CHECK_TRASH,"Nothing useful there. Are you that desperate?"
,
DG_RODRICK1_SOYOURE,"So... you're reading a sign, eh? Well..."
DG_RODRICK1_AREYOUSMART,Are you smart?
DG_RODRICK1_NOPE,Nope.
Expand All @@ -142,23 +146,17 @@ DG_RODRICK1_DEFDIDNT,"Yeah, I definitely didn't think so."
DG_RODRICK1_COMEBACK,Come back when you're smart.
,
DG_INTRO1_COMEUNPACK,"Hey, [ETHAN], we're unpacking your stuff! Come help!"
,
DG_INTRO1_OVERHERE,Over here! This is your new room!
,
DG_INTRO1_OVER_HERE,Over here! This is your new room!
DG_INTRO1_WDYT,What do you think?
DG_INTRO1_GREAT,It's great!
DG_INTRO1_ALRIGHT,It's alright...
DG_INTRO1_GREAT_MOM,"Well, I'm glad you like it! I hope you'll be comfortable here."
DG_INTRO1_ALRIGHT_MOM,"I know it's not much, but I hope you'll be comfortable here."
DG_INTRO1_ITSYOURS,"Well, it's all yours. Do you have a specific blanket color in mind?"
DG_INTRO1_LOOKSBETTER,"Wow, it looks even better already!"
DG_INTRO1_ILLBEDOWNSTAIRS,"Alright, I'll be downstairs if you need me."
DG_INTRO1_BRINGFUZZY,"Go bring out Fuzzy from the car, okay?"
DG_INTRO1_ITS_YOURS,"Well, it's all yours. Do you have a specific blanket color in mind?"
DG_INTRO1_LOOKS_BETTER,"Wow, it looks even better already!"
DG_INTRO1_ILL_BE_DOWNSTAIRS,"Alright, I'll be downstairs if you need me."
DG_INTRO1_BRING_FUZZY,"Go bring out Fuzzy from the car, okay?"
DG_INTRO1_MEET_NEIGHBORS,"Here he is! Hey, [ETHAN], come meet the neighbors!"
DG_INTRO1_MR_T,"This is Mr. Tulivae. He lives next door."
DG_INTRO1_HITHERE,"Hi there, [ETHAN]. Pleasure meeting you."
DG_INTRO1_HI_THERE,"Hi there, [ETHAN]. Pleasure meeting you."
DG_INTRO1_HE_SEEMS_NICE,He seems pretty nice. Maybe you should go say hi later.
,
DG_CHECK_CRATE,"It's just a crate. Doesn't look like anything good is inside."
DG_CHECK_CRATES,"It's just a bunch of crates. Doesn't look like they have anything useful."
DG_CHECK_TRASH,"Nothing useful there. Are you that desperate?"
10 changes: 5 additions & 5 deletions pets-gd/quests/intro1.gd
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func on_teleported(target):
func on_house_tp(target):
if phase == 0:
self.phase = 1
await dbox().say_as("[JUNIPER]", ["DG_INTRO1_OVERHERE"])
await dbox().say_as("[JUNIPER]", ["DG_INTRO1_OVER_HERE"])

if target.name == "EthanBedroomExit" and phase == 1:
self.phase = 2
Expand Down Expand Up @@ -52,9 +52,9 @@ func on_house_tp(target):
StatsInterface.set_ethan_bed_color(picked_bedcolor)

await dbox().say_as("[JUNIPER]", [
"DG_INTRO1_LOOKSBETTER",
"DG_INTRO1_ILLBEDOWNSTAIRS",
"DG_INTRO1_BRINGFUZZY",
"DG_INTRO1_LOOKS_BETTER",
"DG_INTRO1_ILL_BE_DOWNSTAIRS",
"DG_INTRO1_BRING_FUZZY",
])

func on_outdoors_tp(target):
Expand All @@ -64,5 +64,5 @@ func on_outdoors_tp(target):
pcb().move_to_relative(-200.0, 0.0)
await pcb().motion_done
await dbox().say_as("[CLAY]", [ "DG_INTRO1_MR_T" ]);
await dbox().say_as("[MR_TULIVAE]", [ "DG_INTRO1_HITHERE" ]);
await dbox().say_as("[MR_TULIVAE]", [ "DG_INTRO1_HI_THERE" ]);
await dbox().say_as("[NARRATOR]", [ "DG_INTRO1_HE_SEEMS_NICE" ]);

0 comments on commit 2feefbd

Please sign in to comment.