From 395bcf50c04a3ed16957cf6e41fc67433d5547cf Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Fri, 3 May 2024 18:15:50 +0100 Subject: [PATCH] Improve translation support (part 6) (cherry picked from commit 0b477fb7628d8df66be450a1c6451979bae4709e) --- game/scripts/characters/astoria/gifts.rpy | 100 ++++++++-------- game/scripts/characters/cho/gifts.rpy | 90 +++++++------- .../hermione/events/items/butt_plugs.rpy | 2 +- .../characters/hermione/events/tutoring.rpy | 10 +- game/scripts/characters/hermione/gifts.rpy | 110 +++++++++--------- game/scripts/characters/luna/gifts.rpy | 50 ++++---- .../characters/snape/events/hangouts.rpy | 6 +- game/scripts/characters/snape/summon.rpy | 4 +- game/scripts/characters/susan/gifts.rpy | 44 +++---- .../characters/tonks/events/hangout.rpy | 2 +- game/scripts/characters/tonks/gifts.rpy | 40 +++---- 11 files changed, 229 insertions(+), 229 deletions(-) diff --git a/game/scripts/characters/astoria/gifts.rpy b/game/scripts/characters/astoria/gifts.rpy index 894983f2..8d7b6a52 100644 --- a/game/scripts/characters/astoria/gifts.rpy +++ b/game/scripts/characters/astoria/gifts.rpy @@ -14,14 +14,14 @@ label give_ast_gift(gift_item): call ast_mood(1) elif states.ast.level > 5 and states.ast.level < 12: ast "A lollipop?" ("open", "narrow", "base", "mid") - call give_gift("You give the lollipop to Astoria...", gift_item) + call give_gift(_("You give the lollipop to Astoria..."), gift_item) ast "why are you being so nice to me..." ("upset", "base", "angry", "mid") ast "Although... the other students haven't had any left since the last Hogsmeade trip." ("open", "narrow", "base", "mid") ast "They'll be so jealous!" ("grin", "narrow", "base", "mid") call ast_mood(-1) else: ast "A lollipop?" ("open", "narrow", "base", "mid") - call give_gift("You give the lollipop to Astoria...", gift_item) + call give_gift(_("You give the lollipop to Astoria..."), gift_item) ast "That's going to take all day to suck on..." ast "I guess my mouth will be too busy to do anything else for the entire day!" call ast_mood(-2) @@ -35,14 +35,14 @@ label give_ast_gift(gift_item): call ast_mood(0) elif states.ast.level > 5 and states.ast.level < 12: ast "Some chocolate?" ("open", "narrow", "base", "mid") - call give_gift("You give the chocolate to Astoria...", gift_item) + call give_gift(_("You give the chocolate to Astoria..."), gift_item) ast "Thank you, [name_genie_astoria]." ("open", "narrow", "base", "mid") ast "I don't know what I did to deserve it." ("annoyed", "narrow", "base", "R") ast "But I'm not going to say no..." ("smile", "narrow", "base", "mid") call ast_mood(-1) else: ast "Some chocolate?" ("open", "narrow", "base", "mid") - call give_gift("You give the chocolate to Astoria...", gift_item) + call give_gift(_("You give the chocolate to Astoria..."), gift_item) ast "Did you hear chocolate is supposed to be an aphrodisiac?" ast "Although it was a muggle that came up with that one, so I doubt there's any truth to it." ast "Oh well, that sucks doesn't it?" @@ -57,20 +57,20 @@ label give_ast_gift(gift_item): call ast_mood(1) elif states.ast.level > 5 and states.ast.level < 12: ast "An owl plushie?" ("open", "narrow", "base", "mid") - call give_gift("You give the stuffed toy to Astoria...", gift_item) + call give_gift(_("You give the stuffed toy to Astoria..."), gift_item) ast "I don't use stuffed toys..." ("open", "narrow", "base", "mid") ast "I know someone that hates owls though... I'll put this in front of her face when she's waking up..." ("annoyed", "narrow", "base", "R") call ast_mood(-1) elif states.ast.level > 11 and states.ast.level < 18: ast "An owl plushie?" ("open", "narrow", "base", "mid") - call give_gift("You give the stuffed toy to Astoria...", gift_item) + call give_gift(_("You give the stuffed toy to Astoria..."), gift_item) ast "Do I look like a girl that plays with toys?" ast "Actually, don't answer that..." ast "Guess it'd be rude not to take it..." call ast_mood(-1) else: ast "An owl plushie?" ("open", "narrow", "base", "mid") - call give_gift("You give the stuffed toy to Astoria...", gift_item) + call give_gift(_("You give the stuffed toy to Astoria..."), gift_item) ast "If you want to give me toys, you better be prepared for me to call you daddy..." ast "So, thank you..." ast "Daddy..." @@ -80,26 +80,26 @@ label give_ast_gift(gift_item): if states.ast.level < 6: ast "Butterbeer?" ("smile", "narrow", "base", "mid") - call give_gift("You give the bottle to Astoria...", gift_item) + call give_gift(_("You give the bottle to Astoria..."), gift_item) ast "Time to get smashed!" ("smile", "narrow", "base", "mid") ast "The other students will be so jealous I got beer into the school..." ("annoyed", "base", "angry", "mid") call ast_mood(-2) elif states.ast.level > 5 and states.ast.level < 12: ast "Butterbeer?" ("smile", "narrow", "base", "mid") - call give_gift("You give the bottle to Astoria...", gift_item) + call give_gift(_("You give the bottle to Astoria..."), gift_item) ast "Don't you have something stronger?" ("annoyed", "narrow", "base", "mid") ast "Like something you can't get in the school usually?" ("annoyed", "narrow", "base", "R") ast "Fine, I'll take it!" ("smile", "narrow", "base", "mid") call ast_mood(-1) elif states.ast.level > 11 and states.ast.level < 18: ast "Butterbeer?" ("annoyed", "narrow", "base", "mid") - call give_gift("You give the bottle to Astoria...", gift_item) + call give_gift(_("You give the bottle to Astoria..."), gift_item) ast "This watered down piss-water can barely get a house elf tipsy." ast "Actually, that gives me an idea..." call ast_mood(-1) else: ast "Butterbeer?" ("open", "narrow", "base", "mid") - call give_gift("You give the bottle to Astoria...", gift_item) + call give_gift(_("You give the bottle to Astoria..."), gift_item) ast "It's more of a cider really, isn't it?" ("base", "base", "base", "mid") ast "Thanks!" ("smile", "narrow", "base", "mid") call ast_mood(-2) @@ -113,7 +113,7 @@ label give_ast_gift(gift_item): call ast_mood(0) elif states.ast.level > 5 and states.ast.level < 12: ast "Magazines?" ("open", "narrow", "base", "mid") - call give_gift("You give an assortment of educational magazines to Astoria...", gift_item) + call give_gift(_("You give an assortment of educational magazines to Astoria..."), gift_item) ast "Making your own stink bombs..." ("annoyed", "narrow", "base", "mid") ast "Looks like I might be able to make these in potions class..." ast "If Snape doesn't catch me doing it." ("clench", "narrow", "base", "mid") @@ -124,7 +124,7 @@ label give_ast_gift(gift_item): call ast_mood(1) else: ast "magazines?" ("open", "narrow", "base", "mid") - call give_gift("You give an assortment of educational magazines to Astoria...", gift_item) + call give_gift(_("You give an assortment of educational magazines to Astoria..."), gift_item) ast "I was hoping for something a bit more risqué..." ("annoyed", "narrow", "base", "mid") call ast_mood(0) @@ -136,17 +136,17 @@ label give_ast_gift(gift_item): call ast_mood(0) elif states.ast.level > 5 and states.ast.level < 12: ast "Girl magazines?" ("base", "narrow", "angry", "mid") - call give_gift("You give an assortment of rather girly magazines to Astoria...", gift_item) + call give_gift(_("You give an assortment of rather girly magazines to Astoria..."), gift_item) ast "I'll take it for the free mascara sample. I once drew a unibrow on someone with it." ("smile", "narrow", "base", "mid") call ast_mood(-1) elif states.ast.level > 11 and states.ast.level < 18: ast "Girl magazines?" ("annoyed", "narrow", "base", "mid") - call give_gift("You give an assortment of rather girly magazines to Astoria...", gift_item) + call give_gift(_("You give an assortment of rather girly magazines to Astoria..."), gift_item) ast "Well, I am a girl, so of course I'd want it!" ("annoyed", "narrow", "base", "mid") call ast_mood(-1) else: ast "Girl magazines?" ("annoyed", "narrow", "base", "mid") - call give_gift("You give an assortment of rather girly magazines to Astoria...", gift_item) + call give_gift(_("You give an assortment of rather girly magazines to Astoria..."), gift_item) ast "Don't I look hot enough for you [name_genie_astoria]?" ("open", "closed", "base", "mid") ast "I'm just teasing you, I'll have it." ("smile", "narrow", "base", "mid") call ast_mood(-1) @@ -158,12 +158,12 @@ label give_ast_gift(gift_item): call ast_mood(0) elif states.ast.level > 5 and states.ast.level < 12: ast "Adult magazines?" ("annoyed", "narrow", "base", "mid") - call give_gift("You give an assortment of adult magazines to Astoria...", gift_item) + call give_gift(_("You give an assortment of adult magazines to Astoria..."), gift_item) ast "Of course I read them. I'm an adult, after all... It's in the name." ("upset", "base", "angry", "mid") call ast_mood(-1) else: ast "Adult magazines?" ("annoyed", "narrow", "base", "mid") - call give_gift("You give an assortment of adult magazines to Astoria...", gift_item) + call give_gift(_("You give an assortment of adult magazines to Astoria..."), gift_item) ast "This is that magazine Tonks was reading during our writing test..." ("annoyed", "narrow", "base", "down") ast "Perhaps I'll wave it at her, so she thinks I stole it..." ("smile", "base", "angry", "mid") call ast_mood(-1) @@ -171,7 +171,7 @@ label give_ast_gift(gift_item): elif gift_item == porn_mag_ITEM: if states.ast.level < 6: ast "Porn magazines?" ("base", "narrow", "angry", "mid") - call give_gift("You give an assortment of pornographic magazines to Astoria...", gift_item) + call give_gift(_("You give an assortment of pornographic magazines to Astoria..."), gift_item) ast "I'll take it!" ("grin", "narrow", "base", "mid") ast "I'll put one in Susan's bag when she's not looking. Can't wait to see that cows face when her friends notice." ("open", "base", "angry", "mid") ast "Thank you, [name_genie_astoria]." ("smile", "narrow", "base", "mid") @@ -183,7 +183,7 @@ label give_ast_gift(gift_item): call ast_mood(0) elif states.ast.level > 11 and states.ast.level < 18: ast "Porn magazines?" ("annoyed", "narrow", "base", "mid") - call give_gift("You give an assortment of pornographic magazines to Astoria...", gift_item) + call give_gift(_("You give an assortment of pornographic magazines to Astoria..."), gift_item) ast "That's some extreme stuff you got there..." ("base", "narrow", "angry", "mid") ast "BDSM, what does that stand for..." ("clench", "base", "angry", "mid") ast "She looks like she's enjoying it. That's not fun..." @@ -191,7 +191,7 @@ label give_ast_gift(gift_item): call ast_mood(-1) else: ast "Porn magazines?" ("smile", "narrow", "base", "mid") - call give_gift("You give an assortment of pornographic magazines to Astoria...", gift_item) + call give_gift(_("You give an assortment of pornographic magazines to Astoria..."), gift_item) ast "Is this where you get your ideas from?" ("upset", "base", "angry", "mid") ast "A swing? Why would you have that in a porn ma... oh there's the next page." ("clench", "base", "angry", "mid") ast "Yeah fuck it, give it here..." ("grin", "base", "angry", "mid") @@ -201,14 +201,14 @@ label give_ast_gift(gift_item): if states.ast.level < 6: ast "Viktor Krum?" ("annoyed", "narrow", "base", "mid") ast "Is that the Quidditch player everyone seems to fancy?" ("open", "base", "base", "mid") - call give_gift("You give the poster to Astoria...", gift_item) + call give_gift(_("You give the poster to Astoria..."), gift_item) ast "*Hmph*, I guess I'll take it if he's that popular..." ("annoyed", "narrow", "base", "R") call ast_mood(0) elif states.ast.level > 5 and states.ast.level < 12: ast "Viktor Krum?" ("annoyed", "narrow", "base", "mid") ast "Bet he could crush m... someone with his bare hands." ("base", "narrow", "angry", "mid") ast "Give it here..." ("smile", "narrow", "base", "mid") - call give_gift("You give the poster to Astoria...", gift_item) + call give_gift(_("You give the poster to Astoria..."), gift_item) call ast_mood(-1) else: ast "Viktor Krum?" ("smile", "narrow", "base", "mid") @@ -229,11 +229,11 @@ label give_ast_gift(gift_item): ast "Lingerie?" ("annoyed", "narrow", "base", "mid") ast "Sexy..." ("annoyed", "narrow", "base", "down") ast "Why not, I don't know if you could tell, but I'm a bit of a rebel. Might even wear these in class." ("grin", "base", "angry", "mid") - call give_gift("You give the sexy lingerie to Astoria...", gift_item) + call give_gift(_("You give the sexy lingerie to Astoria..."), gift_item) call ast_mood(-1) else: ast "Lingerie?" ("annoyed", "narrow", "base", "mid") - call give_gift("You give the sexy lingerie to Astoria...", gift_item) + call give_gift(_("You give the sexy lingerie to Astoria..."), gift_item) ast "Is this is the kind of clothing you want your students to dress up in from now on?" ("annoyed", "narrow", "base", "mid") ast "*Heh*- I don't blame you, the school uniform is the most basic piece of trash ever without some spice..." ("annoyed", "narrow", "base", "mid") call ast_mood(-1) @@ -246,18 +246,18 @@ label give_ast_gift(gift_item): call ast_mood(1) elif states.ast.level > 5 and states.ast.level < 12: ast "Stockings?" ("open", "narrow", "base", "mid") - call give_gift("You give the stockings to Astoria...", gift_item) + call give_gift(_("You give the stockings to Astoria..."), gift_item) ast "Seems pretty elastic... I could totally lob some stink bombs with these." ("grin", "base", "angry", "mid") call ast_mood(-1) elif states.ast.level > 11 and states.ast.level < 18: ast "Stockings?" ("annoyed", "narrow", "base", "mid") ast "Hah, you fool! With these, you won't be able to stare at my legs any more!" ("grin", "base", "angry", "mid") - call give_gift("You give the stockings to Astoria...", gift_item) + call give_gift(_("You give the stockings to Astoria..."), gift_item) call ast_mood(-2) else: ast "Stockings?" ("annoyed", "narrow", "base", "mid") ast "These are almost as see-through as your wicked intentions..." ("grin", "base", "angry", "mid") - call give_gift("You give the stockings to Astoria...", gift_item) + call give_gift(_("You give the stockings to Astoria..."), gift_item) ast "Disgusting..." ("upset", "base", "angry", "mid") call ast_mood(-1) @@ -266,7 +266,7 @@ label give_ast_gift(gift_item): ast "Condoms?" ("base", "narrow", "angry", "mid") ast "Yeah, no... I'll take them, but there's not going to be any dick going near these bad boys..." ("annoyed", "narrow", "base", "mid") ast "These will be the perfect thing to fill with water and drop down the staircase..." ("smile", "base", "angry", "mid") - call give_gift("You give the pack of Condoms to Astoria...", gift_item) + call give_gift(_("You give the pack of Condoms to Astoria..."), gift_item) ast "Cheers for the ammo, [name_genie_astoria]." ("smile", "narrow", "base", "mid") call ast_mood(-2) elif states.ast.level > 5 and states.ast.level < 12: @@ -275,13 +275,13 @@ label give_ast_gift(gift_item): ast "What?" ("annoyed", "narrow", "base", "mid") ast "I see your concern... They probably would be able to trace it back to me." ("annoyed", "narrow", "base", "mid") ast "Oh well, a gift is a gift." ("base", "base", "base", "mid") - call give_gift("You give the pack of Condoms to Astoria...", gift_item) + call give_gift(_("You give the pack of Condoms to Astoria..."), gift_item) call ast_mood(0) else: ast "Condoms?" ("annoyed", "narrow", "base", "mid") ast "Why would I need condoms when I could just go in raw?" ("grin", "base", "angry", "mid") ast "*Ha-Ha-Hah* The look on your face, now that's something money can't buy." ("smile", "narrow", "base", "mid") - call give_gift("You sheepishly give the pack of Condoms to Astoria...", gift_item) + call give_gift(_("You sheepishly give the pack of Condoms to Astoria..."), gift_item) ast "*Hmm*.... Yeah, why not." ("base", "base", "base", "mid") call ast_mood(-1) @@ -300,11 +300,11 @@ label give_ast_gift(gift_item): ast "Hold on a second, that's the noise I've been hearing in the girls chambers!" ("smile", "narrow", "base", "mid") ast "Do they work?" ("smile", "narrow", "base", "mid") ast "I mean, I'll take it, I guess." ("base", "base", "base", "mid") - call give_gift("You give the vibrator to Astoria...",gift_item) + call give_gift(_("You give the vibrator to Astoria..."), gift_item) call ast_mood(-1) else: ast "A vibrator?" ("base", "base", "base", "mid") - call give_gift("You give the vibrator to Astoria...",gift_item) + call give_gift(_("You give the vibrator to Astoria..."), gift_item) ast "That's disgusting! What a disgusting old man you are. Well, aren't you being disgusting..." ("upset", "base", "angry", "mid") ast "Disgusting..." ("upset", "base", "angry", "mid") ast "Give it here." ("smile", "narrow", "base", "mid") @@ -314,20 +314,20 @@ label give_ast_gift(gift_item): if states.ast.level < 6: ast "Lube?" ("open", "narrow", "base", "mid") ast "I know the perfect staircase for this!" ("smile", "narrow", "base", "mid") - call give_gift("You give the jar of lube to Astoria...", gift_item) + call give_gift(_("You give the jar of lube to Astoria..."), gift_item) ast "Thank you, [name_genie_astoria]." ("smile", "narrow", "base", "mid") call ast_mood(-1) elif states.ast.level > 5 and states.ast.level < 12: ast "Anal Lube?" ("smile", "narrow", "base", "mid") ast "Swiggity swooty I'm coming for that booty!" ("smile", "base", "angry", "mid") ast "Come on now, what's with that dry humour. Maybe you could use some of that lube?" ("annoyed", "narrow", "base", "mid") - call give_gift("You cautiously give the jar of lube to Astoria...", gift_item) + call give_gift(_("You cautiously give the jar of lube to Astoria..."), gift_item) ast "Boo!" ("annoyed", "narrow", "base", "mid") ast "*ha-ha-ha*!" ("smile", "narrow", "base", "mid") call ast_mood(-2) else: ast "Anal Lube?" ("smile", "narrow", "base", "mid") - call give_gift("You give the jar of lube to Astoria...", gift_item) + call give_gift(_("You give the jar of lube to Astoria..."), gift_item) ast "Why would I need this, surely the initial pain is the best part..." ("upset", "base", "angry", "mid") ast "Oh, for me? Duh!" ("annoyed", "narrow", "base", "mid") ast "Yeah, actually I'll take it..." ("smile", "narrow", "base", "mid") @@ -342,7 +342,7 @@ label give_ast_gift(gift_item): call ast_mood(1) elif states.ast.level > 5 and states.ast.level < 12: ast "Handcuffs? And a Ball gag?" ("annoyed", "narrow", "base", "mid") - call give_gift("You give the handcuffs to Astoria...", gift_item) + call give_gift(_("You give the handcuffs to Astoria..."), gift_item) ast "I can break these cuffs!" ("upset", "base", "angry", "mid") ast "*HNNNNNGH!" ("upset", "base", "angry", "mid") ast "I can't break those cuffs..." ("annoyed", "narrow", "base", "mid") @@ -350,7 +350,7 @@ label give_ast_gift(gift_item): call ast_mood(0) else: ast "Handcuffs? And a Ball gag?" ("smile", "narrow", "base", "mid") - call give_gift("You give the handcuffs to Astoria...", gift_item) + call give_gift(_("You give the handcuffs to Astoria..."), gift_item) ast "So I guess these are one of those BDSM items?" ("base", "base", "base", "mid") ast "Colour me intrigued..." ("smile", "narrow", "base", "mid") call ast_mood(-1) @@ -367,13 +367,13 @@ label give_ast_gift(gift_item): call ast_mood(1) elif states.ast.level > 11 and states.ast.level < 18: ast "anal plugs?" ("base", "narrow", "angry", "mid") - call give_gift("You give the anal plugs to Astoria...", gift_item) + call give_gift(_("You give the anal plugs to Astoria..."), gift_item) ast "Why are you giving me this?" ("annoyed", "narrow", "base", "mid") ast "I'll take it I guess..." ("annoyed", "narrow", "base", "mid") call ast_mood(0) else: ast "anal plugs?" ("base", "base", "base", "mid") - call give_gift("You give the anal plugs to Astoria...", gift_item) + call give_gift(_("You give the anal plugs to Astoria..."), gift_item) ast "You do know these hurts a bit if you're not used to them?" ("annoyed", "narrow", "base", "mid") nar "Astoria absent-mindedly pockets the anal plug." ast "Don't see why you'd give these out as if they were sweets..." ("annoyed", "base", "base", "mid") @@ -394,14 +394,14 @@ label give_ast_gift(gift_item): call ast_mood(0) elif states.ast.level > 11 and states.ast.level < 18: ast "A strap-on?" ("upset", "base", "angry", "mid") - call give_gift("You give the strap-on to Astoria...", gift_item) + call give_gift(_("You give the strap-on to Astoria..."), gift_item) ast "I'll strap it on your forehead and make you into a sex unicorn!" ("grin", "base", "angry", "mid") ast "I read about people having sex on top of a unicorn..." ("base", "narrow", "angry", "mid") ast "Bit of an odd segment that one was..." ("annoyed", "narrow", "base", "mid") call ast_mood(-1) else: ast "A strap-on?" ("annoyed", "narrow", "base", "mid") - call give_gift("You give the strap-on to Astoria...", gift_item) + call give_gift(_("You give the strap-on to Astoria..."), gift_item) ast "It says Thestral on the side..." ("annoyed", "narrow", "base", "mid") ast "Isn't' that the creature where only people that have witnessed someone die can see?" ("annoyed", "narrow", "base", "mid") ast "That makes the person who made he mould kinda fucked up if you think about it..." ("base", "narrow", "angry", "mid") @@ -415,13 +415,13 @@ label give_ast_gift(gift_item): call ast_mood(1) elif states.ast.level > 5 and states.ast.level < 12: ast "A broom?" ("base", "base", "base", "mid") - call give_gift("You give the broom to Astoria...", gift_item) + call give_gift(_("You give the broom to Astoria..."), gift_item) ast "Now if anything would motivate you enough to fly, that would..." ("grin", "base", "angry", "mid") ast "Bit awkward during broom care though..." ("annoyed", "narrow", "base", "mid") call ast_mood(0) else: ast "A broom?" ("smile", "narrow", "base", "mid") - call give_gift("You give the broom to Astoria...", gift_item) + call give_gift(_("You give the broom to Astoria..."), gift_item) ast "Now that will keep you sturdy." ("grin", "base", "angry", "mid") ast "What a depraved little invention..." ("smile", "base", "angry", "mid") ast "Totally something I'd come up with!" @@ -440,13 +440,13 @@ label give_ast_gift(gift_item): call ast_mood(1) elif states.ast.level > 11 and states.ast.level < 18: ast "A sex doll?" ("upset", "base", "angry", "mid") - call give_gift("You give the doll to Astoria...", gift_item) + call give_gift(_("You give the doll to Astoria..."), gift_item) ast "I hope you got this for cheap. It looks awful..." ("annoyed", "narrow", "base", "mid") ast "I mean... why thank you, I shall cherish this forever!" ("annoyed", "narrow", "base", "mid") call ast_mood(0) else: ast "A sex doll?" ("base", "narrow", "angry", "mid") - call give_gift("You give the doll to Astoria...", gift_item) + call give_gift(_("You give the doll to Astoria..."), gift_item) ast "But I'm a girl..." ("annoyed", "narrow", "base", "mid") ast "I'll leave it in the Slytherin common room to see if anyone has balls, big enough to take it..." ("grin", "base", "angry", "mid") call ast_mood(-1) @@ -469,14 +469,14 @@ label give_ast_gift(gift_item): else: ast "Anal beads?" ("base", "base", "base", "mid") ast "Looks painful." ("annoyed", "narrow", "base", "mid") - call give_gift("You give the anal beads to Astoria...", gift_item) + call give_gift(_("You give the anal beads to Astoria..."), gift_item) ast "And they're green... Did you get these made just for me?" ("annoyed", "base", "base", "mid") call ast_mood(-1) elif gift_item == wine_ITEM: if states.ast.level < 6: ast "Wine?" ("base", "narrow", "angry", "mid") - call give_gift("You give the wine to Astoria...", gift_item) + call give_gift(_("You give the wine to Astoria..."), gift_item) ast "You're joking, right?" ("annoyed", "narrow", "base", "mid") ast "Professor Snape would murder me if he saw me bringing alcohol into the common room." ("upset", "base", "angry", "mid") ast "I can't make you shut up after hours even without alcohol in your system..." ("annoyed", "narrow", "base", "mid") @@ -485,7 +485,7 @@ label give_ast_gift(gift_item): else: ast "Wine?" ("smile", "narrow", "base", "mid") ast "Well aren't we fancy?" ("base", "base", "base", "mid") - call give_gift("You give the wine to Astoria...", gift_item) + call give_gift(_("You give the wine to Astoria..."), gift_item) ast "This is the real shit. Look at the date on that." ("base", "base", "base", "mid") ast "You really are ancient if you bought it new..." ("smile", "narrow", "base", "mid") call ast_mood(-1) @@ -500,7 +500,7 @@ label give_ast_gift(gift_item): else: ast "Firewhisky?" ("smile", "narrow", "base", "mid") ast "Fine, I'll give in. If Tonks likes it so much, it can't be that bad..." ("smile", "narrow", "base", "mid") - call give_gift("You give the firewhisky to Astoria...", gift_item) + call give_gift(_("You give the firewhisky to Astoria..."), gift_item) ast "*Hmm*... not made using real fire... Well, that's bloody obvious..." ("base", "base", "base", "mid") ast "Might experience a slight pain and burning sensation when consuming..." ("base", "narrow", "angry", "mid") ast "Why didn't you say so before!" ("upset", "base", "angry", "mid") diff --git a/game/scripts/characters/cho/gifts.rpy b/game/scripts/characters/cho/gifts.rpy index 29c092bf..daaf6cde 100644 --- a/game/scripts/characters/cho/gifts.rpy +++ b/game/scripts/characters/cho/gifts.rpy @@ -11,23 +11,23 @@ label give_cho_gift(gift_item): if states.cho.tier <= 1: cho "Sweets?" ("soft", "base", "base", "mid") cho "My team captain hasn't let me buy any to keep my blood sugar balanced... Whatever that means." ("open", "narrow", "base", "R") - call give_gift("You give the sweets to Cho...",gift_item) + call give_gift(_("You give the sweets to Cho..."), gift_item) cho "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-2) elif states.cho.tier == 2: cho "Sweets?" ("soft", "base", "base", "mid") - call give_gift("You give the sweets to Cho...",gift_item) + call give_gift(_("You give the sweets to Cho..."), gift_item) cho "Thank you, [name_genie_cho]... Yes, I do think I deserve one, since we won our first match." ("smile", "narrow", "base", "mid") call cho_mood(-2) elif states.cho.tier == 3: cho "Sweets?" ("soft", "base", "base", "mid") cho "But we're up against Gryffindor soon, I don't want to get addicted to sugar..." ("soft", "base", "base", "R") - call give_gift("You give the sweets to Cho...",gift_item) + call give_gift(_("You give the sweets to Cho..."), gift_item) cho "Thank you, [name_genie_cho]." ("open", "base", "base", "mid") call cho_mood(-1) else: cho "Sweets?" ("soft", "base", "base", "mid") - call give_gift("You give the sweets to Cho...",gift_item) + call give_gift(_("You give the sweets to Cho..."), gift_item) cho "I'll keep it for later... I like licking it in front of my teammates to tease them a bit." ("smile", "narrow", "base", "R") cho @ cheeks blush "But in the future... I'm more of a savoury kind of girl..." ("base", "narrow", "base", "R") cho @ cheeks blush "If you follow my trail..." ("smile", "wink", "base", "mid") @@ -37,24 +37,24 @@ label give_cho_gift(gift_item): if states.cho.tier <= 1: cho "Chocolate?" ("soft", "base", "base", "mid") cho "I probably shouldn't... Although." ("upset", "narrow", "base", "down") - call give_gift("You give the chocolate to Cho...",gift_item) + call give_gift(_("You give the chocolate to Cho..."), gift_item) cho "I'll take it, [name_genie_cho]!" ("smile", "base", "base", "mid") call cho_mood(-2) elif states.cho.tier == 2: cho "Chocolate... Now that would be a treat..." ("open", "base", "base", "down") - call give_gift("You give the chocolate to Cho...",gift_item) + call give_gift(_("You give the chocolate to Cho..."), gift_item) cho "What the heck, I deserve it." ("base", "narrow", "base", "mid") cho "Thank you, [name_genie_cho]." ("smile", "base", "base", "mid") call cho_mood(-2) elif states.cho.tier == 3: cho "Chocolate?" ("soft", "base", "base", "down") cho "But we're up against Gryffindor soon, I don't want to get addicted to sugar..." ("upset", "base", "base", "mid") - call give_gift("You give the chocolate to Cho...",gift_item) + call give_gift(_("You give the chocolate to Cho..."), gift_item) cho "Thanks." ("open", "base", "base", "mid") call cho_mood(-1) else: cho "Chocolate?" ("soft", "base", "base", "down") - call give_gift("You give the chocolate to Cho...",gift_item) + call give_gift(_("You give the chocolate to Cho..."), gift_item) cho "Yes!" ("grin", "happyCl", "base", "down") cho "I've been trying to stay away from it, but since the season is over, I can have as much as I'd like..." ("grin", "narrow", "base", "mid") cho "Within reason... of course." ("smile", "narrow", "base", "downR") @@ -63,25 +63,25 @@ label give_cho_gift(gift_item): elif gift_item == plush_owl_ITEM: if states.cho.tier <= 1: cho "A toy?" ("annoyed", "base", "base", "mid") - call give_gift("You give the stuffed owl to Cho...",gift_item) + call give_gift(_("You give the stuffed owl to Cho..."), gift_item) cho "My team would probably laugh if they saw me with this..." ("disgust", "narrow", "base", "mid") cho "I'm sorry, but I can't accept this..." ("soft", "narrow", "base", "mid") call cho_mood(0) elif states.cho.tier == 2: cho "A toy?" ("soft", "base", "base", "down") - call give_gift("You give the stuffed owl to Cho...",gift_item) + call give_gift(_("You give the stuffed owl to Cho..."), gift_item) cho "That's very nice of you [name_genie_cho], but I'd probably be made fun of for owning this..." ("annoyed", "base", "base", "mid") cho "I guess I could give it to someone." ("open", "base", "base", "R") call cho_mood(0) elif states.cho.tier == 3: cho "A toy?" ("soft", "narrow", "base", "down") - call give_gift("You give the stuffed owl to Cho...",gift_item) + call give_gift(_("You give the stuffed owl to Cho..."), gift_item) cho "I'm not a child, [name_genie_cho]..." ("annoyed", "base", "base", "mid") cho "Thank you I guess..." ("open", "narrow", "base", "R") call cho_mood(0) else: cho "A toy?" ("soft", "narrow", "base", "down") - call give_gift("You give the stuffed owl to Cho...",gift_item) + call give_gift(_("You give the stuffed owl to Cho..."), gift_item) cho "Not the kind of Toy I'd like..." ("horny", "narrow", "raised", "mid") cho "Thank you I suppose." ("open", "narrow", "base", "mid") call cho_mood(0) @@ -95,44 +95,44 @@ label give_cho_gift(gift_item): cho "Butterbeer?" ("open", "base", "base", "down") cho "Yes, I'll take it... Turns out my teammates had been lying about the alcohol content to mess with me." ("base", "narrow", "base", "mid") cho "I can't believe they made me miss out on this, for such a long time." ("open", "narrow", "base", "R") - call give_gift("You give the Butterbeer to Cho...",gift_item) + call give_gift(_("You give the Butterbeer to Cho..."), gift_item) cho "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-2) elif states.cho.tier == 3: cho "Butterbeer?" ("open", "base", "base", "down") cho "It's a bit tame, isn't it? I chugged a lot of it after our last win and can't say I felt a buzz even." ("soft", "narrow", "raised", "mid") - call give_gift("You give the Butterbeer to Cho...",gift_item) + call give_gift(_("You give the Butterbeer to Cho..."), gift_item) cho "Thank you, I suppose, [name_genie_cho]." ("soft", "base", "base", "R") call cho_mood(0) else: cho "Butterbeer?" ("soft", "narrow", "raised", "down") cho "Don't you have any firewhisky?" ("annoyed", "base", "base", "mid") - call give_gift("You give the Butterbeer to Cho...",gift_item) + call give_gift(_("You give the Butterbeer to Cho..."), gift_item) cho "Thanks, I suppose..." ("open", "narrow", "base", "down") call cho_mood(0) elif gift_item == science_mag_ITEM: if states.cho.tier <= 1: cho "Oh, I heard that they put out a new formula for broom polish in this issue." ("smile", "base", "base", "mid") - call give_gift("You give an assortment of educational magazines to Cho...",gift_item) + call give_gift(_("You give an assortment of educational magazines to Cho..."), gift_item) cho "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-1) elif states.cho.tier == 2: cho "*Hmm*... Broom aerodynamics and how to utilise your opponent's slipstream..." ("open", "narrow", "raised", "down") cho "Interesting..." ("smile", "base", "base", "mid") - call give_gift("You give an assortment of educational magazines to Cho...",gift_item) + call give_gift(_("You give an assortment of educational magazines to Cho..."), gift_item) cho "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-1) elif states.cho.tier == 3: cho "Five steps to modify your brooms legally..." ("soft", "base", "base", "down") cho "Sounds useful." ("smile", "base", "base", "mid") - call give_gift("You give an assortment of educational magazines to Cho...",gift_item) + call give_gift(_("You give an assortment of educational magazines to Cho..."), gift_item) cho "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-1) else: cho "An expert's guide, on how to maintain and store your Quidditch gear." ("base", "narrow", "base", "down") cho "Isn't that what a broom closet is for?" ("soft", "wink", "base", "mid") - call give_gift("You give an assortment of educational magazines to Cho...",gift_item) + call give_gift(_("You give an assortment of educational magazines to Cho..."), gift_item) cho "I suppose you learn something new every day... Thank you [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-1) @@ -143,21 +143,21 @@ label give_cho_gift(gift_item): call cho_mood(0) elif states.cho.tier == 2: cho "Girls magazines?" ("soft", "narrow", "base", "down") - call give_gift("You give an assortment of rather girly magazines to Cho...",gift_item) + call give_gift(_("You give an assortment of rather girly magazines to Cho..."), gift_item) cho "I don't usually read these types of magazines, the boys used to make fun of me for it." ("annoyed", "narrow", "base", "R") cho "But they can't get into the girls' dorm." ("base", "narrow", "base", "R") cho "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-1) elif states.cho.tier == 3: cho "Girls magazines?" ("soft", "base", "base", "down") - call give_gift("You give an assortment of rather girly magazines to Cho...",gift_item) + call give_gift(_("You give an assortment of rather girly magazines to Cho..."), gift_item) cho "They do have some interesting stuff on skincare I suppose..." ("annoyed", "narrow", "base", "R") cho "Thank you, [name_genie_cho]." ("open", "base", "base", "R") call cho_mood(-1) else: cho "Girls magazines?" ("soft", "narrow", "base", "down") cho "I suppose I found the article in last month's issue about cultural appropriation interesting..." ("open", "narrow", "base", "downR") - call give_gift("You give an assortment of rather girly magazines to Cho...",gift_item) + call give_gift(_("You give an assortment of rather girly magazines to Cho..."), gift_item) cho "Don't tell the boys I said that." ("soft", "closed", "base", "mid") cho "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-1) @@ -170,21 +170,21 @@ label give_cho_gift(gift_item): call cho_mood(1) elif states.cho.tier == 2: cho "Adult magazines?" ("soft", "narrow", "base", "down") - call give_gift("You give an assortment of adult magazines to Cho...",gift_item) + call give_gift(_("You give an assortment of adult magazines to Cho..."), gift_item) cho @ cheeks blush "These people do have nice posture..." ("open", "narrow", "base", "down") cho @ cheeks blush "I... I guess they could be useful." ("open", "base", "base", "R") cho @ cheeks blush "Thank you, [name_genie_cho]." ("open", "closed", "base", "mid") call cho_mood(-1) elif states.cho.tier == 3: cho "Adult magazines?" ("soft", "narrow", "base", "down") - call give_gift("You give an assortment of adult magazines to Cho...",gift_item) + call give_gift(_("You give an assortment of adult magazines to Cho..."), gift_item) cho "They're all so fit in these magazines... Totally my type." ("smile", "narrow", "base", "down") cho "Does this one model in the nude?" ("horny", "base", "base", "down") cho "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-1) else: cho @ cheeks blush "Adult magazines?" ("soft", "narrow", "base", "down") - call give_gift("You give an assortment of adult magazines to Cho...",gift_item) + call give_gift(_("You give an assortment of adult magazines to Cho..."), gift_item) cho @ cheeks blush "Wow, look at that guy's abs..." ("horny", "base", "base", "down") cho @ cheeks blush "And that girl's... What do you call it?" ("soft", "base", "raised", "down") cho @ cheeks blush "Cum-gutters?" ("horny", "narrow", "raised", "down") @@ -204,7 +204,7 @@ label give_cho_gift(gift_item): call cho_mood(2) elif states.cho.tier == 3: cho @ cheeks blush "What's this?" ("soft", "narrow", "base", "down") - call give_gift("You give an assortment of porn magazines to Cho...",gift_item) + call give_gift(_("You give an assortment of porn magazines to Cho..."), gift_item) cho @ cheeks blush "What's with these positions? Is that a broom handle up her--" ("angry", "base", "base", "down") cho @ cheeks blush "Oh my..." ("angry", "base", "base", "down") call cho_mood(0) @@ -213,7 +213,7 @@ label give_cho_gift(gift_item): cho @ cheeks blush "Ooh, are those two doing it on a broom? That's impressive..." ("open", "base", "raised", "down") cho @ cheeks blush "[name_genie_cho], this is naughty... Even for you." ("smile", "narrow", "base", "downR") cho @ cheeks blush "I've got my eyes on you." ("base", "narrow", "raised", "mid") - call give_gift("You give an assortment of porn magazines to Cho...",gift_item) + call give_gift(_("You give an assortment of porn magazines to Cho..."), gift_item) cho @ cheeks heavy_blush "..." ("horny", "narrow", "base", "mid") call cho_mood(-3) @@ -228,7 +228,7 @@ label give_cho_gift(gift_item): cho @ cheeks blush "A Viktor Krum poster?" ("soft", "narrow", "base", "down") cho @ cheeks blush "He really is quite muscular isn't he..." ("disgust", "narrow", "base", "down") cho @ cheeks blush "I'll use it..." ("smile", "narrow", "base", "down") - call give_gift("You give the poster to Cho...",gift_item) + call give_gift(_("You give the poster to Cho..."), gift_item) cho @ cheeks blush "As a motivational poster that is!" ("angry", "narrow", "raised", "downR") cho @ cheeks blush "Thank you [name_genie_cho]." ("open", "narrow", "base", "R") call cho_mood(-2) @@ -237,13 +237,13 @@ label give_cho_gift(gift_item): cho "Wasn't his nudes leaked in Wizard Hunks weekly?" ("open", "base", "raised", "down") cho "..." ("angry", "wide", "raised", "mid") cho "Not that I'd read such a thing." ("angry", "wide", "base", "downR") - call give_gift("You give the poster to Cho...",gift_item) + call give_gift(_("You give the poster to Cho..."), gift_item) cho "Thank you [name_genie_cho]." ("angry", "base", "base", "downR") call cho_mood(-3) else: cho @ cheeks blush "A Viktor Krum poster?" ("soft", "narrow", "raised", "down") cho @ cheeks blush "But, isn't this almost the same as if he were to be watching me for real?" ("horny", "narrow", "base", "down") - call give_gift("You give the poster to Cho...",gift_item) + call give_gift(_("You give the poster to Cho..."), gift_item) cho @ cheeks blush "..." ("horny", "narrow", "base", "down") cho @ cheeks blush "I love it, [name_genie_cho]." ("smile", "narrow", "base", "mid") call cho_mood(-5) @@ -263,7 +263,7 @@ label give_cho_gift(gift_item): elif states.cho.tier == 3: cho "Lingerie?" ("soft", "narrow", "base", "down") cho "Seems pretty flexible. I might be able to use these when stretching." ("base", "narrow", "base", "down") - call give_gift("You give the lingerie to Cho...",gift_item) + call give_gift(_("You give the lingerie to Cho..."), gift_item) cho "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-2) else: @@ -271,7 +271,7 @@ label give_cho_gift(gift_item): cho @ cheeks blush "very sexy... Did you pick them out yourself?" ("base", "wink", "base", "mid") cho @ cheeks blush "You've got good taste... I tore mine during the ball last year..." ("smile", "narrow", "base", "R") cho @ cheeks blush "That's what I get for thinking they'd fit, even after doing so many squats, I suppose..." ("smile", "narrow", "base", "mid") - call give_gift("You give the lingerie to Cho...",gift_item) + call give_gift(_("You give the lingerie to Cho..."), gift_item) cho @ cheeks blush "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-3) @@ -285,13 +285,13 @@ label give_cho_gift(gift_item): elif states.cho.tier == 2: cho "Stockings?" ("annoyed", "narrow", "base", "down") cho "I guess I won't get sunburnt on my legs wearing these..." ("open", "narrow", "base", "mid") - call give_gift("You give the lingerie to Cho...",gift_item) + call give_gift(_("You give the lingerie to Cho..."), gift_item) cho "Thank you [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-1) elif states.cho.tier == 3: cho @ cheeks blush "Stockings?" ("soft", "narrow", "base", "down") cho @ cheeks blush "I can almost see right through these..." ("soft", "narrow", "base", "down") - call give_gift("You give the lingerie to Cho...",gift_item) + call give_gift(_("You give the lingerie to Cho..."), gift_item) cho @ cheeks blush "Thank you, [name_genie_cho]." ("open", "narrow", "base", "downR") call cho_mood(-2) else: @@ -318,7 +318,7 @@ label give_cho_gift(gift_item): call cho_mood(0) else: cho "Condoms?" ("soft", "narrow", "base", "down") - call give_gift("You give a pack of condoms to Cho...", gift_item) + call give_gift(_("You give a pack of condoms to Cho..."), gift_item) cho @ cheeks blush "I thought you said we didn't need these?" ("soft", "narrow", "raised", "mid") cho @ cheeks blush "Although, perhaps we could find some use for them..." ("smile", "narrow", "base", "downR") call cho_mood(-2) @@ -342,7 +342,7 @@ label give_cho_gift(gift_item): call cho_mood(0) else: cho @ cheeks heavy_blush "A Vibrator?" ("open", "narrow", "base", "down") - call give_gift("You give the vibrator to Cho...", gift_item) + call give_gift(_("You give the vibrator to Cho..."), gift_item) cho @ cheeks heavy_blush "*Hmm*... It does promote a healthy lifestyle..." ("base", "narrow", "base", "down") cho @ cheeks heavy_blush "Thank you, [name_genie_cho]." ("smile", "base", "base", "mid") call cho_mood(-3) @@ -367,7 +367,7 @@ label give_cho_gift(gift_item): call cho_mood(0) else: cho @ cheeks heavy_blush "Anal Lubricant?" ("soft", "base", "base", "down") - call give_gift("You give the jar of anal lube to Cho...", gift_item) + call give_gift(_("You give the jar of anal lube to Cho..."), gift_item) cho @ cheeks heavy_blush "You should've given me this yesterday, [name_genie_cho]." ("smile", "wink", "base", "mid") cho @ cheeks heavy_blush "I haven't been able to sit on a broom properly, not since my last flying session..." ("horny", "closed", "base", "mid") call cho_mood(-5) @@ -390,7 +390,7 @@ label give_cho_gift(gift_item): call cho_mood(0) else: cho @ cheeks heavy_blush "A ball gag and cuffs?" ("soft", "narrow", "base", "down") - call give_gift("You give the ball gag and cuffs to Cho...", gift_item) + call give_gift(_("You give the ball gag and cuffs to Cho..."), gift_item) cho @ cheeks heavy_blush "How progressive... Do they require a safe-word to open?" ("horny", "narrow", "base", "down") cho @ cheeks heavy_blush "Wait, how would a safe-word work when you have a ball in your mouth..." ("disgust", "narrow", "base", "down") call cho_mood(-3) @@ -416,7 +416,7 @@ label give_cho_gift(gift_item): call cho_mood(2) else: cho @ cheeks heavy_blush "Anal plugs?" ("soft", "narrow", "base", "down") - call give_gift("You give a set of anal plugs to Cho...", gift_item) + call give_gift(_("You give a set of anal plugs to Cho..."), gift_item) cho @ cheeks heavy_blush "I suppose I could use one and plug both holes when I'm riding [states.cho.ev.quidditch.broom_name]..." ("base", "narrow", "base", "down") cho @ cheeks heavy_blush "Then all that is left is a ball gag..." ("smile", "base", "base", "mid") cho @ cheeks heavy_blush "I'm joking, of course..." ("smile", "narrow", "base", "R") @@ -441,7 +441,7 @@ label give_cho_gift(gift_item): call cho_mood(0) else: cho @ cheeks heavy_blush "A strap-on?" ("open", "narrow", "base", "down") - call give_gift("You give the thestral strap-on to Cho...", gift_item) + call give_gift(_("You give the thestral strap-on to Cho..."), gift_item) cho @ cheeks heavy_blush "I've always-- *Ahem*..." ("soft", "narrow", "base", "down") cho @ cheeks heavy_blush "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-1) @@ -466,7 +466,7 @@ label give_cho_gift(gift_item): call cho_mood(0) else: cho @ cheeks heavy_blush "Is that a Lady Speed Stick-2000, with a built-in vibrator and pulse function?" ("angry", "wide", "base", "down") - call give_gift("You give the broom to Cho...", gift_item) + call give_gift(_("You give the broom to Cho..."), gift_item) cho @ cheeks heavy_blush "I mean..." ("angry", "wide", "base", "mid") cho @ cheeks heavy_blush "Thank you, [name_genie_cho]..." ("angry", "base", "base", "stare") cho @ cheeks heavy_blush "I can't wait to learn more about it..." ("angry", "closed", "base", "mid") @@ -491,7 +491,7 @@ label give_cho_gift(gift_item): call cho_mood(1) else: cho @ cheeks heavy_blush "A sex doll?" ("soft", "narrow", "raised", "down") - call give_gift("You give the sex doll to Cho...", gift_item) + call give_gift(_("You give the sex doll to Cho..."), gift_item) cho @ cheeks heavy_blush "It says Joanne on it..." ("base", "narrow", "base", "down") cho @ cheeks heavy_blush "I'll leave it in the boys' changing room... Should make a good reward after practice." ("base", "wink", "base", "mid") call cho_mood(-7) @@ -515,7 +515,7 @@ label give_cho_gift(gift_item): call cho_mood(2) else: cho @ cheeks heavy_blush "Anal beads?" ("soft", "narrow", "base", "down") - call give_gift("You give the anal beads to Cho...", gift_item) + call give_gift(_("You give the anal beads to Cho..."), gift_item) cho @ cheeks heavy_blush "Surely my butt would hurt after using these..." ("upset", "base", "base", "down") cho @ cheeks heavy_blush "Although I do have a cushioning charm on my broom for a reason..." ("horny", "narrow", "base", "down") cho @ cheeks heavy_blush "Thank you, [name_genie_cho]." ("smile", "narrow", "base", "mid") @@ -534,7 +534,7 @@ label give_cho_gift(gift_item): else: cho "A bottle of wine?" ("soft", "narrow", "raised", "down") cho "Well, I suppose I've deserved to let loose a bit." ("smile", "base", "base", "mid") - call give_gift("You give the sweets to Cho...",gift_item) + call give_gift(_("You give the sweets to Cho..."), gift_item) cho "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-1) @@ -551,7 +551,7 @@ label give_cho_gift(gift_item): else: cho "Firewhisky?" ("soft", "narrow", "raised", "down") cho "Well, I suppose I've deserved to let loose a bit." ("smile", "base", "base", "mid") - call give_gift("You give the sweets to Cho...",gift_item) + call give_gift(_("You give the sweets to Cho..."), gift_item) cho "Thank you, [name_genie_cho]." ("base", "base", "base", "mid") call cho_mood(-1) diff --git a/game/scripts/characters/hermione/events/items/butt_plugs.rpy b/game/scripts/characters/hermione/events/items/butt_plugs.rpy index 16bedde1..7be3d6cd 100644 --- a/game/scripts/characters/hermione/events/items/butt_plugs.rpy +++ b/game/scripts/characters/hermione/events/items/butt_plugs.rpy @@ -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") diff --git a/game/scripts/characters/hermione/events/tutoring.rpy b/game/scripts/characters/hermione/events/tutoring.rpy index 2b59f962..95ca5aed 100644 --- a/game/scripts/characters/hermione/events/tutoring.rpy +++ b/game/scripts/characters/hermione/events/tutoring.rpy @@ -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 diff --git a/game/scripts/characters/hermione/gifts.rpy b/game/scripts/characters/hermione/gifts.rpy index 31c335ea..e3d8acd4 100644 --- a/game/scripts/characters/hermione/gifts.rpy +++ b/game/scripts/characters/hermione/gifts.rpy @@ -11,31 +11,31 @@ label give_her_gift(gift_item): if gift_item == lollipop_ITEM: if states.her.level < 6: her "A lollipop?" ("base", "base", "base", "mid") - call give_gift("You give the lollipop to Hermione...",gift_item) + call give_gift(_("You give the lollipop to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-5) elif states.her.level < 12: her "A lollipop?" ("normal", "base", "base", "mid") her "Sweets are for kids, [name_genie_hermione]." ("open", "base", "base", "mid") - call give_gift("You give the lollipop to Hermione...",gift_item) + call give_gift(_("You give the lollipop to Hermione..."), gift_item) her "Thank you..." ("annoyed", "base", "worried", "R") call her_mood(-5) elif states.her.level < 18: her "A lollipop?" ("normal", "base", "base", "mid") - call give_gift("You give the lollipop to Hermione...",gift_item) + call give_gift(_("You give the lollipop to Hermione..."), gift_item) her "*Ehm*... Sure, thanks..." ("open", "squint", "base", "mid") call her_mood(-5) else: her "A lollipop?" ("base", "base", "base", "mid") her "Clever girls use sweets like these as a \"weapon\"." ("smile", "base", "base", "R") - call give_gift("You give the lollipop to Hermione...",gift_item) + call give_gift(_("You give the lollipop to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("base", "happyCl", "base", "mid") call her_mood(-5) elif gift_item == chocolate_ITEM: if states.her.level < 6: her "A chocolate bar?" ("base", "base", "base", "mid") - call give_gift("You give the chocolate to Hermione...", gift_item) + call give_gift(_("You give the chocolate to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-10) elif states.her.level < 12: @@ -43,19 +43,19 @@ label give_her_gift(gift_item): her "*Hmm*..." ("annoyed", "squint", "angry", "mid") her "That thing about fairies..." ("annoyed", "squint", "angry", "mid") her "That is a joke of some sort, right?" ("open", "base", "worried", "mid") - call give_gift("You give the chocolate to Hermione...", gift_item) + call give_gift(_("You give the chocolate to Hermione..."), gift_item) her "Thank you..." ("soft", "base", "base", "mid") call her_mood(-10) elif states.her.level < 18: her "A chocolate bar?" ("normal", "base", "base", "mid") her "I just like the way it crunches, [name_genie_hermione]! N-not the taste..." ("grin", "happyCl", "worried", "mid",emote="sweat") - call give_gift("You give the chocolate to Hermione...", gift_item) + call give_gift(_("You give the chocolate to Hermione..."), gift_item) her "*Ehm*... Sure, thanks..." ("base", "base", "base", "mid") call her_mood(-10) else: # Lv 7+ her "A chocolate bar?" ("base", "base", "base", "mid") her "You spoil me, [name_genie_hermione]." ("smile", "base", "angry", "mid") - call give_gift("You give the chocolate to Hermione...", gift_item) + call give_gift(_("You give the chocolate to Hermione..."), gift_item) her "Thank you." ("base", "squint", "base", "mid") call her_mood(-10) @@ -63,20 +63,20 @@ label give_her_gift(gift_item): if states.her.level < 6: her "A stuffed owl?" ("base", "base", "base", "mid") her "It's cute..." ("base", "base", "base", "mid") - call give_gift("You give the owl to Hermione...",gift_item) + call give_gift(_("You give the owl to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-7) elif states.her.level < 12: her "A plush toy?" ("open", "base", "worried", "mid") her "I like it!" ("base", "base", "base", "mid") - call give_gift("You give the owl to Hermione...",gift_item) + call give_gift(_("You give the owl to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-10) elif states.her.level < 18: her "A toy?" ("base", "base", "base", "mid") her "Toys are for kids, [name_genie_hermione]." ("open", "base", "base", "mid") her "But I'll take it..." ("annoyed", "base", "worried", "R") - call give_gift("You give the owl to Hermione...",gift_item) + call give_gift(_("You give the owl to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-15) else: @@ -87,7 +87,7 @@ label give_her_gift(gift_item): her "So it is really just a plush toy then?" ("open", "happy", "base", "mid") her "Shame..." ("angry", "narrow", "base", "down") her "I mean, thank you, [name_genie_hermione]." ("angry", "happyCl", "worried", "mid",emote="sweat") - call give_gift("You give the owl to Hermione...",gift_item) + call give_gift(_("You give the owl to Hermione..."), gift_item) call her_mood(-4) elif gift_item == butterbeer_ITEM: @@ -95,26 +95,26 @@ label give_her_gift(gift_item): her "Butterbeer?" ("base", "base", "base", "mid") her "Are you sure about that, [name_genie_hermione]?" ("open", "squint", "base", "mid") her "It does contain alcohol, you know..." ("base", "base", "base", "mid") - call give_gift("You give the bottle to Hermione...",gift_item) + call give_gift(_("You give the bottle to Hermione..."), gift_item) her "Thank you." ("base", "base", "base", "mid") call her_mood(-3) elif states.her.level < 12: her "Butterbeer, [name_genie_hermione]?" ("open", "base", "worried", "mid") her "To let you in on a little secret, [name_genie_hermione]..." ("open", "base", "base", "mid") her "I'm a big fan of this completely harmless beverage." ("base", "base", "base", "mid") - call give_gift("You give the bottle to Hermione...",gift_item) + call give_gift(_("You give the bottle to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-10) elif states.her.level < 18: her "Butterbeer?" ("base", "base", "base", "mid") her "Thank you, [name_genie_hermione]." ("grin", "happyCl", "worried", "mid",emote="sweat") - call give_gift("You give the bottle to Hermione...",gift_item) + call give_gift(_("You give the bottle to Hermione..."), gift_item) her "I shall drink this with the girls later." ("base", "base", "base", "mid") call her_mood(-15) else: her "Butterbeer...?" ("base", "base", "base", "mid") her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") - call give_gift("You give the bottle to Hermione...",gift_item) + call give_gift(_("You give the bottle to Hermione..."), gift_item) her "I shall drink this later with the boys." ("base", "base", "base", "mid") her @ cheeks blush "*Err*... I meant to say with the girls, of course." ("open", "base", "base", "R") call her_mood(-20) @@ -122,13 +122,13 @@ label give_her_gift(gift_item): elif gift_item == science_mag_ITEM: if states.her.level < 6: her "\"Popular magic\" magazines?" ("base", "base", "base", "mid") - call give_gift("You give an assortment of educational magazines to Hermione...",gift_item) + call give_gift(_("You give an assortment of educational magazines to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]!" ("base", "base", "base", "mid") her "I will use them for my research!" call her_mood(-15) elif states.her.level < 12: her "Sometimes I find information in magazines that I could never find in a book..." ("base", "base", "base", "mid") - call give_gift("You give an assortment of educational magazines to Hermione...",gift_item) + call give_gift(_("You give an assortment of educational magazines to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]!" ("base", "base", "base", "mid") her "I will use them for my research!" call her_mood(-10) @@ -136,14 +136,14 @@ label give_her_gift(gift_item): her "Oh..." ("open", "base", "base", "mid") her "Yes, I used to read magazines like that a lot..." ("base", "base", "base", "mid") her "Lately not so much though..." ("open", "base", "worried", "R") - call give_gift("You give an assortment of educational magazines to Hermione...",gift_item) + call give_gift(_("You give an assortment of educational magazines to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]!" ("base", "base", "base", "mid") call her_mood(-3) else: her "*Ehm*..." ("open", "base", "worried", "R") her "To be honest, magazines like that lost their appeal to me completely lately..." ("open", "squint", "base", "mid") her "But I don't mind taking them off your hands anyway, [name_genie_hermione]." ("open", "base", "worried", "mid") - call give_gift("You give an assortment of educational magazines to Hermione...",gift_item) + call give_gift(_("You give an assortment of educational magazines to Hermione..."), gift_item) her "Thank you." ("soft", "base", "base", "R") call her_mood(0) @@ -157,19 +157,19 @@ label give_her_gift(gift_item): her "I don't read magazines of that nature, [name_genie_hermione]..." ("open", "closed", "angry", "mid") her "................" ("soft", "base", "base", "R") her "But I could give it a try just to humour you I suppose..." ("open", "closed", "angry", "mid") - call give_gift("You give an assortment of rather girly magazines to Hermione...",gift_item) + call give_gift(_("You give an assortment of rather girly magazines to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]!" ("open", "squint", "base", "mid") call her_mood(-5) elif states.her.level < 18: her "I'm ashamed to admit this, but..." ("open", "base", "worried", "R") her "I really enjoy reading magazines like that lately..." ("grin", "happyCl", "worried", "mid",emote="sweat") - call give_gift("You give an assortment of rather girly magazines to Hermione...",gift_item) + call give_gift(_("You give an assortment of rather girly magazines to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("open", "squint", "base", "mid") call her_mood(-15) else: her "The Latest edition of \"Girlz\"?!" ("angry", "wide", "base", "stare") her "I can't have enough of that brilliant magazine!" ("grin", "happyCl", "worried", "mid",emote="sweat") - call give_gift("You give an assortment of rather girly magazines to Hermione...",gift_item) + call give_gift(_("You give an assortment of rather girly magazines to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("open", "squint", "base", "mid") call her_mood(-15) @@ -189,7 +189,7 @@ label give_her_gift(gift_item): elif states.her.level < 18: her "Adult magazines?" ("open", "base", "base", "mid") her "[name_genie_hermione], this is such an inappropriate present for a girl like me..." ("angry", "happyCl", "worried", "mid",emote="sweat") - call give_gift("You give an assortment of adult magazines to Hermione...",gift_item) + call give_gift(_("You give an assortment of adult magazines to Hermione..."), gift_item) her "I shall throw these away myself..." ("annoyed", "narrow", "annoyed", "mid") call her_mood(-8) else: @@ -197,7 +197,7 @@ label give_her_gift(gift_item): her "*Err*... I mean, adult magazines?" ("angry", "wink", "base", "mid") her "This is a little inappropriate..." her "But I will take them..." ("base", "happyCl", "base", "mid") - call give_gift("You give an assortment of adult magazines to Hermione...",gift_item) + call give_gift(_("You give an assortment of adult magazines to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("base", "happyCl", "base", "mid") call her_mood(-15) @@ -218,7 +218,7 @@ label give_her_gift(gift_item): her "Which is a completely inappropriate gift for a girl like me!" ("angry", "happyCl", "worried", "mid",emote="sweat") her ".............." ("angry", "narrow", "base", "down") her "But I will take them..." ("angry", "base", "base", "mid") - call give_gift("You give an assortment of porn magazines to Hermione...",gift_item) + call give_gift(_("You give an assortment of porn magazines to Hermione..."), gift_item) her "And I shall throw them in the rubbish, where they, and girls who like these things belong..." ("annoyed", "narrow", "annoyed", "mid") call her_mood(0) else: @@ -228,7 +228,7 @@ label give_her_gift(gift_item): her "................." ("angry", "narrow", "base", "down") her "Alright, I shall accept them..." ("upset", "closed", "base", "mid") her @ cheeks blush "Solely for research purposes of course..." ("open", "base", "base", "R") - call give_gift("You give an assortment of porn magazines to Hermione...",gift_item) + call give_gift(_("You give an assortment of porn magazines to Hermione..."), gift_item) call her_mood(-15) elif gift_item == krum_poster_ITEM: @@ -242,18 +242,18 @@ label give_her_gift(gift_item): her "*Hmm*..." ("annoyed", "narrow", "annoyed", "mid") her "I think I saw this player once or twice..." ("annoyed", "narrow", "worried", "down") her "He is that Durmstrang student, right?" ("base", "base", "base", "mid") - call give_gift("You give the poster to Hermione...",gift_item) + call give_gift(_("You give the poster to Hermione..."), gift_item) call her_mood(-5) elif states.her.level < 18: her "A Viktor Krum poster, [name_genie_hermione]?" ("annoyed", "narrow", "worried", "down") her "Can't say that I care much for Quidditch, but..." ("open", "squint", "base", "mid") her "I can see why the girls find the brutish physique of some players appealing..." ("open", "narrow", "worried", "down") - call give_gift("You give the poster to Hermione...",gift_item) + call give_gift(_("You give the poster to Hermione..."), gift_item) call her_mood(-15) else: her "A Viktor Krum poster?!" ("scream", "wide", "base", "mid") her "Thank you, [name_genie_hermione]!" ("grin", "happyCl", "worried", "mid",emote="sweat") - call give_gift("You give the poster to Hermione...",gift_item) + call give_gift(_("You give the poster to Hermione..."), gift_item) her "Can't wait to hang it over my bed!" ("smile", "base", "base", "R") her "The girls will go green with envy..." ("smile", "narrow", "base", "mid_soft") call her_mood(-25) @@ -271,14 +271,14 @@ label give_her_gift(gift_item): elif states.her.level < 18: her "Sexy lingerie?" ("base", "narrow", "worried", "down") her "[name_genie_hermione] that is so inappropriate..." ("angry", "wink", "base", "mid") - call give_gift("You give the lingerie to Hermione...",gift_item) + call give_gift(_("You give the lingerie to Hermione..."), gift_item) her @ cheeks blush "Thank you, [name_genie_hermione]." ("base", "base", "base", "R") call her_mood(-7) else: her "Sexy lingerie?" ("base", "narrow", "worried", "down") her "Do you think wearing these will make me look like one of the witches in those adult magazines, [name_genie_hermione]?" ("grin", "narrow", "base", "dead") her "Oh... I mean, thank you, [name_genie_hermione]." ("angry", "wink", "base", "mid") - call give_gift("You give the lingerie to Hermione...",gift_item) + call give_gift(_("You give the lingerie to Hermione..."), gift_item) call her_mood(-15) elif gift_item == sexy_stockings_ITEM : @@ -293,13 +293,13 @@ label give_her_gift(gift_item): elif states.her.level < 18: her "Sexy stockings?" ("base", "narrow", "worried", "down") her @ cheeks blush "Thank you I guess..." ("base", "wink", "base", "mid") - call give_gift("You give the stockings to Hermione...",gift_item) + call give_gift(_("You give the stockings to Hermione..."), gift_item) her @ cheeks blush "Thank you, [name_genie_hermione]." ("base", "base", "base", "R") call her_mood(-8) else: her "Sexy stockings?" ("base", "narrow", "worried", "down") her "These are almost completely transparent, [name_genie_hermione]!" ("grin", "wide", "base", "mid") - call give_gift("You give the stockings to Hermione...",gift_item) + call give_gift(_("You give the stockings to Hermione..."), gift_item) call her_mood(-10) elif gift_item == pink_condoms_ITEM: @@ -316,12 +316,12 @@ label give_her_gift(gift_item): her "A pack of condoms?" ("normal", "base", "base", "mid") her "[name_genie_hermione], what possible use could I have for those?" ("normal", "base", "base", "mid") her "Well, I shall accept them simply because it is rude to refuse a gift..." ("open", "closed", "angry", "mid") - call give_gift("You give a pack of condoms to Hermione...", gift_item) + call give_gift(_("You give a pack of condoms to Hermione..."), gift_item) call her_mood(-3) else: her "A pack of condoms?" ("open", "squint", "base", "mid") her "I appreciate your concern, [name_genie_hermione]. Thank you." ("base", "narrow", "base", "mid_soft") - call give_gift("You give a pack of condoms to Hermione...", gift_item) + call give_gift(_("You give a pack of condoms to Hermione..."), gift_item) call her_mood(-4) elif gift_item == vibrator_ITEM: @@ -345,13 +345,13 @@ label give_her_gift(gift_item): her "Did you have this custom-made for me [name_genie_hermione]?" ("angry", "narrow", "base", "down") her "This is inappropriate..." ("scream", "closed", "angry", "mid") her "But I shall take it nonetheless..." ("annoyed", "base", "worried", "R") - call give_gift("You give the vibrator to Hermione...",gift_item) + call give_gift(_("You give the vibrator to Hermione..."), gift_item) call her_mood(0) else: her "This vibrator..." ("open", "base", "worried", "mid") her "It's... calling out for me..." ("open", "base", "worried", "R") her "But not in a dirty way, [name_genie_hermione]." ("disgust", "narrow", "base", "mid_soft") - call give_gift("You give the vibrator to Hermione...",gift_item) + call give_gift(_("You give the vibrator to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("base", "narrow", "worried", "down") call her_mood(-10) @@ -372,14 +372,14 @@ label give_her_gift(gift_item): her @ cheeks blush "*Ehm*... Well... I know this girl..." ("open", "base", "base", "R") her "I mean, I don't know her, she is a friend of a friend..." ("open", "base", "base", "R") her "Yes, I will take this for her..." ("open", "base", "base", "R") - call give_gift("You give the jar to Hermione...",gift_item) + call give_gift(_("You give the jar to Hermione..."), gift_item) her @ cheeks blush "Still, I think you should not give presents like this to one of your pupils, [name_genie_hermione]." ("open", "narrow", "annoyed", "mid") call her_mood(0) else: her "Anal lubricant, [name_genie_hermione]?" ("base", "narrow", "worried", "down") her @ cheeks blush "I know a couple of girls who would do anything for a commodity like that." ("open", "narrow", "annoyed", "mid") her "Thank for looking out for us, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") - call give_gift("You give the jar to Hermione...",gift_item) + call give_gift(_("You give the jar to Hermione..."), gift_item) call her_mood(-5) elif gift_item == ballgag_and_cuffs_ITEM: @@ -404,20 +404,20 @@ label give_her_gift(gift_item): her "But I assure you that I am not one of them, [name_genie_hermione]." ("upset", "closed", "base", "mid") her @ cheeks blush "But I know a girl who knows a girl who is into things like..." ("open", "base", "base", "R") her @ cheeks blush "Yes, I shall take these to her..." ("base", "base", "base", "R") - call give_gift("You give the ball gag and cuffs to Hermione...",gift_item) + call give_gift(_("You give the ball gag and cuffs to Hermione..."), gift_item) call her_mood(-9) else: her @ cheeks blush "A ball gag and handcuffs?" ("open", "happy", "base", "mid") her "This is completely inappropriate, [name_genie_hermione]." ("angry", "wink", "base", "mid") her "But a gift is a gift, right?" ("base", "squint", "base", "mid") - call give_gift("You give the ball gag and cuffs to Hermione...",gift_item) + call give_gift(_("You give the ball gag and cuffs to Hermione..."), gift_item) call her_mood(-15) elif gift_item == anal_plugs_ITEM: if states.her.level < 6: her "*Hmm*...?" ("base", "base", "base", "mid") her "Is this some kind of keychain toy?" ("soft", "base", "base", "mid") - call give_gift("You give the anal plugs to Hermione...",gift_item) + call give_gift(_("You give the anal plugs to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("annoyed", "narrow", "annoyed", "mid") call her_mood(-8) elif states.her.level < 12: @@ -438,7 +438,7 @@ label give_her_gift(gift_item): her "They are so pretty though..." ("angry", "wink", "base", "mid") her "....................." ("angry", "narrow", "base", "down") her "Well, alright. I shall take them off your hands if I must, [name_genie_hermione]." ("soft", "narrow", "annoyed", "up") - call give_gift("You give the anal plugs to Hermione...",gift_item) + call give_gift(_("You give the anal plugs to Hermione..."), gift_item) her "But I shall never use them of course..." ("open", "closed", "base", "mid") her "................" ("base", "narrow", "worried", "down") call her_mood(-10) @@ -449,7 +449,7 @@ label give_her_gift(gift_item): her "An artefact of some sort or a trophy?" ("open", "base", "base", "mid") her "So well-crafted..." ("base", "base", "base", "mid") her "Are you sure that it's alright for me to have it, [name_genie_hermione]?" ("base", "base", "base", "mid") - call give_gift("You give the strap-on to Hermione...",gift_item) + call give_gift(_("You give the strap-on to Hermione..."), gift_item) her "Thank you very much, [name_genie_hermione]. I promise to take good care of it." ("open", "closed", "base", "mid") call her_mood(-20) elif states.her.level < 12: @@ -470,7 +470,7 @@ label give_her_gift(gift_item): her "Is this like a party prank prop?" ("angry", "base", "base", "mid") her "It's so well-crafted though..." ("angry", "narrow", "base", "down") her "I will take it..." ("normal", "happyCl", "worried", "mid") - call give_gift("You give the strap-on to Hermione...",gift_item) + call give_gift(_("You give the strap-on to Hermione..."), gift_item) call her_mood(-10) else: her "It's... It's magnificent, [name_genie_hermione]..." ("shock", "wide", "base", "stare") @@ -480,7 +480,7 @@ label give_her_gift(gift_item): her "Breathtaking..." ("grin", "narrow", "base", "dead") her "Not in the way you think, [name_genie_hermione]..." ("upset", "closed", "base", "mid") her "I am merely admiring the craftsmanship..." ("open", "closed", "base", "mid") - call give_gift("You give the strap-on to Hermione...",gift_item) + call give_gift(_("You give the strap-on to Hermione..."), gift_item) her "Thank you for the gift, [name_genie_hermione]." ("base", "squint", "base", "mid") call her_mood(-30) @@ -490,7 +490,7 @@ label give_her_gift(gift_item): her "*Hmm*..." ("normal", "base", "base", "mid") her "What is that silly-looking thing attached to it?" ("normal", "squint", "angry", "mid") her "Is it some kind of saddle...?" ("open", "squint", "base", "mid") - call give_gift("You give the broom to Hermione...",gift_item) + call give_gift(_("You give the broom to Hermione..."), gift_item) her "Thank you for the gift, [name_genie_hermione]." ("open", "base", "worried", "mid") call her_mood(-20) elif states.her.level < 12: @@ -498,7 +498,7 @@ label give_her_gift(gift_item): her "*Hmm*..." ("normal", "squint", "angry", "mid") her "It's a sex-toy of some sort, isn't it?" ("angry", "base", "angry", "mid") her "But it is so well crafted..." ("open", "narrow", "worried", "down") - call give_gift("You give the broom to Hermione...",gift_item) + call give_gift(_("You give the broom to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("upset", "closed", "base", "mid") call her_mood(-20) elif states.her.level < 18: @@ -507,7 +507,7 @@ label give_her_gift(gift_item): her "What kind of saddle is that...?" ("disgust", "narrow", "base", "mid_soft") her "Well, doesn't matter." ("open", "closed", "base", "mid") her "Refusing an expensive gift like that would be rude..." ("open", "closed", "base", "mid") - call give_gift("You give the broom to Hermione...",gift_item) + call give_gift(_("You give the broom to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("upset", "closed", "base", "mid") call her_mood(-30) else: @@ -517,7 +517,7 @@ label give_her_gift(gift_item): her @ cheeks blush "It was designed specifically for witches, wasn't it?" ("open", "happy", "base", "mid") her "I am not sure whether this is inappropriate or clever..." ("annoyed", "narrow", "annoyed", "mid") her "But this is a brilliant piece of engineering either way..." ("base", "squint", "base", "mid") - call give_gift("You give the broom to Hermione...",gift_item) + call give_gift(_("You give the broom to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("base", "narrow", "base", "mid_soft") call her_mood(-30) @@ -535,14 +535,14 @@ label give_her_gift(gift_item): her "A sex doll..." ("angry", "narrow", "base", "down") her "This is a little inappropriate..." ("upset", "closed", "base", "mid") her "But maybe we could use it for a prank or something..." ("base", "narrow", "worried", "down") - call give_gift("You give the blow-up doll to Hermione...",gift_item) + call give_gift(_("You give the blow-up doll to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("base", "narrow", "worried", "down") call her_mood(-10) else: her "The Joanne sex doll?" ("annoyed", "narrow", "worried", "down") her @ cheeks blush "I Can't say that I approve of this..." ("open", "base", "base", "R") her "But I know Harry would love to have a go at it..." ("base", "narrow", "worried", "down") - call give_gift("You give the blow-up doll to Hermione...",gift_item) + call give_gift(_("You give the blow-up doll to Hermione..."), gift_item) her @ cheeks blush "Thank you, [name_genie_hermione]." ("base", "base", "base", "R") call her_mood(-30) @@ -550,7 +550,7 @@ label give_her_gift(gift_item): if states.her.level < 6: her "*Hmm*...?" ("base", "base", "base", "mid") her "Is this a necklace?" ("soft", "base", "base", "mid") - call give_gift("You give the anal beads to Hermione...",gift_item) + call give_gift(_("You give the anal beads to Hermione..."), gift_item) her "Thank you, [name_genie_hermione]." ("base", "base", "base", "mid") call her_mood(-8) elif states.her.level < 12: @@ -570,7 +570,7 @@ label give_her_gift(gift_item): her "Although it's got a nice colour..." ("angry", "wink", "base", "mid") her "....................." ("angry", "narrow", "base", "down") her "Fine, I'll use them as an armband, [name_genie_hermione]." ("soft", "narrow", "annoyed", "up") - call give_gift("You give the anal beads to Hermione...",gift_item) + call give_gift(_("You give the anal beads to Hermione..."), gift_item) her "But I won't use them for their intended purpose..." ("open", "closed", "base", "mid") her "................" ("base", "narrow", "worried", "down") call her_mood(-10) diff --git a/game/scripts/characters/luna/gifts.rpy b/game/scripts/characters/luna/gifts.rpy index eb5fff2a..920893c8 100644 --- a/game/scripts/characters/luna/gifts.rpy +++ b/game/scripts/characters/luna/gifts.rpy @@ -9,24 +9,24 @@ label give_lun_gift(gift_item): if gift_item == lollipop_ITEM: lun "A lollipop?" ("open", "base", "base", "down") - call give_gift("You give the lollipop to Luna...", gift_item) + call give_gift(_("You give the lollipop to Luna..."), gift_item) lun "My father says that you should always have something sugary around in case a baby unicorn comes to visit." ("grin", "base", "base", "mid") lun "Thank you, [name_genie_luna]." ("base", "base", "base", "mid") elif gift_item == chocolate_ITEM: lun "Chocolate?" ("grin", "base", "base", "down") - call give_gift("You give the chocolate to Luna...", gift_item) + call give_gift(_("You give the chocolate to Luna..."), gift_item) lun "I heard that eating chocolate helps with dementia...{w=0.4} Or was it dementors?" ("soft", "narrow", "base", "mid") elif gift_item == plush_owl_ITEM: lun "A plush owl?" ("open", "base", "base", "down") - call give_gift("You give the stuffed owl to Luna...", gift_item) + call give_gift(_("You give the stuffed owl to Luna..."), gift_item) lun "I love owls... Growing up, there were always a few of them around, delivering my father's newspaper." ("grin", "base", "base", "mid") elif gift_item == butterbeer_ITEM: lun "Butterbeer?" ("open", "base", "base", "mid") lun "I could use the cork for another necklace!" ("grin", "base", "base", "mid") - call give_gift("You give the bottle to Luna...", gift_item) + call give_gift(_("You give the bottle to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("base", "base", "base", "mid") elif gift_item == science_mag_ITEM: @@ -59,37 +59,37 @@ label give_lun_gift(gift_item): elif gift_item == sexy_lingerie_ITEM: lun "I've seen a couple of the other girls wearing these!" ("soft", "base", "base", "down") - call give_gift("You give the lingerie to Luna...",gift_item) + call give_gift(_("You give the lingerie to Luna..."), gift_item) lun "Thank you, [name_genie_luna]!" ("base", "base", "base", "mid") elif gift_item == sexy_stockings_ITEM : lun "Very unique! I like it!" ("grin", "base", "base", "down") - call give_gift("You give the stockings to Luna...",gift_item) + call give_gift(_("You give the stockings to Luna..."), gift_item) lun "Thank you, [name_genie_luna]!" ("base", "base", "base", "mid") elif gift_item == pink_condoms_ITEM: lun "Condoms?!" ("mad", "wide", "base", "mid") lun "... I never knew they sold those rubbery creatures." ("angry", "base", "base", "stare") lun "Yes, we shall study them thoroughly!" ("base", "base", "base", "mid") - call give_gift("You give the condoms to Luna...",gift_item) + call give_gift(_("You give the condoms to Luna..."), gift_item) lun "Thank you [name_genie_luna]." ("grin", "base", "base", "mid") elif gift_item == vibrator_ITEM: lun "A back-massager!" ("grin", "base", "base", "down") - call give_gift("You give the vibrator to Luna...",gift_item) + call give_gift(_("You give the vibrator to Luna..."), gift_item) lun "Thank you, [name_genie_luna]!" ("grin", "base", "base", "mid") elif gift_item == anal_lube_ITEM: lun "Lube?" ("soft", "base", "raised", "down") lun "Will this help me get rid of the wrackspurts?" ("open", "base", "raised", "mid") - call give_gift("You give the anal lube to Luna...",gift_item) + call give_gift(_("You give the anal lube to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("base", "base", "base", "mid") elif gift_item == ballgag_and_cuffs_ITEM: lun "What is this?" ("soft", "base", "raised", "down") lun "Does this go in your mouth?" ("open", "base", "raised", "down") lun "But, [name_genie_luna]... How am I supposed to talk if I wear this?" ("annoyed", "narrow", "base", "mid") - call give_gift("You give the handcuffs to Luna...",gift_item) + call give_gift(_("You give the handcuffs to Luna..."), gift_item) lun "Thank you, I suppose..." ("soft", "base", "base", "downR") elif gift_item == anal_plugs_ITEM: @@ -99,35 +99,35 @@ label give_lun_gift(gift_item): elif states.lun.tier == 2: lun "Anal plugs..." ("soft", "base", "base", "down") lun "Are these supposed to help with the wrackspurts?" ("open", "base", "annoyed", "mid") - call give_gift("You give the anal plugs to Luna...",gift_item) + call give_gift(_("You give the anal plugs to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("base", "base", "base", "mid") elif states.lun.tier == 3: lun "Anal plugs..." ("open", "base", "base", "down") lun "Yes, I should probably use one of these to assist with redirecting the wrackspurts to a single area..." ("grin", "base", "base", "down") - call give_gift("You give the anal plugs to Luna...",gift_item) + call give_gift(_("You give the anal plugs to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("base", "base", "base", "mid") else: lun "*Mmm*... Anal plugs... I bet these will feel good..." ("grin", "narrow", "base", "down") lun "I mean, I bet these will help me deal with the wrackspurts!" ("angry", "base", "base", "mid") - call give_gift("You give the anal plugs to Luna...",gift_item) + call give_gift(_("You give the anal plugs to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("base", "base", "base", "mid") elif gift_item == testral_strapon_ITEM: if states.lun.tier <= 1: lun "A unicorn horn!" ("smile", "wide", "base", "down") - call give_gift("You give the strap-on to Luna...",gift_item) + call give_gift(_("You give the strap-on to Luna..."), gift_item) lun "I love it!" ("grin", "wide", "base", "mid") elif states.lun.tier == 2: lun "This is some sort of phallus, isn't it?" ("soft", "base", "base", "down") lun "Very peculiar..." ("soft", "base", "base", "down") lun "I shall study it for our research." ("open", "closed", "base", "mid") - call give_gift("You give the strap-on to Luna...",gift_item) + call give_gift(_("You give the strap-on to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("base", "base", "base", "mid") elif states.lun.tier == 3: lun "A penis!" ("grin", "base", "base", "down") lun "But, what are the straps for?" ("open", "base", "base", "down") lun "*Hmm*... I'll have to study it..." ("soft", "base", "base", "down") - call give_gift("You give the strap-on to Luna...",gift_item) + call give_gift(_("You give the strap-on to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("base", "base", "base", "mid") elif states.lun.tier == 4: lun "So, if I wore this... I'll have my own penis?" ("open", "base", "base", "down") @@ -143,53 +143,53 @@ label give_lun_gift(gift_item): lun "A broom?" ("open", "base", "raised", "down") lun "Hold on, there's an attachment on this seat..." ("angry", "base", "low", "down") lun "Oh, it's an art piece!" ("grin", "base", "base", "down") - call give_gift("You give the broom to Luna...",gift_item) + call give_gift(_("You give the broom to Luna..."), gift_item) lun "Thank you, [name_genie_luna]!" ("base", "base", "base", "mid") elif states.lun.tier == 2: lun "A broom, with an attached penis?" ("open", "base", "raised", "down") lun "Oh! You want me to study it, even when I'm flying?" ("grin", "base", "base", "mid") lun "Wait... That can't be it..." ("angry", "base", "base", "mid") - call give_gift("You give the broom to Luna...",gift_item) + call give_gift(_("You give the broom to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("base", "base", "base", "mid") elif states.lun.tier == 3: lun "A broom with a penis attached to it?" ("soft", "base", "base", "down") lun "I never knew brooms could grow penises..." ("soft", "base", "raised", "mid") lun "You learn something new every day..." ("grin", "base", "base", "mid") - call give_gift("You give the broom to Luna...",gift_item) + call give_gift(_("You give the broom to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("base", "base", "base", "mid") elif states.lun.tier == 4: lun "A broom with a penis on it... Or is that two penises?" ("soft", "base", "raised", "down") lun "How very strange..." ("open", "narrow", "base", "down") lun "I shall study it." ("base", "base", "base", "mid") - call give_gift("You give the broom to Luna...",gift_item) + call give_gift(_("You give the broom to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("grin", "base", "base", "mid") else: lun "A penis broom?" ("soft", "base", "raised", "down") lun "Or is it a broom penis, perhaps?" ("open", "narrow", "base", "down") lun "Very interesting..." ("base", "base", "base", "mid") - call give_gift("You give the broom to Luna...",gift_item) + call give_gift(_("You give the broom to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("grin", "base", "base", "mid") elif gift_item == sexdoll_ITEM: lun "A doll?" ("open", "base", "base", "down") lun "It says Joanne on it." ("soft", "narrow", "raised", "down") lun "Well, hello there Joanne." ("grin", "base", "base", "down") - call give_gift("You give the doll to Luna...",gift_item) + call give_gift(_("You give the doll to Luna..."), gift_item) lun "I'm sure we're going to be great friends..." ("smile", "base", "base", "down") elif gift_item == anal_beads_ITEM: lun "Such a lovely necklace!" ("grin", "narrow", "base", "down") - call give_gift("You give the anal beads to Luna...",gift_item) + call give_gift(_("You give the anal beads to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("grin", "base", "base", "mid") elif gift_item == wine_ITEM: lun "Wine... How lovely!" ("grin", "base", "base", "down") - call give_gift("You give the wine to Luna...", gift_item) + call give_gift(_("You give the wine to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("base", "base", "base", "mid") elif gift_item == firewhisky_ITEM: lun "Firewhisky... How lovely!" ("grin", "base", "base", "down") - call give_gift("You give the firewhisky to Luna...", gift_item) + call give_gift(_("You give the firewhisky to Luna..."), gift_item) lun "Thank you, [name_genie_luna]." ("base", "base", "base", "mid") lun "" (xpos="base",ypos="base") diff --git a/game/scripts/characters/snape/events/hangouts.rpy b/game/scripts/characters/snape/events/hangouts.rpy index 913234ee..4336e735 100644 --- a/game/scripts/characters/snape/events/hangouts.rpy +++ b/game/scripts/characters/snape/events/hangouts.rpy @@ -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") diff --git a/game/scripts/characters/snape/summon.rpy b/game/scripts/characters/snape/summon.rpy index e67fa4a5..80432456 100644 --- a/game/scripts/characters/snape/summon.rpy +++ b/game/scripts/characters/snape/summon.rpy @@ -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 diff --git a/game/scripts/characters/susan/gifts.rpy b/game/scripts/characters/susan/gifts.rpy index ebc1b61d..59c374a3 100644 --- a/game/scripts/characters/susan/gifts.rpy +++ b/game/scripts/characters/susan/gifts.rpy @@ -8,91 +8,91 @@ label give_sus_gift(gift_item): $ states.sus.gifted = True if gift_item == lollipop_ITEM: - call give_gift("You give the lollipop to Susan...",gift_item) + call give_gift(_("You give the lollipop to Susan..."), gift_item) #Add text elif gift_item == chocolate_ITEM: - call give_gift("You give the chocolate to Susan...",gift_item) + call give_gift(_("You give the chocolate to Susan..."), gift_item) #Add text elif gift_item == plush_owl_ITEM: - call give_gift("You give the plush owl to Susan...",gift_item) + call give_gift(_("You give the plush owl to Susan..."), gift_item) #Add text elif gift_item == butterbeer_ITEM: - call give_gift("You give the butterbeer to Susan...",gift_item) + call give_gift(_("You give the butterbeer to Susan..."), gift_item) #Add text elif gift_item == science_mag_ITEM: - call give_gift("You give the educational magazine to Susan...",gift_item) + call give_gift(_("You give the educational magazine to Susan..."), gift_item) #Add text elif gift_item == girls_mag_ITEM: - call give_gift("You give the girls magazine to Susan...",gift_item) + call give_gift(_("You give the girls magazine to Susan..."), gift_item) #Add text elif gift_item == adult_mag_ITEM: - call give_gift("You give the adult magazine to Susan...",gift_item) + call give_gift(_("You give the adult magazine to Susan..."), gift_item) #Add text elif gift_item == porn_mag_ITEM: - call give_gift("You give the porn magazine to Susan...",gift_item) + call give_gift(_("You give the porn magazine to Susan..."), gift_item) #Add text elif gift_item == krum_poster_ITEM: - call give_gift("You give the poster to Susan...",gift_item) + call give_gift(_("You give the poster to Susan..."), gift_item) #Add text elif gift_item == sexy_lingerie_ITEM: - call give_gift("You give the lingerie to Susan...",gift_item) + call give_gift(_("You give the lingerie to Susan..."), gift_item) #Add text elif gift_item == sexy_stockings_ITEM : - call give_gift("You give the stockings to Susan...",gift_item) + call give_gift(_("You give the stockings to Susan..."), gift_item) #Add text elif gift_item == pink_condoms_ITEM: - call give_gift("You give the condoms to Susan...",gift_item) + call give_gift(_("You give the condoms to Susan..."), gift_item) #Add text elif gift_item == vibrator_ITEM: - call give_gift("You give the vibrator to Susan...",gift_item) + call give_gift(_("You give the vibrator to Susan..."), gift_item) #Add text elif gift_item == anal_lube_ITEM: - call give_gift("You give the anal lube to Susan...",gift_item) + call give_gift(_("You give the anal lube to Susan..."), gift_item) #Add text elif gift_item == ballgag_and_cuffs_ITEM: - call give_gift("You give the handcuffs to Susan...",gift_item) + call give_gift(_("You give the handcuffs to Susan..."), gift_item) #Add text elif gift_item == anal_plugs_ITEM: - call give_gift("You give the anal plugs to Susan...",gift_item) + call give_gift(_("You give the anal plugs to Susan..."), gift_item) #Add text elif gift_item == testral_strapon_ITEM: - call give_gift("You give the strap-on to Susan...",gift_item) + call give_gift(_("You give the strap-on to Susan..."), gift_item) #Add text elif gift_item == broom_2000_ITEM: - call give_gift("You give the broom to Susan...",gift_item) + call give_gift(_("You give the broom to Susan..."), gift_item) #Add text elif gift_item == sexdoll_ITEM: - call give_gift("You give the doll to Susan...",gift_item) + call give_gift(_("You give the doll to Susan..."), gift_item) #Add text elif gift_item == anal_beads_ITEM: - call give_gift("You give the anal beads to Susan...",gift_item) + call give_gift(_("You give the anal beads to Susan..."), gift_item) #Add text elif gift_item == wine_ITEM: - call give_gift("You give the wine to Susan...", gift_item) + call give_gift(_("You give the wine to Susan..."), gift_item) #Add text elif gift_item == firewhisky_ITEM: - call give_gift("You give the firewhisky to Susan...", gift_item) + call give_gift(_("You give the firewhisky to Susan..."), gift_item) #Add text diff --git a/game/scripts/characters/tonks/events/hangout.rpy b/game/scripts/characters/tonks/events/hangout.rpy index 405deae6..29ede4b2 100644 --- a/game/scripts/characters/tonks/events/hangout.rpy +++ b/game/scripts/characters/tonks/events/hangout.rpy @@ -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") diff --git a/game/scripts/characters/tonks/gifts.rpy b/game/scripts/characters/tonks/gifts.rpy index be5afc9b..5a281d52 100644 --- a/game/scripts/characters/tonks/gifts.rpy +++ b/game/scripts/characters/tonks/gifts.rpy @@ -9,13 +9,13 @@ label give_ton_gift(gift_item): if gift_item == lollipop_ITEM: ton "A lollipop?" ("open", "narrow", "base", "down") - call give_gift("You give the lollipop to Tonks...", gift_item) + call give_gift(_("You give the lollipop to Tonks..."), gift_item) ton "I know the perfect student to give this to." ("base", "narrow", "base", "R") call ton_friendship(1) elif gift_item == chocolate_ITEM: ton "*Mhmm*, Chocolate!" ("horny", "narrow", "base", "down") - call give_gift("You give the chocolate to Tonks...", gift_item) + call give_gift(_("You give the chocolate to Tonks..."), gift_item) ton "It's known that chocolate is a very effective mood enhancer after a Dementor attack." ("open", "closed", "base", "mid") ton "Although it's less known that it's because chocolate is considered to be a great aphrodisiac..." ("base", "narrow", "base", "mid") ton "I'll keep this for one of my private lessons." ("base", "base", "base", "mid") @@ -24,26 +24,26 @@ label give_ton_gift(gift_item): elif gift_item == plush_owl_ITEM: ton "An Owl?" ("open", "narrow", "base", "down") ton "Oh, it's a toy... Haven't seen one of these in a while." ("soft", "narrow", "base", "mid") - call give_gift("You give the stuffed owl to Tonks...",gift_item) + call give_gift(_("You give the stuffed owl to Tonks..."), gift_item) ton "Okay, for nostalgia's sake then..." ("open", "closed", "base", "mid") call ton_friendship(0) elif gift_item == butterbeer_ITEM: ton "Butterbeer?" ("open", "narrow", "base", "down") ton "Don't you have anything stronger?" ("upset", "narrow", "base", "mid") - call give_gift("You give the bottle to Tonks...", gift_item) + call give_gift(_("You give the bottle to Tonks..."), gift_item) ton "Just joking, I'll save it for when I've got company." ("base", "base", "base", "mid") call ton_friendship(1) elif gift_item == science_mag_ITEM: ton "Jinxes and sphinxes? These could help with some of my lessons." ("open", "narrow", "base", "down") - call give_gift("You give an assortment of educational magazines to Tonks...", gift_item) + call give_gift(_("You give an assortment of educational magazines to Tonks..."), gift_item) ton "Thank you, [name_genie_tonks]." ("base", "base", "base", "mid") call ton_friendship(1) elif gift_item == girls_mag_ITEM: ton "Some girl magazines? I could definitely put these in my classroom." ("open", "narrow", "base", "down") - call give_gift("You give an assortment of rather girly magazines to Tonks...", gift_item) + call give_gift(_("You give an assortment of rather girly magazines to Tonks..."), gift_item) ton "The girls do love staying after hours to socialise." ("base", "wink", "base", "mid") ton "" ("base", "base", "base", "mid") call ton_friendship(0) @@ -51,14 +51,14 @@ label give_ton_gift(gift_item): elif gift_item == adult_mag_ITEM: ton "Adult magazines?" ("open", "narrow", "base", "down") ton "Won't be the first time I've slipped one of these inside the stack of magazines in my classroom." ("base", "wink", "base", "mid") - call give_gift("You give an assortment of adult magazines to Tonks...", gift_item) + call give_gift(_("You give an assortment of adult magazines to Tonks..."), gift_item) ton "Thank you, [name_genie_tonks]." ("base", "base", "base", "mid") call ton_friendship(1) elif gift_item == porn_mag_ITEM: ton "Porn magazines?" ("open", "narrow", "base", "down") ton "I already know most positions in this book already of course..." ("base", "base", "base", "mid") - call give_gift("You give an assortment of pornographic magazines to Tonks...", gift_item) + call give_gift(_("You give an assortment of pornographic magazines to Tonks..."), gift_item) ton "Although..." ("horny", "narrow", "base", "down") ton "I'll gladly accept them anyway... Thank you, [name_genie_tonks]." ("base", "wink", "base", "mid") ton "" ("base", "base", "base", "mid") @@ -66,14 +66,14 @@ label give_ton_gift(gift_item): elif gift_item == krum_poster_ITEM: ton "That's that Krum boy, isn't it?" ("open", "narrow", "base", "down") - call give_gift("You give the poster to Tonks...", gift_item) + call give_gift(_("You give the poster to Tonks..."), gift_item) ton "Nice figure... Yes, this would certainly set a good mood in my classroom... Or my office." ("base", "narrow", "base", "down") ton "Thank you, [name_genie_tonks]." ("base", "base", "base", "mid") call ton_friendship(1) elif gift_item == sexy_lingerie_ITEM: ton "I see you're a man with a sense of style." ("open", "narrow", "base", "down") - call give_gift("You give the sexy lingerie to Tonks...", gift_item) + call give_gift(_("You give the sexy lingerie to Tonks..."), gift_item) ton "If it were up to me, then a pair of these would be an obligatory part of the female school uniform..." ("horny", "wink", "base", "mid") ton "" ("base", "base", "base", "mid") call ton_friendship(1) @@ -81,13 +81,13 @@ label give_ton_gift(gift_item): elif gift_item == sexy_stockings_ITEM : ton "Nice... I have a pair just like these." ("open", "narrow", "base", "down") ton "Although another pair without holes in them won't hurt..." ("horny", "wink", "base", "mid") - call give_gift("You give the sexy stockings to Tonks...", gift_item) + call give_gift(_("You give the sexy stockings to Tonks..."), gift_item) ton "" ("base", "base", "base", "mid") call ton_friendship(1) elif gift_item == pink_condoms_ITEM: ton "Some condoms?" ("open", "narrow", "base", "down") - call give_gift("You give some condoms to Tonks...", gift_item) + call give_gift(_("You give some condoms to Tonks..."), gift_item) ton "Safe sex is important..." ("horny", "wink", "base", "mid") ton "*Hmm*... Now that I think about it, I don't remember taking sex ed when I was in school..." ("annoyed", "base", "base", "mid") call ton_friendship(1) @@ -96,20 +96,20 @@ label give_ton_gift(gift_item): ton "A vibra--ting back massager?" ("open", "narrow", "base", "down") ton "*Mmm*... Mine seemingly went missing from my desk..." ("annoyed", "narrow", "base", "mid") ton "It's a bit small, but this should do until it turns up again." ("horny", "wink", "base", "mid") - call give_gift("You give the vibrator to Tonks...", gift_item) + call give_gift(_("You give the vibrator to Tonks..."), gift_item) ton "Thank you, [name_genie_tonks]." ("base", "base", "base", "mid") call ton_friendship(1) elif gift_item == anal_lube_ITEM: ton "Now that's a big jar of Anal lube you have there." ("open", "narrow", "base", "down") - call give_gift("You give the jar of lube to Tonks...", gift_item) + call give_gift(_("You give the jar of lube to Tonks..."), gift_item) ton "Looks like this might be enough to cover the entire body..." ("soft", "narrow", "base", "mid") ton "Thank you, [name_genie_tonks]." ("base", "base", "base", "mid") call ton_friendship(1) elif gift_item == ballgag_and_cuffs_ITEM: ton "Ball gag and cuffs?" ("open", "narrow", "base", "down") - call give_gift("You give the ball gag and cuffs to Tonks...", gift_item) + call give_gift(_("You give the ball gag and cuffs to Tonks..."), gift_item) ton "These are pretty cute. Should come in handy during my.... private lessons." ("horny", "wink", "base", "mid") ton "Thank you, [name_genie_tonks]." ("base", "base", "base", "mid") call ton_friendship(1) @@ -118,13 +118,13 @@ label give_ton_gift(gift_item): ton "Some anal plugs?" ("open", "narrow", "base", "down") ton "Wow... This is what they use these days?" ("soft", "narrow", "base", "down") ton "Very colourful..." ("base", "narrow", "base", "down") - call give_gift("You give the assortment of anal plugs to Tonks...", gift_item) + call give_gift(_("You give the assortment of anal plugs to Tonks..."), gift_item) ton "Thank you, [name_genie_tonks]." ("horny", "base", "base", "mid") call ton_friendship(1) elif gift_item == testral_strapon_ITEM: ton "Is that a strap-on?" ("open", "narrow", "base", "down") - call give_gift("You give the thestral strap-on to Tonks...", gift_item) + call give_gift(_("You give the thestral strap-on to Tonks..."), gift_item) ton "This will be a perfect addition to my collection..." ("horny", "base", "angry", "mid") ton "Thank you, [name_genie_tonks]." ("base", "happyCl", "base", "mid") ton "" ("base", "base", "base", "mid") @@ -132,7 +132,7 @@ label give_ton_gift(gift_item): elif gift_item == broom_2000_ITEM: ton "I don't remember the brooms looking like this when I took flying lessons..." ("open", "narrow", "base", "down") - call give_gift("You give the broom to Tonks...", gift_item) + call give_gift(_("You give the broom to Tonks..."), gift_item) ton "Seems like a good way to stay put on the broom though... Unless you lose focus." ("horny", "base", "base", "mid") ton "Thank you, [name_genie_tonks]." ("base", "narrow", "base", "mid") ton "" ("base", "base", "base", "mid") @@ -141,14 +141,14 @@ label give_ton_gift(gift_item): elif gift_item == sexdoll_ITEM: ton "A sex doll?" ("open", "narrow", "base", "down") ton "Not too useful for me, but I might put it in one of our secret gift exchanges." ("horny", "narrow", "base", "R") - call give_gift("You give the sex doll to Tonks...", gift_item) + call give_gift(_("You give the sex doll to Tonks..."), gift_item) ton "They'll gossip for weeks, wondering who it's from." ("grin", "base", "base", "mid") call ton_friendship(1) elif gift_item == anal_beads_ITEM: ton "Anal beads?" ("open", "narrow", "base", "down") ton "It's a bit short, but I'll take it..." ("horny", "narrow", "base", "down") - call give_gift("You give the anal beads to Tonks...", gift_item) + call give_gift(_("You give the anal beads to Tonks..."), gift_item) ton "Thank you, [name_genie_tonks]..." ("base", "base", "base", "mid") call ton_friendship(1)