diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/commands/language.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/commands/language.txt b/npc/commands/language.txt index 24cc07feb..0a2927d3f 100644 --- a/npc/commands/language.txt +++ b/npc/commands/language.txt @@ -40,12 +40,12 @@ OnTranslate: dispbottom l("Example: @translate Nard"); dispbottom l("Example: @translate Elmo"); dispbottom l("Example: @translate npc/002-1/arpan"); - dispbottom l("PS. Doesn't always work. You need an account at %s", "@@https://www.transifex.com/akaras|Transifex@@ and to be at ManaPlus Team."); + dispbottom l("PS. Doesn't always work. You need an account at %s and to be at ManaPlus Team.", "@@https://www.transifex.com/akaras|Transifex@@"); end; } // Add .txt extension of needed - if (!compare(.@request$, ".txt") - .@request$ += ".txt" + if (!compare(.@request$, ".txt")) + .@request$ += ".txt"; // Fix stuff for URL format .@request$ = replacestr(.@request$, "/", "%2F"); .@request$ = strtolower(.@request$); |