Compare commits

...

3 Commits

Author SHA1 Message Date
93de0cd4da Improve translation support (part 7)
(cherry picked from commit 64a624c89b8ae623c22506ca2fb58df2cee6cbb6)
2024-05-03 18:55:10 +01:00
395bcf50c0 Improve translation support (part 6)
(cherry picked from commit 0b477fb7628d8df66be450a1c6451979bae4709e)
2024-05-03 18:55:08 +01:00
7ab018394f Improve translation support (part 5) 2024-05-03 18:55:04 +01:00
38 changed files with 306 additions and 305 deletions

File diff suppressed because it is too large Load Diff

View File

@ -132,7 +132,7 @@ label cc_pf_strip_T3_intro_E1:
pause .5
# Panties acquired message!
call give_reward("You have acquired Cho's panties!", "interface/icons/panties.webp")
call give_reward(_("You have acquired Cho's panties!"), "interface/icons/panties.webp")
$ states.cho.ev.panty_thief.acquired = True
else:

View File

@ -88,7 +88,7 @@ label hufflepuff_match:
with d3
# Show wine
call give_reward(text=">Not grape-juice.", gift="interface/icons/wine.webp")
call give_reward(text=_(">Not grape-juice."), gift="interface/icons/wine.webp")
gen "That's all the persuasion I needed, my friend!" ("base", xpos="far_left", ypos="head")
hide screen bld1
@ -1140,7 +1140,7 @@ label hufflepuff_match_return:
call cho_walk(action="leave")
stop music fadeout 1.0
call unlock_clothing(text="New clothing items for Cho have been unlocked!", item=cho_outfit_cheerleader)
call unlock_clothing(text=_("New clothing items for Cho have been unlocked!"), item=cho_outfit_cheerleader)
call popup("New favours for Cho have been unlocked!", "Congratulations!", "interface/icons/head/cho.webp")
$ states.her.busy = True

File diff suppressed because it is too large Load Diff

View File

@ -360,7 +360,7 @@ label hg_butt_plugs:
her "The solution?" ("disgust", "wink", "base", "mid")
gen "Here." ("base", xpos="far_left", ypos="head")
call give_gift("You hand hermione the jar of anal lubricant.",anal_lube_ITEM)
call give_gift(_("You hand hermione the jar of anal lubricant."), anal_lube_ITEM)
her "!!!" ("clench", "wide", "base", "stare")
her "I wasn't being serious, [name_genie_hermione]!" ("scream", "base", "angry", "mid")

View File

@ -450,7 +450,7 @@ label slut_scene:
gen "You are \"my\" slut, and you will do well to remember it...{w=0.4} Now get out of my office." ("base", xpos="far_left", ypos="head")
her @ cheeks blush "...{w=0.4} Fine." ("angry", "narrow", "base", "down")
call give_reward("A new collar has been unlocked in the wardrobe!")
call give_reward(_("A new collar has been unlocked in the wardrobe!"))
show screen blkfade
with d5
@ -672,7 +672,7 @@ label whore_scene: #(locked behind public reputation and last sex event)
gen "And proudly!" ("base", xpos="far_left", ypos="head")
her @ cheeks blush "... *Hmph*!" ("annoyed", "narrow", "base", "R")
call give_reward("A new collar has been unlocked in the wardrobe!")
call give_reward(_("A new collar has been unlocked in the wardrobe!"))
her @ cheeks blush "Goodbye then, [name_genie_hermione]." ("soft", "narrow", "base", "R")
gen "Goodbye [name_hermione_genie]." ("base", xpos="far_left", ypos="head")
@ -892,7 +892,7 @@ label slave_scene:
gen "The collar you're wearing... I want you to keep it." ("base", xpos="far_left", ypos="head")
her "Yes, [name_genie_hermione]! Thank you, [name_genie_hermione]!" ("angry", "happy", "base", "up")
call give_reward("A new collar has been unlocked in the wardrobe!")
call give_reward(_("A new collar has been unlocked in the wardrobe!"))
gen "Now... On your feet." ("base", xpos="far_left", ypos="head")
else:
@ -1169,7 +1169,7 @@ label flasher_scene:
her @ cheeks blush "Alright then..." ("open", "narrow", "base", "R")
her @ cheeks blush "Just let me know when you want me to put it on..." ("open", "closed", "base", "mid")
call give_reward("A new collar has been unlocked in the wardrobe!")
call give_reward(_("A new collar has been unlocked in the wardrobe!"))
if game.daytime:
her @ cheeks blush "Have a Good day." ("soft", "base", "base", "R")
@ -1284,7 +1284,7 @@ label good_girl_scene:
gen "(At least I can enjoy watching her wearing it...)" ("base", xpos="far_left", ypos="head")
her "Just let me know if you need anything." ("open", "happy", "base", "mid")
call give_reward("A new collar has been unlocked in the wardrobe!")
call give_reward(_("A new collar has been unlocked in the wardrobe!"))
if game.daytime:
her "Have a Good day." ("grin", "base", "base", "mid")

