Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit f52a774

Browse files
committed
Fix quotes
1 parent 57ca9dc commit f52a774

File tree

4 files changed

+28
-28
lines changed

4 files changed

+28
-28
lines changed

game/scripts/player_stats.rpy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ init python:
5858
DESK: RoomItem('Old Desk', 'desk', '', 0, DESK, 1),
5959
CHAIR: RoomItem('Kitchen Chair', 'chair_wooden', '', 0, CHAIR, 1),
6060
ROUTER: RoomItem('Prepaid Hotspot', 'hotspot', '', 0, ROUTER, 1),
61-
PC: RoomItem("Grandmas Desktop", 'pc_old', '', 0, PC, 1)
61+
PC: RoomItem("Grandma's Desktop", 'pc_old', '', 0, PC, 1)
6262
}
6363

6464
self.room_display_tagless = set()

game/scripts/quiz_questions_from_csv.rpy

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2761,7 +2761,7 @@ init python:
27612761
question=_("Which one of these options is layer 1 in the Open Systems Interconnection (OSI) model?"),
27622762
true=_("The physical layer"),
27632763
false=[_("The network layer"), _("The transport Layer"), _("The application layer")],
2764-
explanation=_("Layer 1 is the physical layer. Theres a lot of technology in Layer 1 - everything from physical network devices, cabling, to how the cables hook up to the devices."),
2764+
explanation=_("Layer 1 is the physical layer. There's a lot of technology in Layer 1 - everything from physical network devices, cabling, to how the cables hook up to the devices."),
27652765
learn_more_url="https://www.freecodecamp.org/news/osi-model-networking-layers-explained-in-plain-english/",
27662766
difficulty=3,
27672767
),
@@ -3553,7 +3553,7 @@ init python:
35533553
question=_("Which Unix command is used to allow you start typing in the VIM editor?"),
35543554
true=_("i"),
35553555
false=[_("esc"), _(":q!"), _(":wq")],
3556-
explanation=_("The i command( for insert), immediately switches vim to insert mode. Once you are in insert mode, you can insert characters just like a regular text editor."),
3556+
explanation=_("The i command( for 'insert'), immediately switches vim to insert mode. Once you are in insert mode, you can insert characters just like a regular text editor."),
35573557
learn_more_url="https://www.freecodecamp.org/news/vim-editor-modes-explained/",
35583558
difficulty=2,
35593559
),
@@ -3697,7 +3697,7 @@ init python:
36973697
question=_("What does GNU stand for?"),
36983698
true=_("GNU's not UNIX"),
36993699
false=[_("GeNeral Unix"), _("Great New Unix"), _("Greatly Needed Unix")],
3700-
explanation=_("GNU is a recursive acronym for ‘GNU's not UNIX."),
3700+
explanation=_("GNU is a recursive acronym for ‘GNU's not UNIX'."),
37013701
learn_more_url="https://forum.freecodecamp.org/t/the-origins-of-linux-and-the-free-software-movement-a-brief-history/19527",
37023702
difficulty=2,
37033703
),
@@ -3785,7 +3785,7 @@ init python:
37853785
question=_("What is the name of the penguin mascot of Linux?"),
37863786
true=_("Tux"),
37873787
false=[_("Tail"), _("Ping"), _("Flux")],
3788-
explanation=_("Linuxs mascot is a penguin named “Tux”."),
3788+
explanation=_("Linux's mascot is a penguin named “Tux”."),
37893789
learn_more_url="https://www.freecodecamp.org/news/linux-is-25-yay-lets-celebrate-with-25-rad-facts-about-linux-c8d8ac30076d/",
37903790
difficulty=1,
37913791
),
@@ -4013,7 +4013,7 @@ init python:
40134013
question=_("In Python, strings are..."),
40144014
true=_("Immutable"),
40154015
false=[_("Mutable"), _("Maintainable"), _("Unstoppable")],
4016-
explanation=_("Strings are immutable, so we cant update or remove their characters after they have been defined in the program. "),
4016+
explanation=_("Strings are immutable, so we can't update or remove their characters after they have been defined in the program. "),
40174017
learn_more_url="https://www.freecodecamp.org/news/python-code-examples-sample-script-coding-tutorial-for-beginners/#-data-types-and-built-in-data-structures-in-python",
40184018
difficulty=2,
40194019
),

