Skip to content

Commit 2feefbd

Browse files
committed
keep consistent use of underscores in translation keys
1 parent 7ddf3e1 commit 2feefbd

File tree

2 files changed

+15
-17
lines changed

2 files changed

+15
-17
lines changed

pets-gd/i18n/translations.csv

+10-12
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,10 @@ DG_SPK_CLAY,Clay
133133
DG_SPK_MR_TULIVAE,Mr. Tulivae
134134
DG_SPK_MRS_TULIVAE,Mrs. Tulivae
135135
,
136+
DG_CHECK_CRATE,"It's just a crate. Doesn't look like anything good is inside."
137+
DG_CHECK_CRATES,"It's just a bunch of crates. Doesn't look like they have anything useful."
138+
DG_CHECK_TRASH,"Nothing useful there. Are you that desperate?"
139+
,
136140
DG_RODRICK1_SOYOURE,"So... you're reading a sign, eh? Well..."
137141
DG_RODRICK1_AREYOUSMART,Are you smart?
138142
DG_RODRICK1_NOPE,Nope.
@@ -142,23 +146,17 @@ DG_RODRICK1_DEFDIDNT,"Yeah, I definitely didn't think so."
142146
DG_RODRICK1_COMEBACK,Come back when you're smart.
143147
,
144148
DG_INTRO1_COMEUNPACK,"Hey, [ETHAN], we're unpacking your stuff! Come help!"
145-
,
146-
DG_INTRO1_OVERHERE,Over here! This is your new room!
147-
,
149+
DG_INTRO1_OVER_HERE,Over here! This is your new room!
148150
DG_INTRO1_WDYT,What do you think?
149151
DG_INTRO1_GREAT,It's great!
150152
DG_INTRO1_ALRIGHT,It's alright...
151153
DG_INTRO1_GREAT_MOM,"Well, I'm glad you like it! I hope you'll be comfortable here."
152154
DG_INTRO1_ALRIGHT_MOM,"I know it's not much, but I hope you'll be comfortable here."
153-
DG_INTRO1_ITSYOURS,"Well, it's all yours. Do you have a specific blanket color in mind?"
154-
DG_INTRO1_LOOKSBETTER,"Wow, it looks even better already!"
155-
DG_INTRO1_ILLBEDOWNSTAIRS,"Alright, I'll be downstairs if you need me."
156-
DG_INTRO1_BRINGFUZZY,"Go bring out Fuzzy from the car, okay?"
155+
DG_INTRO1_ITS_YOURS,"Well, it's all yours. Do you have a specific blanket color in mind?"
156+
DG_INTRO1_LOOKS_BETTER,"Wow, it looks even better already!"
157+
DG_INTRO1_ILL_BE_DOWNSTAIRS,"Alright, I'll be downstairs if you need me."
158+
DG_INTRO1_BRING_FUZZY,"Go bring out Fuzzy from the car, okay?"
157159
DG_INTRO1_MEET_NEIGHBORS,"Here he is! Hey, [ETHAN], come meet the neighbors!"
158160
DG_INTRO1_MR_T,"This is Mr. Tulivae. He lives next door."
159-
DG_INTRO1_HITHERE,"Hi there, [ETHAN]. Pleasure meeting you."
161+
DG_INTRO1_HI_THERE,"Hi there, [ETHAN]. Pleasure meeting you."
160162
DG_INTRO1_HE_SEEMS_NICE,He seems pretty nice. Maybe you should go say hi later.
161-
,
162-
DG_CHECK_CRATE,"It's just a crate. Doesn't look like anything good is inside."
163-
DG_CHECK_CRATES,"It's just a bunch of crates. Doesn't look like they have anything useful."
164-
DG_CHECK_TRASH,"Nothing useful there. Are you that desperate?"

pets-gd/quests/intro1.gd

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func on_teleported(target):
2222
func on_house_tp(target):
2323
if phase == 0:
2424
self.phase = 1
25-
await dbox().say_as("[JUNIPER]", ["DG_INTRO1_OVERHERE"])
25+
await dbox().say_as("[JUNIPER]", ["DG_INTRO1_OVER_HERE"])
2626

2727
if target.name == "EthanBedroomExit" and phase == 1:
2828
self.phase = 2
@@ -52,9 +52,9 @@ func on_house_tp(target):
5252
StatsInterface.set_ethan_bed_color(picked_bedcolor)
5353

5454
await dbox().say_as("[JUNIPER]", [
55-
"DG_INTRO1_LOOKSBETTER",
56-
"DG_INTRO1_ILLBEDOWNSTAIRS",
57-
"DG_INTRO1_BRINGFUZZY",
55+
"DG_INTRO1_LOOKS_BETTER",
56+
"DG_INTRO1_ILL_BE_DOWNSTAIRS",
57+
"DG_INTRO1_BRING_FUZZY",
5858
])
5959

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

0 commit comments

Comments
 (0)