View File

@ -4,7 +4,7 @@ default _no_clothes = False
label potion_ass_make:
call give_reward("You have successfully created a new potion!", ass_potion_ITEM)
call give_reward(_("You have successfully created a new potion!"), ass_potion_ITEM)
gen "There we go." ("base", xpos="far_left", ypos="head")
play sound "sounds/sniff.ogg"

View File

@ -1,7 +1,7 @@
label potion_breasts_make:
call give_reward("You have successfully created a new potion!", breast_potion_ITEM)
call give_reward(_("You have successfully created a new potion!"), breast_potion_ITEM)
gen "There we go." ("base", xpos="far_left", ypos="head")
play sound "sounds/sniff.ogg"

View File

@ -1,7 +1,7 @@
label potion_cat_make:
call give_reward("You have successfully created a new potion!", cat_potion_ITEM)
call give_reward(_("You have successfully created a new potion!"), cat_potion_ITEM)
play sound "sounds/sniff.ogg"
gen "Yep..." ("base", xpos="far_left", ypos="head")

View File

@ -1,7 +1,7 @@
label potion_luna_make:
call give_reward("You have successfully created a new potion!", luna_potion_ITEM)
call give_reward(_("You have successfully created a new potion!"), luna_potion_ITEM)
play sound "sounds/sniff.ogg"
gen "It does have a distinctive smell of grass, among other things..." ("base", xpos="far_left", ypos="head")

View File

@ -757,7 +757,7 @@ label hg_tutor_E8:
gen "Sure." ("base", xpos="far_left", ypos="head")
gen "But before that I have a little present for you." ("base", xpos="far_left", ypos="head")
call give_gift("You give an assortment of adult magazines to Hermione.",adult_mag_ITEM)
call give_gift(_("You give an assortment of adult magazines to Hermione."), adult_mag_ITEM)
gen "I hope this will help you in your studies." ("base", xpos="far_left", ypos="head")
her @ cheeks blush tears mascara "Yes, certainly." ("base", "closed", "base", "mid")
@ -916,7 +916,7 @@ label hg_tutor_E9:
her @ cheeks blush tears mascara "\"Studies,\" yes, that's right." ("grin", "narrow", "base", "mid_soft")
gen "And to aid your studies I have even more scientific materials." ("base", xpos="far_left", ypos="head")
call give_gift("You give an assortment of porn magazines to Hermione.",porn_mag_ITEM)
call give_gift(_("You give an assortment of porn magazines to Hermione."), porn_mag_ITEM)
her @ cheeks blush tears mascara "I promise to study them every night until I commit their lessons to memory!" ("grin", "closed", "base", "mid")
her @ cheeks blush tears mascara "Thank you and good night, professor." ("grin", "narrow", "base", "mid_soft")
@ -963,7 +963,7 @@ label hg_tutor_E10:
gen ".........." ("base", xpos="far_left", ypos="head")
her "So what's my gift this time?" ("open", "squint", "base", "mid")
call give_gift("You give the vibrator to Hermione",vibrator_ITEM)
call give_gift(_("You give the vibrator to Hermione"), vibrator_ITEM)
her "And I suppose you want me to test this in front of you?" ("open", "closed", "base", "mid")
gen "Of course." ("grin", xpos="far_left", ypos="head")
@ -1336,7 +1336,7 @@ label hg_tutor_E12:
her "And now I want more, so where is my gift?!" ("annoyed", "squint", "base", "mid")
gen "There, there." ("base", xpos="far_left", ypos="head")
call give_gift("You give the anal beads to Hermione",anal_beads_ITEM)
call give_gift(_("You give the anal beads to Hermione"), anal_beads_ITEM)
her @ cheeks blush "Oh! That's even better than a butt plug." ("shock", "wide", "base", "stare")
gen "And they can be useful for your pussy too." ("grin", xpos="far_left", ypos="head")
@ -1677,7 +1677,7 @@ label hg_tutor_E13:
her "I'm ready, [name_genie_hermione]." (ypos="head", flip=False, trans=d3)
call give_gift("You take an empty butterbeer bottle, spit on the neck, and push it inside her butthole.",butterbeer_ITEM)
call give_gift(_("You take an empty butterbeer bottle, spit on the neck, and push it inside her butthole."), butterbeer_ITEM)
call her_chibi_scene("lie_on_desk_fingering_slow")
hide screen bld1