game/scripts/shop.rpy

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ init python:
3535

3636
home_shop_items = food_items + [
3737
RoomItem('Refurbished Desk', 'desk_nice',
38-
'The thrift store nearby said this was a steal. The legs seem to have been gnawed on by someones cat, but that just means Mint has a head start.',
38+
"The thrift store nearby said this was a steal. The legs seem to have been gnawed on by someone's cat, but that just means Mint has a head start.",
3939
1000, DESK, 2),
4040

4141
RoomItem('Second-hand Office Chair', 'chair_second_hand',
42-
"Youre not sure what those stains are, but your neighbor was about to throw it out. Its still got most of its stuffing!",
42+
"You're not sure what those stains are, but your neighbor was about to throw it out. It's still got most of its stuffing!",
4343
500, CHAIR, 2),
4444
RoomItem('Comforta Office Chair', 'chair_nice',
45-
"A brand new, more upgraded version of your neighbors old chair. The seat is firm and good for your back.",
45+
"A brand new, more upgraded version of your neighbor's old chair. The seat is firm and good for your back.",
4646
1000, CHAIR, 3),
4747
RoomItem('Executive Gamer', 'chair_fancy',
48-
'This chair is for the busy professional who means BUSINESS… Except when theyre playing the latest MMORPG. With incredible upper and lower back support, this chair takes the stress out of long hours in your IDE.',
48+
"This chair is for the busy professional who means BUSINESS… Except when they're playing the latest MMORPG. With incredible upper and lower back support, this chair takes the stress out of long hours in your IDE.",
4949
2000, CHAIR, 4),
5050

5151
RoomItem('Stock Router', 'router_simple',
@@ -59,29 +59,29 @@ init python:
5959
2000, ROUTER, 4),
6060

6161
RoomItem('Used Netbook', 'pc_used',
62-
'Your old high school is finally getting rid of its netbooks. Its almost 10 years old, but these were clearly built to last.',
62+
"Your old high school is finally getting rid of its netbooks. It's almost 10 years old, but these were clearly built to last.",
6363
1000, PC, 2),
6464
RoomItem('Basik Bild Laptop', 'pc_student',
65-
'It’s got that “new laptop” smell! Containing all of the basics any developer should need, youre basically guaranteed an increase in your productivity.',
65+
"It's got that “new laptop” smell! Containing all of the basics any developer should need, you're basically guaranteed an increase in your productivity.",
6666
3000, PC, 3),
6767
RoomItem('Custom PC Build', 'pc_custom',
68-
'Youre not sure what you need 800GB of RAM for, but you feel like you do. The rainbow LEDs create an awesome glow in your bedroom at night.',
68+
"You're not sure what you need 800GB of RAM for, but you feel like you do. The rainbow LEDs create an awesome glow in your bedroom at night.",
6969
5000, PC, 4),
7070

7171
RoomItem('Monstera Deliciosa', 'plant',
72-
'So you Shmoogled it, and there isnt really anything DELICIOUS about this plant, but it does add some life to your home office.',
72+
"So you Shmoogled it, and there isn't really anything DELICIOUS about this plant, but it does add some life to your home office.",
7373
300),
7474
RoomItem('Poster 1', 'poster1',
75-
'Youre not sure if thats what his name is, but its what Mom has been calling him since you brought him home. This poster gives your room a jazzy feeling.',
75+
"You're not sure if that's what his name is, but it's what Mom has been calling him since you brought him home. This poster gives your room a jazzy feeling.",
7676
200),
7777
RoomItem('Poster 2', 'poster2',
78-
'Youve always wanted to go to the rainforest. This poster gives your room an adventurous feeling.',
78+
"You've always wanted to go to the rainforest. This poster gives your room an adventurous feeling.",
7979
200),
8080
RoomItem('Poster 3', 'poster3',
81-
"Youve been wanting to take a vacation for AGES. Maybe with this in your room, youll feel more motivated.",
81+
"You've been wanting to take a vacation for AGES. Maybe with this in your room, you'll feel more motivated.",
8282
200),
8383
RoomItem('Cat lamp', 'cat_lamp',
84-
'The glow from this lamp is as warm as Mints fur.',
84+
"The glow from this lamp is as warm as Mint's fur.",
8585
400),
8686
RoomItem('Cat bed', 'cat_bed',
8787
'Mint always sleeps on the floor next to your feet while you work. Why not keep a cat bed there instead?',

game/tl/english/scripts/quiz_questions_from_csv.rpy

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7215,8 +7215,8 @@ translate english strings:
72157215
new "The application layer"
72167216

72177217
# game/scripts/quiz_questions_from_csv.rpy:2334
7218-
old "Layer 1 is the physical layer. Theres a lot of technology in Layer 1 - everything from physical network devices, cabling, to how the cables hook up to the devices."
7219-
new "Layer 1 is the physical layer. Theres a lot of technology in Layer 1 - everything from physical network devices, cabling, to how the cables hook up to the devices."
7218+
old "Layer 1 is the physical layer. There's a lot of technology in Layer 1 - everything from physical network devices, cabling, to how the cables hook up to the devices."
7219+
new "Layer 1 is the physical layer. There's a lot of technology in Layer 1 - everything from physical network devices, cabling, to how the cables hook up to the devices."
72207220

72217221
# game/scripts/quiz_questions_from_csv.rpy:2334
72227222
old "Which layer of the Open Systems Interconnection (OSI) model is responsible for error detection?"
@@ -9071,8 +9071,8 @@ translate english strings:
90719071
new "esc"
90729072

90739073
# game/scripts/quiz_questions_from_csv.rpy:3342
9074-
old "The i command( for insert), immediately switches vim to insert mode. Once you are in insert mode, you can insert characters just like a regular text editor."
9075-
new "The i command( for insert), immediately switches vim to insert mode. Once you are in insert mode, you can insert characters just like a regular text editor."
9074+
old "The i command( for 'insert'), immediately switches vim to insert mode. Once you are in insert mode, you can insert characters just like a regular text editor."
9075+
new "The i command( for 'insert'), immediately switches vim to insert mode. Once you are in insert mode, you can insert characters just like a regular text editor."
90769076

90779077
# game/scripts/quiz_questions_from_csv.rpy:3342
90789078
old "Which Unix command is used to move the cursor one character to the left in the VIM editor?"
@@ -9363,8 +9363,8 @@ translate english strings:
93639363
new "Greatly Needed Unix"
93649364

93659365
# game/scripts/quiz_questions_from_csv.rpy:3342
9366-
old "GNU is a recursive acronym for ‘GNU's not UNIX."
9367-
new "GNU is a recursive acronym for ‘GNU's not UNIX."
9366+
old "GNU is a recursive acronym for ‘GNU's not UNIX'."
9367+
new "GNU is a recursive acronym for ‘GNU's not UNIX'."
93689368

93699369
# game/scripts/quiz_questions_from_csv.rpy:3342
93709370
old "Which Linux command is used to remove all previous commands and output from the terminal?"
@@ -9559,8 +9559,8 @@ translate english strings:
95599559
new "Flux"
95609560

95619561
# game/scripts/quiz_questions_from_csv.rpy:3342
9562-
old "Linuxs mascot is a penguin named “Tux”."
9563-
new "Linuxs mascot is a penguin named “Tux”."
9562+
old "Linux's mascot is a penguin named “Tux”."
9563+
new "Linux's mascot is a penguin named “Tux”."
95649564

95659565
# game/scripts/quiz_questions_from_csv.rpy:3342
95669566
old "In what year was the Linux Operating System created?"
@@ -10083,8 +10083,8 @@ translate english strings:
1008310083
new "Unstoppable"
1008410084

1008510085
# game/scripts/quiz_questions_from_csv.rpy:3826
10086-
old "Strings are immutable, so we cant update or remove their characters after they have been defined in the program. "
10087-
new "Strings are immutable, so we cant update or remove their characters after they have been defined in the program. "
10086+
old "Strings are immutable, so we can't update or remove their characters after they have been defined in the program. "
10087+
new "Strings are immutable, so we can't update or remove their characters after they have been defined in the program. "
1008810088

1008910089
# game/scripts/quiz_questions_from_csv.rpy:3826
1009010090
old "What built-in data structure in Python can store key-value pairs? "

0 commit comments

Comments
 (0)