diff options
author | Alige <gauvain.dauchy@free.fr> | 2016-07-17 20:29:33 +0200 |
---|---|---|
committer | GitLab <gitlab@gitlab.com> | 2016-07-19 16:41:58 +0000 |
commit | 5a4bb28f745e8d0a8e11cf8be6e3b1d76c772c4a (patch) | |
tree | 65c14de68d1af78540d8647970a2c1751e314d0d /npc/functions | |
parent | 2ded73e06db71670718ebad2ed0f09dade7f5f3c (diff) | |
download | serverdata-5a4bb28f745e8d0a8e11cf8be6e3b1d76c772c4a.tar.gz serverdata-5a4bb28f745e8d0a8e11cf8be6e3b1d76c772c4a.tar.bz2 serverdata-5a4bb28f745e8d0a8e11cf8be6e3b1d76c772c4a.tar.xz serverdata-5a4bb28f745e8d0a8e11cf8be6e3b1d76c772c4a.zip |
Continued fixing typos and rewording sentences, after reading the translations.
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/fishing.txt | 2 | ||||
-rw-r--r-- | npc/functions/marriage.txt | 20 |
2 files changed, 11 insertions, 11 deletions
diff --git a/npc/functions/fishing.txt b/npc/functions/fishing.txt index 93a1d2c7..e59918b8 100644 --- a/npc/functions/fishing.txt +++ b/npc/functions/fishing.txt @@ -51,7 +51,7 @@ L_ChooseBait: .@bait_names$ = .@bait_names$ + ", " + getitemlink(.@bait_ids[.@i]); narrator l("You don't have any food suitable for bait."), - l("You need one of these: ") + .@bait_names$; + l("You need at least one of these: ") + .@bait_names$; return -2; } diff --git a/npc/functions/marriage.txt b/npc/functions/marriage.txt index 186abaf6..d9e48bf5 100644 --- a/npc/functions/marriage.txt +++ b/npc/functions/marriage.txt @@ -172,8 +172,8 @@ function script domarriage { .@partner$ = getarg(0); if (marriage(.@partner$)) { - speech l("You was married to @@!", .@partner$); - npctalk l("@@ and @@ just married!", .@name$, .@partner$); + speech l("You got married to @@!", .@partner$); + npctalk l("@@ and @@ just got married!", .@name$, .@partner$); } else { @@ -204,19 +204,19 @@ function script marriagemarry { } else { - speech l("You already registered. Wait for your partner."); + speech l("You already registered. Waiting for your partner..."); } } else { - speech l("Sorry I busy with other registrations"), - l("Come after some time."); + speech l("Sorry, I'm busy with other registrations."), + l("Come after a little while."); } close; } - speech l("What a can do for you?"); - switch (select(l("I want register for marriage"), + speech l("What can I do for you?"); + switch (select(l("I want to register for marriage."), l("Nothing"))) { case 1: @@ -230,8 +230,8 @@ function script marriagemarry { // divorce main code function script marriagedivorce { - speech l("What a can do for you?"); - switch (select(l("I want divorce"), + speech l("What can I do for you?"); + switch (select(l("I want to divorce."), l("Nothing"))) { case 1: @@ -240,7 +240,7 @@ function script marriagedivorce { { if (divorce()) { - speech l("Now you divorced!"), + speech l("You are now divorced!"), l("Good look."); npctalk l("@@ divorced!", strcharinfo(0)); } |