File diff suppressed because it is too large Load Diff

View File

@ -1218,7 +1218,7 @@ label ll_pf_inspect_T2_E3_intro:
gen "(*Hmm*... What's this?)" ("base", xpos="far_left", ypos="head")
$ hair_luna_ITEM.owned = 1
call give_reward("You found a string of blonde hair!", gift=hair_luna_ITEM)
call give_reward(_("You found a string of blonde hair!"), gift=hair_luna_ITEM)
gen "(Looks like she's left me a parting gift.)" ("base", xpos="far_left", ypos="head")
if states.map.snape_office.intro_e2:

View File

@ -244,7 +244,7 @@ label luna_intro_E1:
gen "*Ha-ha*... Good one! Alright, talk to you later, Beelzebub!" ("grin", xpos="far_left", ypos="head")
"Beelzebub" "Ah, don't be so formal, just call me Bub."
"Beelzebub" "If you ever need some latest {i}hot{/i} news, I'm your guy."
call give_reward("Satan's phone number has been added to your contacts list.", "interface/icons/phone.webp")
call give_reward(_("Satan's phone number has been added to your contacts list."), "interface/icons/phone.webp")
gen "Thanks Bub, will do!" ("grin", xpos="far_left", ypos="head")
"Bub" "Take care!"
@ -472,8 +472,8 @@ label luna_intro_E1:
$ hermione_chibi.zorder = 3
$ luna_chibi.zorder = 3
call unlock_clothing(text="New clothing items for Tonks have been unlocked!", item=ton_outfit_dressing_gown)
call unlock_clothing(text="New clothing items for Hermione have been unlocked!", item=her_outfit_pajama)
call unlock_clothing(text=_("New clothing items for Tonks have been unlocked!"), item=ton_outfit_dressing_gown)
call unlock_clothing(text=_("New clothing items for Hermione have been unlocked!"), item=her_outfit_pajama)
jump day_start

File diff suppressed because it is too large Load Diff

View File

@ -106,7 +106,7 @@ label ss_he_wine_intro:
pause.1
# Show wine
call give_gift("You hand over the bottle you found in the cupboard to professor Snape...", wine_ITEM)
call give_gift(_("You hand over the bottle you found in the cupboard to professor Snape..."), wine_ITEM)
sna "This one has got to be from Albus' personal stash!" ("snape_24")
sna "Some pricey and incredibly rare stuff." ("snape_06")
@ -121,7 +121,7 @@ label ss_he_wine_intro_E2:
gen "Care for another bottle?" ("base", xpos="far_left", ypos="head")
pause.1
call give_gift("You hand over the bottle you found in the cupboard to professor Snape...", wine_ITEM)
call give_gift(_("You hand over the bottle you found in the cupboard to professor Snape..."), wine_ITEM)
sna "Another bottle of Dumbledore's wine?" ("snape_05", ypos="head")
sna "Did you find Albus' secret stash or was it his personal wine cellar?" ("snape_05")
@ -139,7 +139,7 @@ label ss_he_wine_repeat:
gen "Look what I've got!" ("base", xpos="far_left", ypos="head")
pause.1
call give_gift("You hand over the bottle you found in the cupboard to professor Snape...", wine_ITEM)
call give_gift(_("You hand over the bottle you found in the cupboard to professor Snape..."), wine_ITEM)
sna "Another one?" ("snape_05", ypos="head")

View File

@ -49,13 +49,13 @@ label summon_snape:
if wine_ITEM.owned >= 1:
sna "Whatever it is, it can wait, let's sit down first, shall we." ("snape_01")
call setup_fireplace_hangout(char="snape")
call bld
gen "Want to do the honours?" ("base", xpos="far_left", ypos="head")
sna "With pleasure!" ("snape_02", ypos="head")
pause.1
call give_gift("You hand over the bottle you found in the cupboard to professor Snape...", wine_ITEM)
call give_gift(_("You hand over the bottle you found in the cupboard to professor Snape..."), wine_ITEM)
$ states.gen.stats.hangouts_with_snape += 1
$ wine_ITEM.owned -= 1

File diff suppressed because it is too large Load Diff

View File

@ -97,7 +97,7 @@ label nt_he_wine_intro:
pause.1
# Show wine
call give_gift("You hand over the bottle you found in the cupboard to professor Tonks...", wine_ITEM)
call give_gift(_("You hand over the bottle you found in the cupboard to professor Tonks..."), wine_ITEM)
ton "Wine?" ("open", "base", "raised", "down")
ton "Don't you have anything stronger?" ("upset", "base", "base", "R")

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More