diff options
author | Haru <haru@dotalux.com> | 2016-05-17 15:17:00 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-06-25 17:29:51 +0200 |
commit | e93cd0118cc9147741961aae2e8d6eb08c5fbad9 (patch) | |
tree | d236ec49197df5e4afdd3a5c172a27413cab0c4a /npc/jobs/2-2 | |
parent | ec2bd3849cc74373fed43ebf5ca29e8c67e81af5 (diff) | |
download | hercules-e93cd0118cc9147741961aae2e8d6eb08c5fbad9.tar.gz hercules-e93cd0118cc9147741961aae2e8d6eb08c5fbad9.tar.bz2 hercules-e93cd0118cc9147741961aae2e8d6eb08c5fbad9.tar.xz hercules-e93cd0118cc9147741961aae2e8d6eb08c5fbad9.zip |
Replaced _() with _$() in scripts, where appropriate
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/jobs/2-2')
-rw-r--r-- | npc/jobs/2-2/alchemist.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/npc/jobs/2-2/alchemist.txt b/npc/jobs/2-2/alchemist.txt index ab7833986..c211c6b60 100644 --- a/npc/jobs/2-2/alchemist.txt +++ b/npc/jobs/2-2/alchemist.txt @@ -1225,9 +1225,9 @@ alde_alche,13,15,7 script Studying Man#am 4_M_ALCHE_C,{ "I just explained to you."; .@w_point = 0; next; - switch (select(sprintf(_("Prepare the %s."), getitemname(Medicine_Bowl)), - sprintf(_("Put the %s on your head."), getitemname(Medicine_Bowl)), - sprintf(_("Kick the %s."), getitemname(Medicine_Bowl)))) { + switch (select(sprintf(_$("Prepare the %s."), getitemname(Medicine_Bowl)), + sprintf(_$("Put the %s on your head."), getitemname(Medicine_Bowl)), + sprintf(_$("Kick the %s."), getitemname(Medicine_Bowl)))) { case 1: break; case 2: @@ -1243,9 +1243,9 @@ alde_alche,13,15,7 script Studying Man#am 4_M_ALCHE_C,{ next; break; } - switch (select(sprintf(_("Put some dirt in the %s."), getitemname(Medicine_Bowl)), - sprintf(_("Put some Herbs in the %s."), getitemname(Medicine_Bowl)), - sprintf(_("Put a Harp in the %s."), getitemname(Medicine_Bowl)))) { + switch (select(sprintf(_$("Put some dirt in the %s."), getitemname(Medicine_Bowl)), + sprintf(_$("Put some Herbs in the %s."), getitemname(Medicine_Bowl)), + sprintf(_$("Put a Harp in the %s."), getitemname(Medicine_Bowl)))) { case 1: ++.@w_point; mes "[Darwin]"; @@ -1266,7 +1266,7 @@ alde_alche,13,15,7 script Studying Man#am 4_M_ALCHE_C,{ break; } switch (select("Crush the Herbs.", - sprintf(_("Crush the %s."), getitemname(Medicine_Bowl)), + sprintf(_$("Crush the %s."), getitemname(Medicine_Bowl)), "Crush Darwin's foot.")) { case 1: break; @@ -1334,7 +1334,7 @@ alde_alche,13,15,7 script Studying Man#am 4_M_ALCHE_C,{ } switch (select("Put noodles in and fry it.", "Pour it in an empty bottle.", - sprintf(_("Hold the %s and drink it."), getitemname(Medicine_Bowl)))) { + sprintf(_$("Hold the %s and drink it."), getitemname(Medicine_Bowl)))) { case 1: ++.@w_point; mes "[Darwin]"; |