From 9ef72eaa168ca047f91f1dce2d98ef2c243b31c2 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Tue, 27 Jan 2009 15:10:02 -0700 Subject: Removed the fairly useless buttonbox class, as well as removing the recorder's dependence upon it. This class should get a bit more work done to it to simplify it further, but right now, it preserves all of the same functionality. Signed-off-by: Ira Rice --- aethyra.cbp | 6 +-- po/POTFILES.in | 1 + src/Makefile.am | 6 +-- src/gui/buttonbox.cpp | 43 ------------------- src/gui/buttonbox.h | 69 ------------------------------ src/gui/chat.cpp | 6 +-- src/gui/recorder.cpp | 116 ++++++++++++++++++++++++++++++++++++++++++++++++++ src/gui/recorder.h | 88 ++++++++++++++++++++++++++++++++++++++ src/recorder.cpp | 114 ------------------------------------------------- src/recorder.h | 48 --------------------- 10 files changed, 212 insertions(+), 285 deletions(-) delete mode 100644 src/gui/buttonbox.cpp delete mode 100644 src/gui/buttonbox.h create mode 100644 src/gui/recorder.cpp create mode 100644 src/gui/recorder.h delete mode 100644 src/recorder.cpp delete mode 100644 src/recorder.h diff --git a/aethyra.cbp b/aethyra.cbp index ebda9029..2ee2501b 100644 --- a/aethyra.cbp +++ b/aethyra.cbp @@ -119,8 +119,6 @@ - - @@ -206,6 +204,8 @@ + + @@ -358,8 +358,6 @@ - - diff --git a/po/POTFILES.in b/po/POTFILES.in index f338e665..9df309d3 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -24,6 +24,7 @@ src/gui/npcstringdialog.cpp src/gui/npc_text.cpp src/gui/ok_dialog.cpp src/gui/popupmenu.cpp +src/gui/recorder.h src/gui/register.cpp src/gui/sell.cpp src/gui/setup_audio.cpp diff --git a/src/Makefile.am b/src/Makefile.am index 8f76b06a..aebfdc41 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -15,8 +15,6 @@ aethyra_SOURCES = gui/widgets/dropdown.cpp \ gui/browserbox.h \ gui/button.cpp \ gui/button.h \ - gui/buttonbox.cpp \ - gui/buttonbox.h \ gui/buy.cpp \ gui/buy.h \ gui/buysell.cpp \ @@ -102,6 +100,8 @@ aethyra_SOURCES = gui/widgets/dropdown.cpp \ gui/progressbar.h \ gui/radiobutton.cpp \ gui/radiobutton.h \ + gui/recorder.cpp \ + gui/recorder.h \ gui/register.cpp \ gui/register.h \ gui/scrollarea.cpp \ @@ -326,8 +326,6 @@ aethyra_SOURCES = gui/widgets/dropdown.cpp \ position.cpp \ position.h \ properties.h \ - recorder.cpp \ - recorder.h \ serverinfo.h \ shopitem.cpp \ shopitem.h \ diff --git a/src/gui/buttonbox.cpp b/src/gui/buttonbox.cpp deleted file mode 100644 index d29f3c58..00000000 --- a/src/gui/buttonbox.cpp +++ /dev/null @@ -1,43 +0,0 @@ -/* - * The Mana World - * Copyright 2004 The Mana World Development Team - * - * This file is part of The Mana World. - * - * The Mana World is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * any later version. - * - * The Mana World is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with The Mana World; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#include "button.h" -#include "buttonbox.h" - -ButtonBox::ButtonBox(const std::string &title, const std::string &buttonTxt, - ButtonBoxListener *listener) : - Window(title), - mListener(listener) -{ - Button *button = new Button(buttonTxt, "activate", this); - setContentSize(button->getWidth() + 10, - button->getHeight() + 10); - button->setPosition(5, 5); - add(button); -} - -void ButtonBox::action(const gcn::ActionEvent &event) -{ - if (event.getId() == "activate") - { - mListener->buttonBoxRespond(); - } -} diff --git a/src/gui/buttonbox.h b/src/gui/buttonbox.h deleted file mode 100644 index 6d0e46b6..00000000 --- a/src/gui/buttonbox.h +++ /dev/null @@ -1,69 +0,0 @@ -/* - * The Mana World - * Copyright 2004 The Mana World Development Team - * - * This file is part of The Mana World. - * - * The Mana World is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * any later version. - * - * The Mana World is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with The Mana World; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#ifndef BUTTONBOX_H -#define BUTTONBOX_H - -#include - -#include - -#include "window.h" - -#include "../guichanfwd.h" - -class ButtonBoxListener -{ - public: - - /* - * function that ButtonBox calls when the button has been pressed - */ - virtual void buttonBoxRespond() = 0; -}; - -class ButtonBox : public Window, public gcn::ActionListener -{ - public: - - /* - * Constructor - * - * @param title is the text that appears at the top of the box - * @param buttonTxt is the text that appears on the button - * @param listener points to the class that should respond to the - * button press - */ - ButtonBox(const std::string &title, const std::string &buttonTxt, - ButtonBoxListener *listener); - - /* - * called when the button is pressed - * - * @param event is the event that is generated - */ - void action(const gcn::ActionEvent &event); - - private: - - ButtonBoxListener *mListener; -}; -#endif diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 1a3cb2a4..068fad08 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -28,6 +28,7 @@ #include "chat.h" #include "chatinput.h" #include "itemlinkhandler.h" +#include "recorder.h" #include "scrollarea.h" #include "sdlinput.h" #include "windowcontainer.h" @@ -40,7 +41,6 @@ #include "../game.h" #include "../localplayer.h" #include "../party.h" -#include "../recorder.h" #include "../net/messageout.h" #include "../net/protocol.h" @@ -477,7 +477,7 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) else if (command == "whisper" || command == "msg" || command == "w") whisper(nick, msg); else if (command == "record") - mRecorder->respond(msg); + mRecorder->changeStatus(msg); else if (command == "toggle") { if (msg == "") @@ -850,7 +850,7 @@ void ChatWindow::help(const std::string & msg1, const std::string & msg2) } else if (msg1 == "record") { - mRecorder->help(msg2); + mRecorder->help2(); } else if (msg1 == "toggle") { diff --git a/src/gui/recorder.cpp b/src/gui/recorder.cpp new file mode 100644 index 00000000..da67875b --- /dev/null +++ b/src/gui/recorder.cpp @@ -0,0 +1,116 @@ +/* + * The Mana World + * Copyright 2004 The Mana World Development Team + * + * This file is part of The Mana World. + * + * The Mana World is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * The Mana World is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with The Mana World; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include + +#include "button.h" +#include "chat.h" +#include "recorder.h" + +#include "../utils/trim.h" + +Recorder::Recorder(ChatWindow *chat, const std::string &title, + const std::string &buttonTxt) : + Window(title) +{ + mChat = chat; + Button *button = new Button(buttonTxt, "activate", this); + setContentSize(button->getWidth() + 10, button->getHeight() + 10); + button->setPosition(5, 5); + add(button); +} + +void Recorder::record(const std::string &msg) +{ + if (mStream.is_open()) + { + mStream << msg << std::endl; + } +} + +void Recorder::changeStatus(const std::string &msg) +{ + std::string msgCopy = msg; + trim(msgCopy); + + if (msgCopy == "") + { + if (mStream.is_open()) + { + mStream.close(); + setVisible(false); + + /* + * Message should go after mStream is closed so that it isn't + * recorded. + */ + mChat->chatLog("Finishing recording.", BY_SERVER); + } + else + { + mChat->chatLog("Not currently recording.", BY_SERVER); + } + } + else if (mStream.is_open()) + { + mChat->chatLog("Already recording.", BY_SERVER); + } + else + { + /* + * Message should go before mStream is opened so that it isn't + * recorded. + */ + mChat->chatLog("Starting to record...", BY_SERVER); + std::string file = std::string(PHYSFS_getUserDir()) + "/.aethyra/" + msgCopy; + + mStream.open(file.c_str(), std::ios_base::trunc); + + if (mStream.is_open()) + setVisible(true); + else + mChat->chatLog("Failed to start recording.", BY_SERVER); + } +} + +void Recorder::help() const +{ + mChat->chatLog("/record : Start recording the chat.", BY_SERVER); +} + +void Recorder::help2() const +{ + mChat->chatLog("Command: /record ", BY_SERVER); + mChat->chatLog("This command starts recording the chat log to the file " + ".", BY_SERVER); + mChat->chatLog("Command: /record", BY_SERVER); + mChat->chatLog("This command finishes a recording session.", BY_SERVER); +} + +void Recorder::action(const gcn::ActionEvent &event) +{ + if (event.getId() == "activate") + changeStatus(""); +} + +Recorder::~Recorder() +{ +} diff --git a/src/gui/recorder.h b/src/gui/recorder.h new file mode 100644 index 00000000..6f917c25 --- /dev/null +++ b/src/gui/recorder.h @@ -0,0 +1,88 @@ +/* + * Aethyra + * Copyright (C) 2008 Aethyra Development Team + * + * This file is part of Aethyra. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#ifndef RECORD_H +#define RECORD_H + +#include +#include + +#include + +#include "window.h" + +#include "../guichanfwd.h" + +#include "../utils/gettext.h" + +class ChatWindow; + +class Recorder : public Window, public gcn::ActionListener +{ + public: + Recorder(ChatWindow *chat, const std::string &title = _("Recording..."), + const std::string &buttonTxt = _("Stop recording")); + + virtual ~Recorder(); + + /* + * Outputs the message to the recorder file + * + * @param msg the line to write to the recorded file. + */ + void record(const std::string &msg); + + /* + * Outputs the message to the recorder file + * + * @param msg the line to write to the recorded file. + */ + void changeStatus(const std::string &msg); + + /* + * Displays a help message on how to use this class in the chat window. + */ + void help() const; + + /* + * Displays an extended help message on how to use this class in the + * chat window. + */ + void help2() const; + + /* + * Whether or not the recorder is in use. + */ + bool isRecording() {return (bool) mStream.is_open();} + + /* + * called when the button is pressed + * + * @param event is the event that is generated + */ + void action(const gcn::ActionEvent &event); + + private: + ChatWindow *mChat; + + std::ofstream mStream; +}; +#endif diff --git a/src/recorder.cpp b/src/recorder.cpp deleted file mode 100644 index 57f030b2..00000000 --- a/src/recorder.cpp +++ /dev/null @@ -1,114 +0,0 @@ -/* - * The Mana World - * Copyright 2004 The Mana World Development Team - * - * This file is part of The Mana World. - * - * The Mana World is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * any later version. - * - * The Mana World is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with The Mana World; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#include - -#include "recorder.h" - -#include "gui/buttonbox.h" -#include "gui/chat.h" - -#include "utils/trim.h" - -Recorder::Recorder(ChatWindow *chat) : mChat(chat) -{ - mButtonBox = new ButtonBox("Recording...", "Stop recording", this); - mButtonBox->setY(20); -} - -void Recorder::record(const std::string &msg) -{ - if (mStream.is_open()) - { - mStream << msg << std::endl; - } -} - -void Recorder::respond(const std::string &msg) -{ - std::string msgCopy = msg; - trim(msgCopy); - if (msgCopy == "") - { - if (mStream.is_open()) - { - mStream.close(); - mButtonBox->setVisible(false); - /* - * Message should go after mStream is closed so that it isn't - * recorded. - */ - mChat->chatLog("Finishing recording.", BY_SERVER); - } - else - { - mChat->chatLog("Not currently recording.", BY_SERVER); - } - return; - } - if (mStream.is_open()) - { - mChat->chatLog("Already recording.", BY_SERVER); - } - else - { - /* - * Message should go before mStream is opened so that it isn't - * recorded. - */ - mChat->chatLog("Starting to record...", BY_SERVER); - std::string file = std::string(PHYSFS_getUserDir()) + "/.aethyra/" + msgCopy; - - mStream.open(file.c_str(), std::ios_base::trunc); - if (mStream.is_open()) - { - mButtonBox->setVisible(true); - } - else - { - mChat->chatLog("Failed to start recording.", BY_SERVER); - } - } -} - -void Recorder::help() const -{ - mChat->chatLog("/record : Start recording the chat.", BY_SERVER); -} - -void Recorder::help(const std::string &args) const -{ - mChat->chatLog("Command: /record ", BY_SERVER); - mChat->chatLog("This command starts recording the chat log to the file " - ".", BY_SERVER); - mChat->chatLog("Command: /record", BY_SERVER); - mChat->chatLog("This command finishes a recording session.", BY_SERVER); -} - -void Recorder::buttonBoxRespond() -{ - respond(""); -} - -Recorder::~Recorder() -{ - delete mButtonBox; -} diff --git a/src/recorder.h b/src/recorder.h deleted file mode 100644 index 4a220166..00000000 --- a/src/recorder.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Aethyra - * Copyright (C) 2008 Aethyra Development Team - * - * This file is part of Aethyra. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#ifndef RECORD_H -#define RECORD_H - -#include -#include - -#include "gui/buttonbox.h" - -class ChatWindow; - -class Recorder : public ButtonBoxListener -{ - private: - ChatWindow *mChat; - std::ofstream mStream; - ButtonBox *mButtonBox; - public: - Recorder(ChatWindow *chat); - void record(const std::string &msg); - void respond(const std::string &msg); - void help() const; - void help(const std::string &args) const; - void buttonBoxRespond(); - bool isRecording() {return (bool) mStream.is_open();} - virtual ~Recorder(); -}; -#endif -- cgit v1.2.3-60-g2f50 From 305566b407fd9d440c168650b81a6d711c1e94b8 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 28 Jan 2009 08:49:12 -0700 Subject: Added missing files to CMakeLists. Signed-off-by: Ira Rice --- src/CMakeLists.txt | 40 +++++++++++++++++++++++++++++++++------- src/Makefile.am | 4 ++-- 2 files changed, 35 insertions(+), 9 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 94cf0174..8cd062c9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -81,12 +81,20 @@ SET(SRCS gui/chatinput.h gui/checkbox.cpp gui/checkbox.h + gui/colour.cpp + gui/colour.h gui/confirm_dialog.cpp gui/confirm_dialog.h gui/connection.cpp gui/connection.h gui/debugwindow.cpp gui/debugwindow.h + gui/emotecontainer.cpp + gui/emotecontainer.h + gui/emoteshortcutcontainer.cpp + gui/emoteshortcutcontainer.h + gui/emotewindow.cpp + gui/emotewindow.h gui/equipmentwindow.cpp gui/equipmentwindow.h gui/focushandler.cpp @@ -108,9 +116,7 @@ SET(SRCS gui/itempopup.cpp gui/itempopup.h gui/itemshortcutcontainer.cpp - gui/itemshortcutcontainer.h - gui/itemshortcutwindow.cpp - gui/itemshortcutwindow.h + gui/itemshortcutcontainer.h\ gui/item_amount.cpp gui/item_amount.h gui/linkhandler.h @@ -144,6 +150,8 @@ SET(SRCS gui/progressbar.h gui/radiobutton.cpp gui/radiobutton.h + gui/recorder.cpp + gui/recorder.h gui/register.cpp gui/register.h gui/scrollarea.cpp @@ -152,10 +160,12 @@ SET(SRCS gui/sdlinput.h gui/sell.cpp gui/sell.h - gui/setup_audio.cpp - gui/setup_audio.h gui/setup.cpp gui/setup.h + gui/setup_audio.cpp + gui/setup_audio.h + gui/setup_colours.cpp + gui/setup_colours.h gui/setup_joystick.cpp gui/setup_joystick.h gui/setup_keyboard.cpp @@ -169,6 +179,10 @@ SET(SRCS gui/shop.h gui/shoplistbox.cpp gui/shoplistbox.h + gui/shortcutwindow.cpp + gui/shortcutwindow.h + gui/shortcutcontainer.cpp + gui/shortcutcontainer.h gui/skill.cpp gui/skill.h gui/slider.cpp @@ -187,6 +201,8 @@ SET(SRCS gui/textfield.h gui/trade.cpp gui/trade.h + gui/truetypefont.cpp + gui/truetypefont.h gui/updatewindow.h gui/updatewindow.cpp gui/viewport.cpp @@ -223,6 +239,8 @@ SET(SRCS net/network.h net/npchandler.cpp net/npchandler.h + net/partyhandler.cpp + net/partyhandler.h net/playerhandler.cpp net/playerhandler.h net/protocol.cpp @@ -299,6 +317,8 @@ SET(SRCS configuration.h effectmanager.cpp effectmanager.h + emoteshortcut.cpp + emoteshortcut.h engine.cpp engine.h equipment.cpp @@ -343,9 +363,13 @@ SET(SRCS openglgraphics.h particle.cpp particle.h + particlecontainer.cpp + particlecontainer.h particleemitter.cpp particleemitter.h particleemitterprop.h + party.cpp + party.h player.cpp player.h player_relations.cpp @@ -353,8 +377,6 @@ SET(SRCS position.cpp position.h properties.h - sdltruetypefont.cpp - sdltruetypefont.hpp serverinfo.h shopitem.cpp shopitem.h @@ -363,6 +385,10 @@ SET(SRCS sound.cpp sound.h sprite.h + text.cpp + text.h + textmanager.cpp + textmanager.h textparticle.cpp textparticle.h tileset.h diff --git a/src/Makefile.am b/src/Makefile.am index aebfdc41..3aeecc02 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -88,8 +88,6 @@ aethyra_SOURCES = gui/widgets/dropdown.cpp \ gui/npc_text.h \ gui/ok_dialog.cpp \ gui/ok_dialog.h \ - gui/truetypefont.cpp \ - gui/truetypefont.h \ gui/passwordfield.cpp \ gui/passwordfield.h \ gui/playerbox.cpp \ @@ -151,6 +149,8 @@ aethyra_SOURCES = gui/widgets/dropdown.cpp \ gui/textfield.h \ gui/trade.cpp \ gui/trade.h \ + gui/truetypefont.cpp \ + gui/truetypefont.h \ gui/updatewindow.h \ gui/updatewindow.cpp \ gui/viewport.cpp \ -- cgit v1.2.3-60-g2f50 From ed188b6c79d141813441aec59bae7c8a9d251e6d Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 28 Jan 2009 09:35:44 -0700 Subject: Updated po files (not really needed yet, but the da file needed fixing) Signed-off-by: Ira Rice --- po/POTFILES.in | 1 + po/ar.po | 349 ++++++++++++++++++++++++++++------------------------- po/ca.po | 331 +++++++++++++++++++++++++++------------------------ po/cs.po | 344 ++++++++++++++++++++++++++++------------------------- po/da.po | 369 +++++++++++++++++++++++++++++++-------------------------- po/de.po | 359 ++++++++++++++++++++++++++++++------------------------- po/en_GB.po | 349 ++++++++++++++++++++++++++++------------------------- po/eo.po | 331 +++++++++++++++++++++++++++------------------------ po/es.po | 349 ++++++++++++++++++++++++++++------------------------- po/fi.po | 349 ++++++++++++++++++++++++++++------------------------- po/fr.po | 349 ++++++++++++++++++++++++++++------------------------- po/he.po | 349 ++++++++++++++++++++++++++++------------------------- po/hr.po | 344 ++++++++++++++++++++++++++++------------------------- po/id.po | 349 ++++++++++++++++++++++++++++------------------------- po/it.po | 349 ++++++++++++++++++++++++++++------------------------- po/ja.po | 337 ++++++++++++++++++++++++++++------------------------ po/nl.po | 354 +++++++++++++++++++++++++++++------------------------- po/pl.po | 349 ++++++++++++++++++++++++++++------------------------- po/pt.po | 349 ++++++++++++++++++++++++++++------------------------- po/pt_BR.po | 361 ++++++++++++++++++++++++++++++------------------------- po/ru.po | 349 ++++++++++++++++++++++++++++------------------------- po/sk.po | 336 +++++++++++++++++++++++++++------------------------ po/sv.po | 349 ++++++++++++++++++++++++++++------------------------- po/th.po | 338 ++++++++++++++++++++++++++++------------------------ po/zh_CN.po | 361 ++++++++++++++++++++++++++++++------------------------- 25 files changed, 4519 insertions(+), 3835 deletions(-) diff --git a/po/POTFILES.in b/po/POTFILES.in index 9df309d3..051ffeaa 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -15,6 +15,7 @@ src/gui/equipmentwindow.cpp src/gui/help.cpp src/gui/inventorywindow.cpp src/gui/item_amount.cpp +src/gui/itempopup.cpp src/gui/login.cpp src/gui/menuwindow.cpp src/gui/minimap.cpp diff --git a/po/ar.po b/po/ar.po index 01d1d025..bb59b0a8 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-07-16 18:28+0000\n" "Last-Translator: صقر بن عبدالله \n" "Language-Team: Arabic \n" @@ -28,7 +28,7 @@ msgstr "شراء" msgid "Price: %d GP / Total: %d GP" msgstr "السعر: %d GP / الإجمالي: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "مغادرة" @@ -53,30 +53,30 @@ msgstr "إيقاف" msgid "Sell" msgstr "بيع" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "إلغاء" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "هل أنت متأكّد من حذف هذه الشخصيّة؟" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "إنتقاء الشخصيّة" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "الاسم: %s" @@ -86,68 +86,70 @@ msgstr "الاسم: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "المستوى: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "المستوى: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "النقود: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "السّابق" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "التّالي" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "جديد" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "حذف" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "السّابق" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "التّالي" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "موافق" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "إنشاء شخصيّة" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "الاسم:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "لون الشعر:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "قصّة الشعر:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "إنشاء" @@ -157,7 +159,7 @@ msgid "Select Server" msgstr "إنتقاء الشخصيّة" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -181,316 +183,316 @@ msgstr "" msgid "Server:" msgstr "الخادوم:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "تغيير OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -544,21 +546,27 @@ msgstr "جارِ الاتّصال..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "استخدام" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "العتاد" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "تجريد من العتاد" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -567,34 +575,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "الجردة" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "استعمال العتاد" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "إسقاط" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "تجريد من العتاد" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "استعمال العتاد" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "انتقاء كمّيّة من المواد للمتاجرة بها." @@ -603,6 +605,10 @@ msgstr "انتقاء كمّيّة من المواد للمتاجرة بها." msgid "Select amount of items to drop." msgstr "انتقاء كمّيّة من المواد لإسقاطها." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "ولوج" @@ -647,12 +653,7 @@ msgstr "اختصار" msgid "Setup" msgstr "تثبيت" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "خارطة صغيرة" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "خارطة صغيرة" @@ -714,7 +715,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@محادثة|تحدّث مع NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@إلغاء|إلغاء@@" @@ -723,30 +724,35 @@ msgstr "@@إلغاء|إلغاء@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@اقتطاف|اقتطاف %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@استخدام|استخدام العتاد@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@استخدام|استخدام العتاد@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@استخدم|استخدم@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@إسقاط|إسقاط@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@الوصف|الوصف@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "جارِ الاتّصال..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -806,12 +812,11 @@ msgstr "حجم صوت المؤثرّات" msgid "Music volume" msgstr "حجم صوت الموسيقا" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "تطبيق" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "تصفير النوافذ" @@ -1114,6 +1119,23 @@ msgstr "المستوى: %d" msgid "Money: %d GP" msgstr "النقود: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "المستوى: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1624,44 +1646,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "هل أنت متأكّد من حذف هذه الشخصيّة؟" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1991,6 +2013,13 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "خارطة صغيرة" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@الوصف|الوصف@@" + #~ msgid "Unregister" #~ msgstr "إلغاء التسجيل" diff --git a/po/ca.po b/po/ca.po index 02a59b21..2819a9a8 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-07-03 17:21+0000\n" "Last-Translator: Habari \n" "Language-Team: Catalan \n" @@ -28,7 +28,7 @@ msgstr "" msgid "Price: %d GP / Total: %d GP" msgstr "preu %d GP / total %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "sortir" @@ -52,30 +52,30 @@ msgstr "" msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "" @@ -85,68 +85,70 @@ msgstr "" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 +msgid "New" msgstr "" -#: ../src/gui/char_select.cpp:94 -msgid "Next" +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +msgid "Delete" msgstr "" -#: ../src/gui/char_select.cpp:95 -msgid "New" +#: ../src/gui/char_select.cpp:98 +msgid "Previous" msgstr "" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 -msgid "Delete" +#: ../src/gui/char_select.cpp:99 +msgid "Next" msgstr "" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "nom" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "" @@ -155,7 +157,7 @@ msgid "Select Server" msgstr "" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -179,315 +181,315 @@ msgstr "" msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -539,21 +541,27 @@ msgstr "" msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -562,32 +570,26 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:61 -msgid "Drop" -msgstr "" - -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" #: ../src/gui/item_amount.cpp:75 @@ -598,6 +600,10 @@ msgstr "" msgid "Select amount of items to drop." msgstr "" +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "" @@ -642,11 +648,7 @@ msgstr "" msgid "Setup" msgstr "" -#: ../src/gui/minimap.cpp:39 -msgid "Map" -msgstr "" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" @@ -705,7 +707,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" @@ -714,28 +716,32 @@ msgstr "" msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" +#: ../src/gui/recorder.h:41 +msgid "Recording..." +msgstr "" + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" msgstr "" #: ../src/gui/register.cpp:82 @@ -796,12 +802,11 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "" @@ -1098,6 +1103,22 @@ msgstr "" msgid "Money: %d GP" msgstr "" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +msgid "Job:" +msgstr "" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1597,43 +1618,43 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 msgid "Are you sure you want to quit?" msgstr "" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/cs.po b/po/cs.po index 343646c9..65af46ff 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-12-17 16:31+0000\n" "Last-Translator: Lubos \n" "Language-Team: Czech \n" @@ -28,7 +28,7 @@ msgstr "Nákup" msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "" @@ -52,31 +52,31 @@ msgstr "" msgid "Sell" msgstr "Prodej" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Zrušit" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "Potvrďte vymazání postavy" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Jste si jistí, že chcete vymazat tuto postavu?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 #, fuzzy msgid "Select Character" msgstr "Vytvořit postavu" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Jméno: %s" @@ -86,68 +86,70 @@ msgstr "Jméno: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Úroveň: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Úroveň: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Peníze: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Předchozí" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Další" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Nová" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Odstranit" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Předchozí" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Další" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Vytvořit postavu" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Jméno:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Barva vlasů:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Styl vlasů:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Vytvořit" @@ -157,7 +159,7 @@ msgid "Select Server" msgstr "Server:" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -181,315 +183,315 @@ msgstr "" msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -543,21 +545,27 @@ msgstr "Připojuji se..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Vybavení" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -566,34 +574,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventář" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Vybavit" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Upustit" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" -msgstr "" - -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Vybavit" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Vyberte množství zboží, se kterým budete obchodovat." @@ -602,6 +604,10 @@ msgstr "Vyberte množství zboží, se kterým budete obchodovat." msgid "Select amount of items to drop." msgstr "Vyberte množství zboží, které chcete upustit." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "" @@ -646,12 +652,7 @@ msgstr "Zkratka" msgid "Setup" msgstr "Nastavení" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "MiniMapa" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMapa" @@ -711,7 +712,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" @@ -720,28 +721,33 @@ msgstr "" msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Připojuji se..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" msgstr "" #: ../src/gui/register.cpp:82 @@ -802,12 +808,11 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "" @@ -1106,6 +1111,23 @@ msgstr "Úroveň: %d" msgid "Money: %d GP" msgstr "Peníze: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Úroveň: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1615,44 +1637,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Jste si jistí, že chcete vymazat tuto postavu?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1982,6 +2004,10 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "MiniMapa" + #~ msgid "Remember Username" #~ msgstr "Zapamatovat uživatelské jméno" diff --git a/po/da.po b/po/da.po index 0debc786..5e9fd19e 100644 --- a/po/da.po +++ b/po/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-12-28 14:45+0000\n" "Last-Translator: GonzoDark AKA IchigoBlack \n" "Language-Team: Danish \n" @@ -28,7 +28,7 @@ msgstr "Køb" msgid "Price: %d GP / Total: %d GP" msgstr "Pris: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Afslut" @@ -53,30 +53,30 @@ msgstr "Butik" msgid "Sell" msgstr "Sælg" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Fortryd" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "Bekræft sletning af karakter" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Er du sikker på at du vil slette denne karakter?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Vælg Karakter" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Navn: %s" @@ -86,68 +86,70 @@ msgstr "Navn: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Niveau: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Niveau: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Penge: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Forrige" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Næste" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Opret" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Slet" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Forrige" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Næste" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 -msgid "OK" -msgstr "OK" +msgid "Ok" +msgstr "" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "Guld: %d" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Lav Bruger" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Navn:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Hårfarve:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Frisure:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Opret" @@ -157,7 +159,7 @@ msgid "Select Server" msgstr "Vælg Server" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "OK" @@ -182,248 +184,250 @@ msgstr "Global meddelelse fra %s: " msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "Hvisker til %s: %s" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "Prøver at sende en blank gruppe besked." -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "Retur bringer focus på chatten." -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "Besked lukker chat." -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "Enter bringer nu focus på chatten." -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "Besked lukker nu chat." -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -"Mulighederne til /toggle er \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +"Mulighederne til /toggle er \"yes\", \"no\", \"true\", \"false\", \"1\", \"0" +"\"." -#: ../src/gui/chat.cpp:432 -msgid "Unknown party command... Type \"/help party\" party for more information." +#: ../src/gui/chat.cpp:516 +#, fuzzy +msgid "Unknown party command... Type \"/help\" party for more information." msgstr "Ukendt gruppe kommando... Skriv \"/help party\" for mere information." -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "Trylleformularen findes ikke!" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "Den nuværende server understøtter ikke trylleformulare" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "Til stede: " -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "Fremmøde skrives til loggen" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "Ukendt kommando" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "Handel fejlede!" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "Emote fejlede!" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "Sæt dig fejlede!" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "Chat skabelsen fejlede!" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "Kunne ikke tilslutte sig gruppen!" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "Kan ikke råbe!" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "Du er ikke nået til det rette Niveau endnu!" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "Utilstrækkelig HP!" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "Utilstrækkelig SP!" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "Du har ingen memorandaer!" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "Det kan du ikke gøre lige nu!" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "Det ser ud til at du har behov for flere Zeny... ;-)" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "Du kan ikke bruge denne færdighed med dette slags våben!" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "Du har behov for en rød krystal mere" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "Du har behov for en blå krystal mere" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "Du har for meget på dig, til at kunne gøre dette" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "Hmm? Hvad er det?" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "Warp mislykkede..." -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "Kunne ikke stjæle noget som helst..." -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "Giften havde ingen effekt..." -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "Det nuværende gruppe præfiks er " -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "Gruppens præfiks skal være et bogstav langt. " -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "Kan ikke bruge '/' som præfikset" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Ændre præfikset til " -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "--Hjælp--" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "/announce: Global meddelelse (Kun for GM)" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "/clear: Rydder dette vindue" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "/help: Viser denne hjælp" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "/msg : Alternativ form for /whisper" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "/present: Får listen af tilstedeværende brugere" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "/toggle: Bestemmer om bringer focus på chat loggen." -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "/where: Viser bane navnet" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "/w : Kort form for /whisper" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" "/whisper : Sender en privat besked til det givne brugernavn" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "/who: Viser antalet af online brugere" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "For at få mere information, skriv /help " -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "Kommando: /announce " -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "*** kun tilgængelig for en GM ***" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "Denne kommando sender beskeden til alle brugere online." -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "Kommando: /clear" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "Denne commando rydder chat loggen" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "Kommando: /help" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "Denne kommando viser en liste over alle tilgængelige kommandoer" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "Kommando: /help " -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "Denne kommando viser hjælp for " -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "Kommando: /present" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." @@ -432,11 +436,11 @@ msgstr "" "lytteradius, og sender listen til enten record loggen, hvis du optager, " "ellers er det chat loggen." -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "Kommando /toggle " -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 #, fuzzy msgid "" "This command sets whether the return key should toggle thechat log, or " @@ -445,7 +449,7 @@ msgstr "" "Denne kommando bestemmer om retur, skal bruges til at fokusere på chat " "loggen, ellerom chat om chat loggen, automatisk skal slå fra." -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." @@ -454,56 +458,56 @@ msgstr "" "af chat vindue til, eller \"0\", \"no\", \"false\" for at slå fokusering af " "chat vindue fra." -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "Kommando: /toggle" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "Denne kommando viser fokusering af chat vinduets status." -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "kommando: /where" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "Denne kommando viser det nuværende bane navn." -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "Kommando: /msg " -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "Kommando: /whisper " -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "Kommando: /w " -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "Denne kommando sender beskeden til ." -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "Hvis navnet har mellemrum i det, skal det omringes med følgende (\")." -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "Kommando: /who" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" "Denne kommando viser det antal af online brugere, der nuværende er online." -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "Ukendt kommando" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "Skriv /help for at få en liste med kommandoer" @@ -557,21 +561,27 @@ msgstr "Opretter forbindelse..." msgid "Unable to load selection.png" msgstr "Kan ikke loade valgte-billede.png" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "Emote" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Brug" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Udstyr" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Tag af" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "Hjælp" @@ -580,34 +590,29 @@ msgstr "Hjælp" msgid "Close" msgstr "Luk" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventarliste" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Tag på" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Smid" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, fuzzy, c-format -msgid "Weight: %d g / %d g" -msgstr "Vægt: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +#, fuzzy +msgid "Slots: " +msgstr " g Pladser: " -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Tag af" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Tag på" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Vælg hvor mange genstande du vil bytte." @@ -616,6 +621,10 @@ msgstr "Vælg hvor mange genstande du vil bytte." msgid "Select amount of items to drop." msgstr "Vælg hvor mange genstande du vil smide." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Log Ind" @@ -660,12 +669,7 @@ msgstr "Genvej" msgid "Setup" msgstr "Opsætning" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "MiniKort" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniKort" @@ -727,7 +731,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Snak Til NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Annuller@@" @@ -736,30 +740,35 @@ msgstr "@@cancel|Annuller@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Saml Op %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Tag af@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Tag på@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Brug@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Smid@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|Beskrivelse@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Opretter forbindelse..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -819,12 +828,11 @@ msgstr "Lydstyrke på effekter" msgid "Music volume" msgstr "Lydstyrke på musik" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Anvend" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Nulstil Vinduer" @@ -1129,6 +1137,23 @@ msgstr "Karriere: %d" msgid "Money: %d GP" msgstr "Penge: %d GP" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Karriere: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1651,44 +1676,44 @@ msgstr "NPC Database: NPC med manglende ID i npcs.xml!" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "NPCDB: Advarsel, ukendt NPC ID %d efterspurgt" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "Skærmbillede gemt under ~/" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "Gemningen af skærmbilledet fejlede!" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "Fejl: kunne ikke gemme skærmbilledet." -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "Netværk Fejl" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "Forbindelsen til serveren er tabt, programmet vil nu lukke" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "Ignorer indkomne handels anmodninger" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "Accepter indkomne handels anmodninger" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Er du sikker på at du gerne vil stoppe?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "nej" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "Advarsel: guichan indput untagelse: %s" @@ -2031,6 +2056,17 @@ msgstr "Ukendt kommando" msgid "Type /help party for a list of options." msgstr "Skriv /help for at få en liste med kommandoer" +#, fuzzy +#~ msgid "Weight: %d g / %d g" +#~ msgstr "Vægt: %d g / %d g" + +#, fuzzy +#~ msgid "Map" +#~ msgstr "MiniKort" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|Beskrivelse@@" + #, fuzzy #~ msgid "%s whispers:" #~ msgstr "Tillad hviskere" @@ -2041,9 +2077,6 @@ msgstr "Skriv /help for at få en liste med kommandoer" #~ msgid "Welcome" #~ msgstr "Velkommen" -#~ msgid " g Slots: " -#~ msgstr " g Pladser: " - #~ msgid " g Slots: " #~ msgstr " g Pladser: " diff --git a/po/de.po b/po/de.po index f231780f..816e209f 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2009-01-19 20:15+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: German\n" @@ -28,7 +28,7 @@ msgstr "Kaufen" msgid "Price: %d GP / Total: %d GP" msgstr "Preis: %d GP / Summe: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Beenden" @@ -52,30 +52,30 @@ msgstr "Geschäft" msgid "Sell" msgstr "Verkaufen" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Abbrechen" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "Bestätige Charakter-Löschung" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Bist du sicher, dass du diesen Charakter löschen möchtest?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Spielfigur auswählen" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Name : %s" @@ -85,68 +85,70 @@ msgstr "Name : %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Stufe: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Geld: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Zurück" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Weiter" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Neu" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Löschen" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Zurück" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Weiter" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "Gold: %d" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Charakter erstellen" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Name :" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Haarfarbe" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Frisur" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Erstellen" @@ -155,7 +157,7 @@ msgid "Select Server" msgstr "Server auswählen" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "Ok" @@ -179,316 +181,316 @@ msgstr "" msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "Flüsternd zu %s: %s" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "Unbekannter Befehl" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "Handel fehlgeschlagen!" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "Emote fehlgeschlagen!" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "Sitzen fehlgeschlagen!" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "Chat-Erstellung fehlgeschlagen!" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "Du kannst dies momentan nicht tun!" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "Schmalhans ist dein Küchenmeister... ;-)" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "Du kannst diese Fähigkeit nicht mit dieser Waffenart benutzen!" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "Du brauchst noch einen roten Edelstein!" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "Du brauchst noch einen blauen Edelstein!" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "Du schleppst zuviel herum um das zu machen!" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "Eha? Was ist das?" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "Warp fehlgeschlagen..." -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "Konnte nichts stehlen..." -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "Das Gift hatte keine Wirkung..." -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Ändere OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "Unbekannter Befehl." -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -544,21 +546,27 @@ msgstr "Verbinde..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Benutzen" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Ausrüstung" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Ablegen" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "Hilfe" @@ -567,33 +575,27 @@ msgstr "Hilfe" msgid "Close" msgstr "Schließen" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventar" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Ausrüsten" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Wegwerfen" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, fuzzy, c-format -msgid "Weight: %d g / %d g" -msgstr "Gewicht: %d / %d" - -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" -msgstr "Sockel benutzt: %d / %d" - -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Ablegen" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " +msgstr "" -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Ausrüsten" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " +msgstr "" #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." @@ -603,6 +605,10 @@ msgstr "Wähle aus, wieviele Gegenstände Du tauschen möchtest." msgid "Select amount of items to drop." msgstr "Wähle aus, wieviele Gegenstände Du wegwerfen möchtest." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Anmelden" @@ -647,12 +653,7 @@ msgstr "Tastenkürzel" msgid "Setup" msgstr "Einstellungen" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "Übersichtskarte" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Übersichtskarte" @@ -714,7 +715,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Mit NSC reden@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Abbrechen@@" @@ -723,29 +724,34 @@ msgstr "@@cancel|Abbrechen@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|%s aufheben@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Ausrüsten@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Nutzen@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Fallen lassen@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|Beschreibung@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Verbinde..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -805,12 +811,11 @@ msgstr "Lautstärke der Klangeffekte" msgid "Music volume" msgstr "Latustärke der Musik" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Anwenden" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Fenster zurücksetzen" @@ -1114,6 +1119,22 @@ msgstr "" msgid "Money: %d GP" msgstr "Geld: %d GP" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +msgid "Job:" +msgstr "" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1621,45 +1642,45 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 #, fuzzy msgid "Saving screenshot failed!" msgstr "Sitzen fehlgeschlagen!" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Bist du sicher, dass du diesen Charakter löschen möchtest?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1990,6 +2011,20 @@ msgstr "Unbekannter Befehl." msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Weight: %d g / %d g" +#~ msgstr "Gewicht: %d / %d" + +#~ msgid "Slots used: %d / %d" +#~ msgstr "Sockel benutzt: %d / %d" + +#, fuzzy +#~ msgid "Map" +#~ msgstr "Übersichtskarte" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|Beschreibung@@" + #~ msgid "Remember Username" #~ msgstr "Benutzernamen merken" diff --git a/po/en_GB.po b/po/en_GB.po index e12513a5..5127321c 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-05-10 16:51+0000\n" "Last-Translator: Me \n" "Language-Team: English (United Kingdom) \n" @@ -28,7 +28,7 @@ msgstr "Buy" msgid "Price: %d GP / Total: %d GP" msgstr "Price: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Exit" @@ -53,30 +53,30 @@ msgstr "Stop" msgid "Sell" msgstr "Sell" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancel" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Are you sure you want to delete this character?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Select Character" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Name: %s" @@ -86,68 +86,70 @@ msgstr "Name: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Money: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Previous" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Next" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "New" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Delete" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Previous" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Next" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Create Character" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Name:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Hair Colour:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Hair Style:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Create" @@ -157,7 +159,7 @@ msgid "Select Server" msgstr "Select Character" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -181,316 +183,316 @@ msgstr "" msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Changing OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -544,21 +546,27 @@ msgstr "Connecting..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Use" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipment" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Unequip" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -567,34 +575,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventory" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Equip" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Drop" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Unequip" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Equip" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Select amount of items to trade." @@ -603,6 +605,10 @@ msgstr "Select amount of items to trade." msgid "Select amount of items to drop." msgstr "Select amount of items to drop." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Login" @@ -647,12 +653,7 @@ msgstr "Shortcut" msgid "Setup" msgstr "Setup" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "MiniMap" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMap" @@ -714,7 +715,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Talk To NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancel@@" @@ -723,30 +724,35 @@ msgstr "@@cancel|Cancel@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Pick Up %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equip@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Equip@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Use@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Drop@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|Description@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Connecting..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -806,12 +812,11 @@ msgstr "Sfx volume" msgid "Music volume" msgstr "Music volume" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Apply" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Reset Windows" @@ -1114,6 +1119,23 @@ msgstr "Level: %d" msgid "Money: %d GP" msgstr "Money: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Level: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1624,44 +1646,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Are you sure you want to delete this character?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1991,6 +2013,13 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "MiniMap" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|Description@@" + #~ msgid "Unregister" #~ msgstr "Unregister" diff --git a/po/eo.po b/po/eo.po index d28a0524..227d9ada 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-11-10 22:03+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Esperanto \n" @@ -28,7 +28,7 @@ msgstr "" msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "" @@ -52,30 +52,30 @@ msgstr "" msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "" @@ -85,68 +85,70 @@ msgstr "" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 +msgid "New" msgstr "" -#: ../src/gui/char_select.cpp:94 -msgid "Next" +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +msgid "Delete" msgstr "" -#: ../src/gui/char_select.cpp:95 -msgid "New" +#: ../src/gui/char_select.cpp:98 +msgid "Previous" msgstr "" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 -msgid "Delete" +#: ../src/gui/char_select.cpp:99 +msgid "Next" msgstr "" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "" @@ -155,7 +157,7 @@ msgid "Select Server" msgstr "" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -178,315 +180,315 @@ msgstr "" msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -538,21 +540,27 @@ msgstr "" msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -561,32 +569,26 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:61 -msgid "Drop" -msgstr "" - -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" #: ../src/gui/item_amount.cpp:75 @@ -597,6 +599,10 @@ msgstr "" msgid "Select amount of items to drop." msgstr "" +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "" @@ -641,11 +647,7 @@ msgstr "" msgid "Setup" msgstr "" -#: ../src/gui/minimap.cpp:39 -msgid "Map" -msgstr "" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" @@ -704,7 +706,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" @@ -713,28 +715,32 @@ msgstr "" msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" +#: ../src/gui/recorder.h:41 +msgid "Recording..." +msgstr "" + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" msgstr "" #: ../src/gui/register.cpp:82 @@ -795,12 +801,11 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "" @@ -1096,6 +1101,22 @@ msgstr "" msgid "Money: %d GP" msgstr "" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +msgid "Job:" +msgstr "" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1595,43 +1616,43 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 msgid "Are you sure you want to quit?" msgstr "" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/es.po b/po/es.po index 4c720088..e9fbddb6 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-10-15 01:37+0000\n" "Last-Translator: catalania \n" "Language-Team: Spanish \n" @@ -28,7 +28,7 @@ msgstr "Comprar" msgid "Price: %d GP / Total: %d GP" msgstr "Precio: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Salir" @@ -53,30 +53,30 @@ msgstr "Detener" msgid "Sell" msgstr "Vender" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancelar" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "¿Seguro que quieres borrar este personaje?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Seleccionar personaje" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Nombre: %s" @@ -86,68 +86,70 @@ msgstr "Nombre: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Nivel: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nivel: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Dinero: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Anterior" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Siguiente" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Nuevo" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Eliminar" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Anterior" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Siguiente" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Aceptar" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Crear Personaje" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Nombre:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Color de pelo:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "corte de pelo" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Crear" @@ -157,7 +159,7 @@ msgid "Select Server" msgstr "Seleccionar personaje" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -181,316 +183,316 @@ msgstr "" msgid "Server:" msgstr "Servidor:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Cambiar a OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -544,21 +546,27 @@ msgstr "Conectando…" msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Usar" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipo" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "quitarselo" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -567,34 +575,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventario" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Equipar" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "tirar" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "quitarselo" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Equipar" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Seleccione objetos para comerciar." @@ -603,6 +605,10 @@ msgstr "Seleccione objetos para comerciar." msgid "Select amount of items to drop." msgstr "Seleccione objetos para soltar." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "conectarse" @@ -647,12 +653,7 @@ msgstr "Atajos" msgid "Setup" msgstr "Configuración" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "Minimapa" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Minimapa" @@ -714,7 +715,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Hablar al NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancelar@@" @@ -723,30 +724,35 @@ msgstr "@@cancel|Cancelar@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Recoger %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equipar@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Equipar@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Usar@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Tirar@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|Descripción@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Conectando…" + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -806,12 +812,11 @@ msgstr "Volumen efectos" msgid "Music volume" msgstr "Volumen musica" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Aplicar" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Reiniciar ventanas" @@ -1114,6 +1119,23 @@ msgstr "Nivel: %d" msgid "Money: %d GP" msgstr "Dinero: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Nivel: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1624,44 +1646,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "¿Seguro que quieres borrar este personaje?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1991,6 +2013,13 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "Minimapa" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|Descripción@@" + #~ msgid "Unregister" #~ msgstr "Cancelar Cuenta" diff --git a/po/fi.po b/po/fi.po index b8d3135e..d81eaae8 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-12-30 10:23+0000\n" "Last-Translator: ville-v \n" "Language-Team: Finnish \n" @@ -28,7 +28,7 @@ msgstr "Osta" msgid "Price: %d GP / Total: %d GP" msgstr "Kappalehinta: %d GP / Yhteensä: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Sulje" @@ -53,31 +53,31 @@ msgstr "Lopeta" msgid "Sell" msgstr "Myy" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Peru" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "Vahvista hahmon poistopyyntö" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Oletko varma, että haluat poistaa tämän hahmon?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 #, fuzzy msgid "Select Character" msgstr "Luo hahmo" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Nimi: %s" @@ -87,68 +87,70 @@ msgstr "Nimi: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Taso: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Taso: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Rahatilanne: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Edellinen" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Seuraava" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Uusi" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Poista" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Edellinen" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Seuraava" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Luo hahmo" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Nimi:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Hiusten väri:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Hiustyyli:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Luo" @@ -158,7 +160,7 @@ msgid "Select Server" msgstr "Vaihda palvelinta" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -182,316 +184,316 @@ msgstr "" msgid "Server:" msgstr "Palvelin:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Vaihdetaan OpenGL -toimintatilaan" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -545,21 +547,27 @@ msgstr "Yhdistetään..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Käytä" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Varusteet" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Poista varuste käytöstä" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -568,34 +576,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Tavaraluettelo" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Ota käyttöön" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Pudota" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Poista varuste käytöstä" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Ota käyttöön" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Anna vaihdettavien tavaroiden määrä." @@ -604,6 +606,10 @@ msgstr "Anna vaihdettavien tavaroiden määrä." msgid "Select amount of items to drop." msgstr "Anna pudotettavien tavaroiden määrä." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Kirjaudu sisään" @@ -648,12 +654,7 @@ msgstr "Pikavalinnat" msgid "Setup" msgstr "Asetukset" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "Apukartta" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Apukartta" @@ -715,7 +716,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Puhu epäpelattavalle hahmolle@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Peruuta@@" @@ -724,30 +725,35 @@ msgstr "@@cancel|Peruuta@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Poimi %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Ota varuste käyttöön@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Ota varuste käyttöön@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Käytä@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Pudota maahan@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|Kuvaus@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Yhdistetään..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -807,12 +813,11 @@ msgstr "Äänitehosteiden voimakkuus" msgid "Music volume" msgstr "Musiikin voimakkuus" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Käytä" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Palauta ikkunoiden oletusasetukset" @@ -1115,6 +1120,23 @@ msgstr "Taso: %d" msgid "Money: %d GP" msgstr "Rahatilanne: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Taso: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1625,44 +1647,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Oletko varma, että haluat poistaa tämän hahmon?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1992,6 +2014,13 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "Apukartta" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|Kuvaus@@" + #~ msgid "Remember Username" #~ msgstr "Muista käyttäjätunnus" diff --git a/po/fr.po b/po/fr.po index ffd28301..c36464e2 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-12-26 10:43+0000\n" "Last-Translator: Johan Serre \n" "Language-Team: French\n" @@ -29,7 +29,7 @@ msgstr "Acheter" msgid "Price: %d GP / Total: %d GP" msgstr "Prix : %d PO / Total : %d PO" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Quitter" @@ -54,30 +54,30 @@ msgstr "Stop" msgid "Sell" msgstr "Vendre" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Annuler" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "Confirmer la suppression du personnage" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Êtes-vous certain de vouloir supprimer ce personnage ?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Choix du personnage" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Nom : %s" @@ -87,68 +87,70 @@ msgstr "Nom : %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Niveau : %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Niveau : %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Argent : %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Précédent" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Suivant" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Nouveau" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Supprimer" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Précédent" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Suivant" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Création du personnage" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Nom :" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Couleur des cheveux" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Coiffure :" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Créer" @@ -158,7 +160,7 @@ msgid "Select Server" msgstr "Choix du personnage" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -182,316 +184,316 @@ msgstr "" msgid "Server:" msgstr "Serveur :" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Changement OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -545,21 +547,27 @@ msgstr "Connexion..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Utiliser" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Équipement" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Retirer" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -568,34 +576,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventaire" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Équiper" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Lâcher" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Retirer" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Équiper" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Choisissez le nombre d'objets à troquer." @@ -604,6 +606,10 @@ msgstr "Choisissez le nombre d'objets à troquer." msgid "Select amount of items to drop." msgstr "Choisissez le nombre d'objets à lâcher." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Connexion" @@ -648,12 +654,7 @@ msgstr "Raccourci" msgid "Setup" msgstr "Configuration" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "Plan" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Plan" @@ -715,7 +716,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Parler au PNJ@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Annuler@@" @@ -724,30 +725,35 @@ msgstr "@@cancel|Annuler@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Ramasser %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Équiper@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Équiper@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Utiliser@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Lâcher@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|Description@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Connexion..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -807,12 +813,11 @@ msgstr "Volume des effets sonores" msgid "Music volume" msgstr "Volume de la musique" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Appliquer" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Rétablir les fenêtres" @@ -1119,6 +1124,23 @@ msgstr "Niveau : %d" msgid "Money: %d GP" msgstr "Argent : %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Niveau : %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1629,44 +1651,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Êtes-vous certain de vouloir supprimer ce personnage ?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1996,6 +2018,13 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "Plan" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|Description@@" + #~ msgid "Remember Username" #~ msgstr "Se souvenir du nom d'utilisateur" diff --git a/po/he.po b/po/he.po index c0106af9..c3334c43 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-10-20 00:23+0000\n" "Last-Translator: Ddorda \n" "Language-Team: Hebrew \n" @@ -28,7 +28,7 @@ msgstr "קנה" msgid "Price: %d GP / Total: %d GP" msgstr "מחיר: %d זהב / סה\"כ %d זהב" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "יציאה" @@ -53,31 +53,31 @@ msgstr "עצור" msgid "Sell" msgstr "מכר" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "ביטול" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "אשר מחיקת שחקן" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "האם אתה בטוח כי ברצונך למחוק את השחקן?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 #, fuzzy msgid "Select Character" msgstr "צור שחקן" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "שם: %s" @@ -87,68 +87,70 @@ msgstr "שם: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "רמה: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "רמה: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "זהב: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "הקודם" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "הבא" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "חדש" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "מחק" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "הקודם" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "הבא" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "אישור" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "צור שחקן" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "שם:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "צבע שיער:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "תיספורת:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "צור" @@ -158,7 +160,7 @@ msgid "Select Server" msgstr "החלף שרת" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -182,316 +184,316 @@ msgstr "" msgid "Server:" msgstr "שרת:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "משנה OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -545,21 +547,27 @@ msgstr "מתחבר..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "השתמש" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "ציוד" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "הורד" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -568,34 +576,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "ציוד" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "החזק" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "השלך" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "הורד" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "החזק" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "בחר כמות חפצים לסחור." @@ -604,6 +606,10 @@ msgstr "בחר כמות חפצים לסחור." msgid "Select amount of items to drop." msgstr "בחר כמות חפצים להשליך." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "התחברות" @@ -648,12 +654,7 @@ msgstr "קיצור-דרך" msgid "Setup" msgstr "הגדרות" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "מיני-מפה" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "מיני-מפה" @@ -715,7 +716,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|דבר אל NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|ביטול@@" @@ -724,30 +725,35 @@ msgstr "@@cancel|ביטול@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|הרם %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|החזק@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|החזק@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Use@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|השלך@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|תיאור@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "מתחבר..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -807,12 +813,11 @@ msgstr "עוצמת SFX" msgid "Music volume" msgstr "עוצמת מוזיקה" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "אשר" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "אתחל חלונות" @@ -1115,6 +1120,23 @@ msgstr "רמה: %d" msgid "Money: %d GP" msgstr "זהב: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "רמה: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1625,44 +1647,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "האם אתה בטוח כי ברצונך למחוק את השחקן?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1992,6 +2014,13 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "מיני-מפה" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|תיאור@@" + #~ msgid "Remember Username" #~ msgstr "זכור שם משתמש" diff --git a/po/hr.po b/po/hr.po index b063a02d..cf2db91b 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-12-28 23:36+0000\n" "Last-Translator: Dino Paskvan \n" "Language-Team: Croatian \n" @@ -28,7 +28,7 @@ msgstr "Kupi" msgid "Price: %d GP / Total: %d GP" msgstr "Cijena: %d zlatnika / Ukupno: %d zlatnika" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Izlaz" @@ -52,31 +52,31 @@ msgstr "" msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Poništi" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "Potvrdi Brisanje Lika" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Da li ste sigurni da želite obrisati ovog lika?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 #, fuzzy msgid "Select Character" msgstr "Stvori Lika" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Ime: %s" @@ -86,68 +86,70 @@ msgstr "Ime: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Nivo: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nivo: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Novac: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Prethodni" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Slijedeći" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Novi" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Obriši" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Prethodni" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Slijedeći" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "U redu" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Stvori Lika" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Ime:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Boja kose:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Frizura:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Stvori" @@ -156,7 +158,7 @@ msgid "Select Server" msgstr "" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -180,315 +182,315 @@ msgstr "" msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -540,21 +542,27 @@ msgstr "Spajanje..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Upotrijebi" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Oprema" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Skini opremu" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -563,34 +571,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Zalihe" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Opremi" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Ispusti" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Skini opremu" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Opremi" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Odaberi količinu predmeta za razmjenu." @@ -599,6 +601,10 @@ msgstr "Odaberi količinu predmeta za razmjenu." msgid "Select amount of items to drop." msgstr "Odaberi količinu predmeta za ispuštanje." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Korisničko ime" @@ -643,12 +649,7 @@ msgstr "Kratica" msgid "Setup" msgstr "Podešavanje" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "Karta" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Karta" @@ -708,7 +709,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" @@ -717,29 +718,34 @@ msgstr "" msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "Skini opremu" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Spajanje..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" msgstr "" #: ../src/gui/register.cpp:82 @@ -800,12 +806,11 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "" @@ -1105,6 +1110,23 @@ msgstr "Nivo: %d" msgid "Money: %d GP" msgstr "Novac: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Nivo: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1611,44 +1633,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Da li ste sigurni da želite obrisati ovog lika?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1978,6 +2000,10 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "Karta" + #~ msgid "Remember Username" #~ msgstr "Zapamti korisničko ime" diff --git a/po/id.po b/po/id.po index bad76619..ab3226c8 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-03-26 09:11+0000\n" "Last-Translator: ActiveFile \n" "Language-Team: Indonesian \n" @@ -28,7 +28,7 @@ msgstr "Beli" msgid "Price: %d GP / Total: %d GP" msgstr "Harga: %d GP / Jumlah: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Keluar" @@ -53,30 +53,30 @@ msgstr "Berhenti" msgid "Sell" msgstr "Jual" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Batal" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Apakah anda bersungguh-sungguh ingin menghapus karakter ini?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Pilih Karakter" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Nama: %s" @@ -86,68 +86,70 @@ msgstr "Nama: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Tingkatan: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Tingkatan: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Uang: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Sebelumnya" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Berikutnya" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Buat baru" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Hapus" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Sebelumnya" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Berikutnya" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Buat Karakter" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Nama:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Warna Rambut:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Gaya Rambut:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Buat" @@ -157,7 +159,7 @@ msgid "Select Server" msgstr "Pilih Karakter" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -181,316 +183,316 @@ msgstr "" msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Mengubah OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -544,21 +546,27 @@ msgstr "Menyambung..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Gunakan" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Perlengkapan" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -567,32 +575,26 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventaris" -#: ../src/gui/inventorywindow.cpp:61 -msgid "Drop" -msgstr "Jatuh" - -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" -msgstr "" +#: ../src/gui/inventorywindow.cpp:73 +msgid "Drop" +msgstr "Jatuh" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" #: ../src/gui/item_amount.cpp:75 @@ -603,6 +605,10 @@ msgstr "Pilih jumlah item yang mau di perdagangkan" msgid "Select amount of items to drop." msgstr "Pilih jumlah item yang mau di buang" +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Login" @@ -647,12 +653,7 @@ msgstr "Tombol Singkat" msgid "Setup" msgstr "Atur" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "MiniMap" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMap" @@ -714,7 +715,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Bicara dengan NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Batal@@" @@ -723,30 +724,35 @@ msgstr "@@cancel|Batal@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Ambil %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Melengkapi@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Melengkapi@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Gunakan@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Buang@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|Deskripsi@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Menyambung..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -806,12 +812,11 @@ msgstr "Volume sfx" msgid "Music volume" msgstr "Volume Musik" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Terapkan" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "" @@ -1114,6 +1119,23 @@ msgstr "Tingkatan: %d" msgid "Money: %d GP" msgstr "Uang: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Tingkatan: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1624,44 +1646,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Apakah anda bersungguh-sungguh ingin menghapus karakter ini?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1991,6 +2013,13 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "MiniMap" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|Deskripsi@@" + #~ msgid "Unregister" #~ msgstr "Tidak terdaftar" diff --git a/po/it.po b/po/it.po index da6b668a..5a3782f1 100644 --- a/po/it.po +++ b/po/it.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2007-12-03 01:45+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: Italian\n" @@ -30,7 +30,7 @@ msgstr "Compra" msgid "Price: %d GP / Total: %d GP" msgstr "Prezzo: %d GP / Totale: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Esci" @@ -55,30 +55,30 @@ msgstr "Ferma" msgid "Sell" msgstr "Vendi" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancella" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Sei sicuro di voler cancellare questo personaggio?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Scelta Personaggio" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Nome : %s" @@ -88,68 +88,70 @@ msgstr "Nome : %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Livello: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Livello: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Monete: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Precedente" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Prossimo" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Nuovo" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Elimina" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Precedente" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Prossimo" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Crea Personaggio" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Nome :" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Colore Capelli" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Stile Capelli:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Create" @@ -159,7 +161,7 @@ msgid "Select Server" msgstr "Scelta Personaggio" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -183,316 +185,316 @@ msgstr "" msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Modifica OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -546,21 +548,27 @@ msgstr "Connessione..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Usa" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipaggiamento" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Rimuovi" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -569,34 +577,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventario" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Equipaggia" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Lascia" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Rimuovi" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Equipaggia" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Seleziona la quantità di oggetti da scambiare." @@ -605,6 +607,10 @@ msgstr "Seleziona la quantità di oggetti da scambiare." msgid "Select amount of items to drop." msgstr "Seleziona la quantità di oggetti da lasciare." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Autenticazione" @@ -649,12 +655,7 @@ msgstr "Scorciatoia" msgid "Setup" msgstr "Impostazioni" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "Mini mappa" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Mini mappa" @@ -716,7 +717,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Parla con NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancella@@" @@ -725,30 +726,35 @@ msgstr "@@cancel|Cancella@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Raccogli %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equipaggia@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Equipaggia@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@usa|Usa@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Lascia@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|Descrizione@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Connessione..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -808,12 +814,11 @@ msgstr "Volume effetti sonori" msgid "Music volume" msgstr "Volume musica" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Applica" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Resetta finestre" @@ -1116,6 +1121,23 @@ msgstr "Livello: %d" msgid "Money: %d GP" msgstr "Monete: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Livello: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1626,44 +1648,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Sei sicuro di voler cancellare questo personaggio?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1993,6 +2015,13 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "Mini mappa" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|Descrizione@@" + #~ msgid "Unregister" #~ msgstr "Cancella registrazione" diff --git a/po/ja.po b/po/ja.po index 032fdf5e..184cccfa 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-06-28 16:27+0000\n" "Last-Translator: fate \n" "Language-Team: Japanese \n" @@ -28,7 +28,7 @@ msgstr "買う" msgid "Price: %d GP / Total: %d GP" msgstr "価格: %d GP / 合計: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "終了" @@ -52,30 +52,30 @@ msgstr "" msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "取消" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "このキャラは消してもいいですか?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "キャラを選択" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "名前: %s" @@ -85,68 +85,70 @@ msgstr "名前: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "レベル: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "レベル: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "GP: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "前へ" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "次へ" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "新規" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "削除" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "前へ" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "次へ" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "了解" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "キャラを作成" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "名前:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "髪の色:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "髪型:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "作成" @@ -156,7 +158,7 @@ msgid "Select Server" msgstr "キャラを選択" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -180,315 +182,315 @@ msgstr "" msgid "Server:" msgstr "サーバ:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -542,21 +544,27 @@ msgstr "接続しています..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "使う" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -565,32 +573,26 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:61 -msgid "Drop" -msgstr "" - -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" #: ../src/gui/item_amount.cpp:75 @@ -601,6 +603,10 @@ msgstr "" msgid "Select amount of items to drop." msgstr "" +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "ログイン" @@ -645,11 +651,7 @@ msgstr "" msgid "Setup" msgstr "セットアップ" -#: ../src/gui/minimap.cpp:39 -msgid "Map" -msgstr "" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" @@ -709,7 +711,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|NPCを喋る@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" @@ -718,29 +720,34 @@ msgstr "" msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|使う@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|使う@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "接続しています..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" msgstr "" #: ../src/gui/register.cpp:82 @@ -801,12 +808,11 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "" @@ -1105,6 +1111,23 @@ msgstr "レベル: %d" msgid "Money: %d GP" msgstr "GP: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "レベル: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1611,44 +1634,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "このキャラは消してもいいですか?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/nl.po b/po/nl.po index f1ddc094..8a15e372 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2009-01-18 16:53+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: Dutch\n" @@ -28,7 +28,7 @@ msgstr "Kopen" msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Afsluiten" @@ -52,30 +52,30 @@ msgstr "Winkel" msgid "Sell" msgstr "Verkopen" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Annuleren" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Weet je zeker dat je deze personage wilt verwijderen?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Kies Personage" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Naam: %s" @@ -85,68 +85,70 @@ msgstr "Naam: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Geld: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Vorige" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Volgende" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Nieuw" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Verwijderen" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Vorige" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Volgende" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "OK" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "Goud: %d" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Personage Aanmaken" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Naam:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Haarkleur:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Haarstijl:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Aanmaken" @@ -155,7 +157,7 @@ msgid "Select Server" msgstr "Server Selecteren" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "OK" @@ -180,320 +182,320 @@ msgstr "/announce: Globale aankondiging (alleen voor GM)" msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "Onbekende opdracht" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "Zitten niet mogelijk!" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "Het ziet ernaar uit dat je meer geld nodig hebt... ;-)" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "Je draagt teveel bij je om dit te doen!" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Veranderen van OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "/announce: Globale aankondiging (alleen voor GM)" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "/who: Geef het aantal online gebruikers weer" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "Commando: /announce " -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "Commando: /clear" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "Commando: /help" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "Commando: /help " -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 #, fuzzy msgid "Command: /present" msgstr "Commando: /where" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 #, fuzzy msgid "Command: /toggle " msgstr "Commando: /announce " -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 #, fuzzy msgid "Command: /toggle" msgstr "Commando: /clear" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "Commando: /where" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 #, fuzzy msgid "Command: /msg " msgstr "Commando: /announce " -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "Type /help voor een lijst van commando's." @@ -549,21 +551,27 @@ msgstr "Verbinden..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Gebruiken" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Uitrusting" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Afdoen" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -572,33 +580,27 @@ msgstr "" msgid "Close" msgstr "Sluiten" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventaris" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Uitrusten" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Neerleggen" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, fuzzy, c-format -msgid "Weight: %d g / %d g" -msgstr "Gewicht: %d / %d" - -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Afdoen" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Uitrusten" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " +msgstr "" #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." @@ -608,6 +610,10 @@ msgstr "Selecteer het aantal exemplaren om te verhandelen" msgid "Select amount of items to drop." msgstr "Selecteer het aantal exemplaren om neer te leggen" +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Inloggen" @@ -652,12 +658,7 @@ msgstr "Sneltoets" msgid "Setup" msgstr "Configureren" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "Kaartje" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Kaartje" @@ -719,7 +720,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Praat met NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Annuleren@@" @@ -728,29 +729,34 @@ msgstr "@@cancel|Annuleren@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|%s oppakken@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Uitrusten@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Gebruiken@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Neerleggen@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|Beschrijving@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Verbinden..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -810,12 +816,11 @@ msgstr "Volume van geluiden" msgid "Music volume" msgstr "Muziek volume" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Toepassen" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Vensters in beginstand" @@ -1117,6 +1122,22 @@ msgstr "" msgid "Money: %d GP" msgstr "Geld: %d GP" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +msgid "Job:" +msgstr "" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1620,45 +1641,45 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 #, fuzzy msgid "Saving screenshot failed!" msgstr "Zitten niet mogelijk!" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Weet je zeker dat je deze personage wilt verwijderen?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1993,6 +2014,17 @@ msgstr "Onbekende opdracht" msgid "Type /help party for a list of options." msgstr "Type /help voor een lijst van commando's." +#, fuzzy +#~ msgid "Weight: %d g / %d g" +#~ msgstr "Gewicht: %d / %d" + +#, fuzzy +#~ msgid "Map" +#~ msgstr "Kaartje" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|Beschrijving@@" + #~ msgid "Remember Username" #~ msgstr "Onthoud Naam" diff --git a/po/pl.po b/po/pl.po index 6d252a09..4d1691a4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-10-10 05:26+0000\n" "Last-Translator: Michał Trzebiatowski \n" "Language-Team: \n" @@ -30,7 +30,7 @@ msgstr "Kup" msgid "Price: %d GP / Total: %d GP" msgstr "Cena: %d GP / Razem: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Wyjdź" @@ -55,30 +55,30 @@ msgstr "Zatrzymaj" msgid "Sell" msgstr "Sprzedaj" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Anuluj" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Czy jesteś pewien, że chcesz usunąć tę postać?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Wybierz postać" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Imię: %s" @@ -88,68 +88,70 @@ msgstr "Imię: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Poziom: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Poziom: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Pieniądze: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Poprzedni" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Następny" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Nowa" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Usuń" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Poprzedni" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Następny" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Stwórz postać" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Imię:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Kolor włosów:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Fryzura:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Stwórz" @@ -159,7 +161,7 @@ msgid "Select Server" msgstr "Wybierz postać" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -183,316 +185,316 @@ msgstr "" msgid "Server:" msgstr "Serwer:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Zmień ustawienia OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -546,21 +548,27 @@ msgstr "Łączenie..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Użyj" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Ekwipunek" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Zdejmij" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -569,34 +577,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inwentarz" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Załóż" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Upuść" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Zdejmij" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Załóż" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Wybierz ilość przedmiotów do wymiany." @@ -605,6 +607,10 @@ msgstr "Wybierz ilość przedmiotów do wymiany." msgid "Select amount of items to drop." msgstr "Wybierz ilość przedmiotów do upuszczenia." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Użytkownik" @@ -649,12 +655,7 @@ msgstr "Skrót" msgid "Setup" msgstr "Konfiguracja" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "MiniMapa" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMapa" @@ -716,7 +717,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Rozmawiaj z NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Anuluj@@" @@ -725,30 +726,35 @@ msgstr "@@cancel|Anuluj@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Podnieś %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Załóż@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Załóż@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Użyj@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Upuść@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|Opis@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Łączenie..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -808,12 +814,11 @@ msgstr "Głośność efektów dźwiękowych" msgid "Music volume" msgstr "Głośność muzyki" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Zastosuj" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Zresetuj okna" @@ -1117,6 +1122,23 @@ msgstr "Poziom: %d" msgid "Money: %d GP" msgstr "Pieniądze: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Poziom: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1627,44 +1649,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Czy jesteś pewien, że chcesz usunąć tę postać?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1994,6 +2016,13 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "MiniMapa" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|Opis@@" + #~ msgid "Unregister" #~ msgstr "Wyrejestruj" diff --git a/po/pt.po b/po/pt.po index 2f9efcb9..1d449423 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-02-03 10:14+0000\n" "Last-Translator: Tiago Silva \n" "Language-Team: Portuguese \n" @@ -28,7 +28,7 @@ msgstr "Comprar" msgid "Price: %d GP / Total: %d GP" msgstr "Preço: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Sair" @@ -53,30 +53,30 @@ msgstr "Parar" msgid "Sell" msgstr "Vender" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancelar" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Tem a certeza que quer apagar este personagem" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Seleccione um Personagem" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Nome: %s" @@ -86,68 +86,70 @@ msgstr "Nome: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Nível: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nível: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Dinheiro: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Anterior" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Seguinte" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Novo" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Eliminar" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Anterior" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Seguinte" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Criar Personagem" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Nome:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Cor de Cabelo:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Estilo do Cabelo:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Criar" @@ -157,7 +159,7 @@ msgid "Select Server" msgstr "Seleccione um Personagem" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -181,316 +183,316 @@ msgstr "" msgid "Server:" msgstr "Servidor:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Mudando OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -544,21 +546,27 @@ msgstr "Conectando..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Usar" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipamento" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Desequipar" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -567,34 +575,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventário" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Equipar" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Largar" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Desequipar" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Equipar" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Seleccionar a quantidade de itens a negociar." @@ -603,6 +605,10 @@ msgstr "Seleccionar a quantidade de itens a negociar." msgid "Select amount of items to drop." msgstr "Seleccionar a quantidade de itens a largar." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Autenticar" @@ -647,12 +653,7 @@ msgstr "Atalho" msgid "Setup" msgstr "Configuração" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "MiniMapa" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMapa" @@ -714,7 +715,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Falar com o NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancelar@@" @@ -723,30 +724,35 @@ msgstr "@@cancel|Cancelar@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Apanhar %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equipar@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Equipar@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Usar@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Largar@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@descrição|Descrição@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Conectando..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -806,12 +812,11 @@ msgstr "Volume dos Efeitos" msgid "Music volume" msgstr "Volume da Música" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Aplicar" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Reiniciar Janelas" @@ -1114,6 +1119,23 @@ msgstr "Nível: %d" msgid "Money: %d GP" msgstr "Dinheiro: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Nível: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1632,44 +1654,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Tem a certeza que quer apagar este personagem" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1999,6 +2021,13 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "MiniMapa" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@descrição|Descrição@@" + #~ msgid "Unregister" #~ msgstr "Remover o Registo" diff --git a/po/pt_BR.po b/po/pt_BR.po index b7a1cd10..2320cd1d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2009-01-21 20:48+0000\n" "Last-Translator: Bruno \n" "Language-Team: Brazilian Portuguese \n" @@ -28,7 +28,7 @@ msgstr "Comprar" msgid "Price: %d GP / Total: %d GP" msgstr "Preço: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Sair" @@ -52,30 +52,30 @@ msgstr "Loja" msgid "Sell" msgstr "Vender" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancelar" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "Confimar exclusão do personagem" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Tem certeza que deseja excluir este personagem?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Selecionar personagem" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Nome: %s" @@ -85,68 +85,70 @@ msgstr "Nome: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Nível: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, c-format msgid "Job Level: %d" msgstr "Nível de Trabalho: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Dinheiro: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Anterior" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Próximo" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Novo" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Excluir" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Anterior" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Próximo" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "Ouro: %d" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Criar Personagem" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Nome:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Cor do Cabelo:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Estilo do Cabelo:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Criar" @@ -155,7 +157,7 @@ msgid "Select Server" msgstr "Selecionar Servidor" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "OK" @@ -180,322 +182,322 @@ msgstr "Anúncio geral de %s:" msgid "Server:" msgstr "Servidor:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "Sussurrando para %s: %s" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "Comando desconhecido" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "Falha na negociação!" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "Falha no Emote!" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "Falha ao sentar!" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "Falha ao criar Chat!" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "Impossivel entrar no grupo!" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "Impossivel gritar!" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "Você ainda não tem nivel necessário!" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "HP insuficiente!" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "SP insuficiente!" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "Você não tem nenhuma nota armazenada" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "Você não pode fazer isso agora!" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "Parece que você precisa de mais Zenyz... ;-)" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "Você não pode usar essa Skill com esse tipo de arma." -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "Você precisa de outra gema vermelha!" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "Você precisa de outra gema azul!" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "Você está com muita carga para fazer isso!" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "Hã? O que é isso?" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "Falha ao transportar..." -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "Não foi possível roubar nada..." -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "Veneno não surtiu efeito..." -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Trocando OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "--Ajuda--" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "/announce: Aviso geral (Apenas GM)" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "/clear: limpa esta janela" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "/help: Mostra esta ajuda" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 #, fuzzy msgid "/msg : Alternate form for /whisper" msgstr "/w : Forma mais curta para /whisper" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "/where: mostra o nome do mapa" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "/w : Forma mais curta para /whisper" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "/whisper : Envia uma mensagem particular" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "/who Mostra os jogadores online" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "Para mais informações, digite /help " -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "Comandos: /announce " -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "*** Disponivel apenas para GM's ***" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "Este comando envia uma mensagem para todos os jogadores online." -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "Comandos: /clear" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "Limpa os logs do chat anterior." -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "Comando: /help" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "Exibe uma lista de todos os comandos disponiveis." -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "Comando: /help " -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "Exibe o conteudo de ajuda de " -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 #, fuzzy msgid "Command: /present" msgstr "Comando: /where" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 #, fuzzy msgid "Command: /toggle " msgstr "Comandos: /announce " -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 #, fuzzy msgid "Command: /toggle" msgstr "Comandos: /clear" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 #, fuzzy msgid "This command displays the return toggle status." msgstr "Mostra o nome do mapa atual." -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "Comando: /where" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "Mostra o nome do mapa atual." -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 #, fuzzy msgid "Command: /msg " msgstr "Comando: /w " -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "Comando: /whisper " -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "Comando: /w " -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "Envia uma mensagem para ." -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "Se possuir espaços, coloque dentro de parenteses (\")." -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "Comando: /who" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "Exibe o total de jogadores online." -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "Comando desconhecido." -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "Digite /help para uma lista de todos os comandos." @@ -551,21 +553,27 @@ msgstr "Conectando..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Usar" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipamento" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Desequipar" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "Ajuda" @@ -574,33 +582,28 @@ msgstr "Ajuda" msgid "Close" msgstr "Fechar" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventório" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Equipar" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Descartar" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, fuzzy, c-format -msgid "Weight: %d g / %d g" -msgstr "Capacidade: %d / %d" - -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" -msgstr "Slots usados: %d/%d" - -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Desequipar" +#: ../src/gui/inventorywindow.cpp:85 +#, fuzzy +msgid "Slots: " +msgstr "Pontos de habilidade: %d" -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Equipar" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " +msgstr "" #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." @@ -610,6 +613,10 @@ msgstr "Selecionar montante de itens para negociar." msgid "Select amount of items to drop." msgstr "Selecionar montante de itens para descartar." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Login" @@ -654,12 +661,7 @@ msgstr "Atalho" msgid "Setup" msgstr "Configurar" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "MiniMapa" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMapa" @@ -722,7 +724,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@falar|Falar com NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancelar|Cancelar@@" @@ -731,29 +733,34 @@ msgstr "@@cancelar|Cancelar@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pegar|Pegar %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "@@usar|Desequipar@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@usar|Equipar@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@usar|Usar@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@descartar|Descartar@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@descrição|Descrição@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Conectando..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -813,12 +820,11 @@ msgstr "Volume Sfx" msgid "Music volume" msgstr "Volume da Música" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Aplicar" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Restaurar janelas" @@ -1121,6 +1127,23 @@ msgstr "Trabalho: %d" msgid "Money: %d GP" msgstr "Dinheiro: %d GP" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Trabalho: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1631,45 +1654,45 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 #, fuzzy msgid "Saving screenshot failed!" msgstr "Falha ao sentar!" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Tem certeza que deseja excluir este personagem?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -2010,6 +2033,20 @@ msgstr "Comando desconhecido." msgid "Type /help party for a list of options." msgstr "Digite /help para uma lista de todos os comandos." +#, fuzzy +#~ msgid "Weight: %d g / %d g" +#~ msgstr "Capacidade: %d / %d" + +#~ msgid "Slots used: %d / %d" +#~ msgstr "Slots usados: %d/%d" + +#, fuzzy +#~ msgid "Map" +#~ msgstr "MiniMapa" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@descrição|Descrição@@" + #~ msgid "Remember Username" #~ msgstr "Lembrar nome de usuário" diff --git a/po/ru.po b/po/ru.po index bdd40333..fc2dbd66 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-01-08 11:50+0000\n" "Last-Translator: idle sign \n" "Language-Team: Russian \n" @@ -28,7 +28,7 @@ msgstr "Купить" msgid "Price: %d GP / Total: %d GP" msgstr "Стоимость: %d GP / Всегоl: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Выход" @@ -53,30 +53,30 @@ msgstr "Стоп" msgid "Sell" msgstr "Продать" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Отмена" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Вы уверены, что хотите удалить этого персонажа?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Выбор персонажа" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Имя: %s" @@ -86,68 +86,70 @@ msgstr "Имя: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Уровень: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Уровень: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Деньги: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Предыдущий" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Следующий" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Новый" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Удалить" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Предыдущий" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Следующий" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Создать персонажа" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Имя:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Цвет волос:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Стрижка:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Создать" @@ -157,7 +159,7 @@ msgid "Select Server" msgstr "Выбор персонажа" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -181,316 +183,316 @@ msgstr "" msgid "Server:" msgstr "Сервер:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Переключение на OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -544,21 +546,27 @@ msgstr "Соединение..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Использовать" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Снаряжение" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Снять" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -567,34 +575,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Инвентарь" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Надеть" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Сбросить" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Снять" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Надеть" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Сколько предметов продать." @@ -603,6 +605,10 @@ msgstr "Сколько предметов продать." msgid "Select amount of items to drop." msgstr "Сколько предметов сбросить." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Вход" @@ -647,12 +653,7 @@ msgstr "Клавиша" msgid "Setup" msgstr "Настройка" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "МиниКарта" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "МиниКарта" @@ -714,7 +715,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Говорить с NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancelОтмена@@" @@ -723,30 +724,35 @@ msgstr "@@cancelОтмена@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Подобрать %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Надеть@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Надеть@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Использовать@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Сбросить@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|Описание@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Соединение..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -806,12 +812,11 @@ msgstr "Громкость эффектов" msgid "Music volume" msgstr "Громкость музыки" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Применить" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Восстановить расположение окон" @@ -1114,6 +1119,23 @@ msgstr "Уровень: %d" msgid "Money: %d GP" msgstr "Деньги: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Уровень: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1624,44 +1646,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Вы уверены, что хотите удалить этого персонажа?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1991,6 +2013,13 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "МиниКарта" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|Описание@@" + #~ msgid "Unregister" #~ msgstr "Удалить регистрацию" diff --git a/po/sk.po b/po/sk.po index 080ef28c..63a4b2aa 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-12-30 14:07+0000\n" "Last-Translator: TomasKovacik \n" "Language-Team: Slovak \n" @@ -28,7 +28,7 @@ msgstr "Kúpiť" msgid "Price: %d GP / Total: %d GP" msgstr "Cena: %d GP / Spolu: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Ukončiť" @@ -52,31 +52,31 @@ msgstr "" msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Zrušiť" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "Potvrdte zmazanie postavy" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Naozaj chcete odstrániť túto postavu?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 #, fuzzy msgid "Select Character" msgstr "Vytvoriť postavu" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "" @@ -86,68 +86,70 @@ msgstr "" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Peniaze: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Predchádzajúci" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Nasledujúci" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Nový" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Vymazať" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Predchádzajúci" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Nasledujúci" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ano" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Vytvoriť postavu" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Meno" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Farba vlasov:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Štýl vlasov:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Vytvoriť" @@ -156,7 +158,7 @@ msgid "Select Server" msgstr "" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -180,315 +182,315 @@ msgstr "" msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -540,21 +542,27 @@ msgstr "" msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -563,32 +571,26 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:61 -msgid "Drop" -msgstr "" - -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" #: ../src/gui/item_amount.cpp:75 @@ -599,6 +601,10 @@ msgstr "" msgid "Select amount of items to drop." msgstr "" +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "" @@ -643,11 +649,7 @@ msgstr "" msgid "Setup" msgstr "" -#: ../src/gui/minimap.cpp:39 -msgid "Map" -msgstr "" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" @@ -706,7 +708,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" @@ -715,28 +717,32 @@ msgstr "" msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" +#: ../src/gui/recorder.h:41 +msgid "Recording..." +msgstr "" + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" msgstr "" #: ../src/gui/register.cpp:82 @@ -797,12 +803,11 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "" @@ -1100,6 +1105,23 @@ msgstr "Level: %d" msgid "Money: %d GP" msgstr "Peniaze: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Level: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1602,44 +1624,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Naozaj chcete odstrániť túto postavu?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/sv.po b/po/sv.po index 3ae9a674..1d1ea228 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-05-07 19:04+0000\n" "Last-Translator: Kess Vargavind \n" "Language-Team: Swedish \n" @@ -28,7 +28,7 @@ msgstr "Köp" msgid "Price: %d GP / Total: %d GP" msgstr "Pris: %d GP / Totalt: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "Avsluta" @@ -53,30 +53,30 @@ msgstr "Stopp" msgid "Sell" msgstr "Sälj" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Avbryt" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "Är du säker på att du vill ta bort den här karaktären?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 msgid "Select Character" msgstr "Välj karaktär" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "Namn: %s" @@ -86,68 +86,70 @@ msgstr "Namn: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Nivå: %d" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nivå: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "Pengar: %d" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "Föregående" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "Nästa" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "Ny" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "Ta bort" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "Föregående" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "Nästa" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "Skapa karaktär" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "Namn:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "Hårfärg:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "Frisyr:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "Skapa" @@ -157,7 +159,7 @@ msgid "Select Server" msgstr "Välj karaktär" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -181,316 +183,316 @@ msgstr "" msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 #, fuzzy msgid "Changing prefix to " msgstr "Ändrar OpenGL" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -544,21 +546,27 @@ msgstr "Ansluter..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "Använd" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Utrustning" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "Avrusta" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -567,34 +575,28 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventarium" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "Utrusta" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "Släpp" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "Avrusta" - -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "Utrusta" - #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Välj antal föremål att handla med." @@ -603,6 +605,10 @@ msgstr "Välj antal föremål att handla med." msgid "Select amount of items to drop." msgstr "Välj antal föremål att släppa." +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "Användarnamn" @@ -647,12 +653,7 @@ msgstr "Genväg" msgid "Setup" msgstr "Inställningar" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "Minikarta" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Minikarta" @@ -714,7 +715,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Prata med NPC@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Avbryt@@" @@ -723,30 +724,35 @@ msgstr "@@cancel|Avbryt@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Plocka upp %s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Utrusta@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Utrusta@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Använd@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Släpp@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@description|Beskrivning@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "Ansluter..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -806,12 +812,11 @@ msgstr "Volym för ljudeffekter" msgid "Music volume" msgstr "Musikvolym" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "Verkställ" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "Återställ fönster" @@ -1114,6 +1119,23 @@ msgstr "Nivå: %d" msgid "Money: %d GP" msgstr "Pengar: %d" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "Nivå: %d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1624,44 +1646,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Är du säker på att du vill ta bort den här karaktären?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -1991,6 +2013,13 @@ msgstr "" msgid "Type /help party for a list of options." msgstr "" +#, fuzzy +#~ msgid "Map" +#~ msgstr "Minikarta" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@description|Beskrivning@@" + #~ msgid "Unregister" #~ msgstr "Avregistrera" diff --git a/po/th.po b/po/th.po index 3798f1dc..ac0ee488 100644 --- a/po/th.po +++ b/po/th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2008-11-25 06:16+0000\n" "Last-Translator: Tharawut Paripaiboon \n" "Language-Team: Thai \n" @@ -28,7 +28,7 @@ msgstr "ซื้อ" msgid "Price: %d GP / Total: %d GP" msgstr "ราคา: %d GP / ทั้งหมด: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:640 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 msgid "Quit" msgstr "ออก" @@ -52,31 +52,31 @@ msgstr "" msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:98 -#: ../src/gui/char_select.cpp:265 ../src/gui/char_server.cpp:59 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 +#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 #: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 #: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:44 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:121 -#: ../src/gui/trade.cpp:65 ../src/gui/updatewindow.cpp:114 +#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 +#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "ยกเลิก" -#: ../src/gui/char_select.cpp:62 +#: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" msgstr "ยืนยันการลบตัวละคร" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" msgstr "คุณแน่ใจแล้วหรือที่จะลบตัวละครนี้?" -#: ../src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:82 #, fuzzy msgid "Select Character" msgstr "สร้างตัวละคร" -#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:173 -#: ../src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:188 #, c-format msgid "Name: %s" msgstr "ชื่อ: %s" @@ -86,68 +86,70 @@ msgstr "ชื่อ: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:174 -#: ../src/gui/char_select.cpp:187 ../src/gui/status.cpp:49 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 #: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:175 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:189 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format msgid "Money: %d" msgstr "" -#: ../src/gui/char_select.cpp:93 -msgid "Previous" -msgstr "ก่อนหน้า" - -#: ../src/gui/char_select.cpp:94 -msgid "Next" -msgstr "ถัดไป" - -#: ../src/gui/char_select.cpp:95 +#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:192 msgid "New" msgstr "สร้างใหม่" -#: ../src/gui/char_select.cpp:96 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 +#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 msgid "Delete" msgstr "ลบทิ้ง" -#: ../src/gui/char_select.cpp:97 ../src/gui/item_amount.cpp:59 +#: ../src/gui/char_select.cpp:98 +msgid "Previous" +msgstr "ก่อนหน้า" + +#: ../src/gui/char_select.cpp:99 +msgid "Next" +msgstr "ถัดไป" + +#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 #: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 msgid "Ok" msgstr "ตกลง" -#: ../src/gui/char_select.cpp:176 +#: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:247 +#: ../src/gui/char_select.cpp:248 msgid "Create Character" msgstr "สร้างตัวละคร" -#: ../src/gui/char_select.cpp:257 ../src/gui/login.cpp:51 +#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 #: ../src/gui/register.cpp:80 msgid "Name:" msgstr "ชื่อ:" -#: ../src/gui/char_select.cpp:260 +#: ../src/gui/char_select.cpp:261 msgid "Hair Color:" msgstr "สีผม:" -#: ../src/gui/char_select.cpp:263 +#: ../src/gui/char_select.cpp:264 msgid "Hair Style:" msgstr "ทรงผม:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Create" msgstr "สร้าง" @@ -156,7 +158,7 @@ msgid "Select Server" msgstr "" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:43 +#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 #: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 msgid "OK" msgstr "" @@ -180,315 +182,315 @@ msgstr "" msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:327 +#: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:346 +#: ../src/gui/chat.cpp:352 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:479 +#: ../src/gui/chat.cpp:485 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:480 +#: ../src/gui/chat.cpp:486 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:490 +#: ../src/gui/chat.cpp:496 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:498 +#: ../src/gui/chat.cpp:504 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:503 +#: ../src/gui/chat.cpp:509 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:516 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:556 +#: ../src/gui/chat.cpp:562 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:565 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:594 ../src/gui/chat.cpp:599 +#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:595 +#: ../src/gui/chat.cpp:601 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:604 +#: ../src/gui/chat.cpp:610 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:616 +#: ../src/gui/chat.cpp:622 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:619 +#: ../src/gui/chat.cpp:625 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:628 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:631 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:634 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:637 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:640 +#: ../src/gui/chat.cpp:646 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:643 +#: ../src/gui/chat.cpp:649 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:652 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:655 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:658 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:661 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:664 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:667 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:670 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:673 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:676 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:679 +#: ../src/gui/chat.cpp:685 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:682 +#: ../src/gui/chat.cpp:688 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:691 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:768 +#: ../src/gui/chat.cpp:774 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:773 +#: ../src/gui/chat.cpp:779 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:785 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:784 +#: ../src/gui/chat.cpp:790 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:794 +#: ../src/gui/chat.cpp:800 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:797 +#: ../src/gui/chat.cpp:803 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:798 +#: ../src/gui/chat.cpp:804 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:799 +#: ../src/gui/chat.cpp:805 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:807 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "" @@ -540,21 +542,27 @@ msgstr "กำลังเชื่อมต่อ..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "ใช้" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "" @@ -563,32 +571,26 @@ msgstr "" msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:61 -msgid "Drop" -msgstr "ทิ้ง" - -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, c-format -msgid "Weight: %d g / %d g" +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" -msgstr "" +#: ../src/gui/inventorywindow.cpp:73 +msgid "Drop" +msgstr "ทิ้ง" -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" +#: ../src/gui/inventorywindow.cpp:85 +msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " msgstr "" #: ../src/gui/item_amount.cpp:75 @@ -599,6 +601,10 @@ msgstr "" msgid "Select amount of items to drop." msgstr "" +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "เข้าระบบ" @@ -643,11 +649,7 @@ msgstr "" msgid "Setup" msgstr "ตั้งค่า" -#: ../src/gui/minimap.cpp:39 -msgid "Map" -msgstr "" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" @@ -707,7 +709,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" @@ -716,28 +718,33 @@ msgstr "" msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "กำลังเชื่อมต่อ..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" msgstr "" #: ../src/gui/register.cpp:82 @@ -798,12 +805,11 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "" @@ -1102,6 +1108,22 @@ msgstr "" msgid "Money: %d GP" msgstr "" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +msgid "Job:" +msgstr "" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1608,44 +1630,44 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "คุณแน่ใจแล้วหรือที่จะลบตัวละครนี้?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 4638cfbe..8c96404d 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 18:51-0700\n" +"POT-Creation-Date: 2009-01-28 09:34-0700\n" "PO-Revision-Date: 2009-01-21 22:42+0800\n" "Last-Translator: Hong Hao \n" "Language-Team: Simplified Chinese : Alternate form for /whisper" msgstr "/w <昵称> <信息>: /whisper的缩写形式" -#: ../src/gui/chat.cpp:802 +#: ../src/gui/chat.cpp:808 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:810 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:812 msgid "/where: Display map name" msgstr "/where: 显示地图名称" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:813 msgid "/w : Short form for /whisper" msgstr "/w <昵称> <信息>: /whisper的缩写形式" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:814 msgid "/whisper : Sends a private to " msgstr "/whisper <昵称> <信息>: 发送一条私密信息 <信息> 给 <昵称>" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:816 msgid "/who: Display number of online users" msgstr "/who: 显示在线用户数" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:817 msgid "For more information, type /help " msgstr "输入/help <指令> 获取更多帮助信息" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:821 msgid "Command: /announce " msgstr "指令: /announce <信息>" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:822 msgid "*** only available to a GM ***" msgstr "*** 只有GM可用 ***" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:823 msgid "This command sends the message to all players currently online." msgstr "该指令会发送<信息>给所有在线用户。" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:828 msgid "Command: /clear" msgstr "指令: /clear" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:829 msgid "This command clears the chat log of previous chat." msgstr "该指令可清除历史聊天记录。" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:834 msgid "Command: /help" msgstr "指令: /help" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:835 msgid "This command displays a list of all commands available." msgstr "该指令可显示所有可用指令。" -#: ../src/gui/chat.cpp:831 +#: ../src/gui/chat.cpp:837 msgid "Command: /help " msgstr "指令: /help <指令>" -#: ../src/gui/chat.cpp:832 +#: ../src/gui/chat.cpp:838 msgid "This command displays help on ." msgstr "该指令显现<指令>的帮助信息" -#: ../src/gui/chat.cpp:840 +#: ../src/gui/chat.cpp:846 #, fuzzy msgid "Command: /present" msgstr "指令: /where" -#: ../src/gui/chat.cpp:841 +#: ../src/gui/chat.cpp:847 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:851 +#: ../src/gui/chat.cpp:857 #, fuzzy msgid "Command: /toggle " msgstr "指令: /announce <信息>" -#: ../src/gui/chat.cpp:852 +#: ../src/gui/chat.cpp:858 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:855 +#: ../src/gui/chat.cpp:861 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:864 #, fuzzy msgid "Command: /toggle" msgstr "指令: /clear" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:865 #, fuzzy msgid "This command displays the return toggle status." msgstr "该条指令显示当前地图名。" -#: ../src/gui/chat.cpp:863 +#: ../src/gui/chat.cpp:869 msgid "Command: /where" msgstr "指令: /where" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:870 msgid "This command displays the name of the current map." msgstr "该条指令显示当前地图名。" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:875 #, fuzzy msgid "Command: /msg " msgstr "指令: /w <昵称> <信息>" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:876 msgid "Command: /whisper " msgstr "指令: /whisper <昵称> <信息>" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:877 msgid "Command: /w " msgstr "指令: /w <昵称> <信息>" -#: ../src/gui/chat.cpp:872 +#: ../src/gui/chat.cpp:878 msgid "This command sends the message to ." msgstr "该条指令发送信息 " -#: ../src/gui/chat.cpp:874 +#: ../src/gui/chat.cpp:880 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "如果<昵称>之间有空格,用双引号(\")括起来。" -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:885 msgid "Command: /who" msgstr "指令: /who" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:886 msgid "This command displays the number of players currently online." msgstr "该条指令可显现当前在线用户总数。" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:891 msgid "Unknown command." msgstr "未知命令" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:892 msgid "Type /help for a list of commands." msgstr "输入 /help 获取指令列表。" @@ -557,21 +559,27 @@ msgstr "连接中..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:40 ../src/gui/emotewindow.cpp:42 +#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:49 ../src/gui/inventorywindow.cpp:60 -#: ../src/gui/inventorywindow.cpp:188 ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 +#: ../src/gui/skill.cpp:141 msgid "Use" msgstr "使用" -#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "装备" +#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 +#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +msgid "Unequip" +msgstr "卸下装备" + #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" msgstr "帮助" @@ -580,33 +588,28 @@ msgstr "帮助" msgid "Close" msgstr "关闭" -#: ../src/gui/inventorywindow.cpp:49 ../src/gui/inventorywindow.cpp:53 +#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "物品栏" -#: ../src/gui/inventorywindow.cpp:61 +#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 +#: ../src/gui/inventorywindow.cpp:212 +msgid "Equip" +msgstr "装备" + +#: ../src/gui/inventorywindow.cpp:73 msgid "Drop" msgstr "丢弃" -#. Adjust widgets -#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:114 -#, fuzzy, c-format -msgid "Weight: %d g / %d g" -msgstr "负重:%d / %d" - -#: ../src/gui/inventorywindow.cpp:75 ../src/gui/inventorywindow.cpp:117 -#, c-format -msgid "Slots used: %d / %d" -msgstr "已使用槽: %d / %d" - -#: ../src/gui/inventorywindow.cpp:183 -msgid "Unequip" -msgstr "卸下装备" +#: ../src/gui/inventorywindow.cpp:85 +#, fuzzy +msgid "Slots: " +msgstr "技能点数:%d" -#: ../src/gui/inventorywindow.cpp:185 -msgid "Equip" -msgstr "装备" +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +msgid "Weight: " +msgstr "" #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." @@ -616,6 +619,10 @@ msgstr "请选择交易的物品数量" msgid "Select amount of items to drop." msgstr "请选择丢弃的物品数量" +#: ../src/gui/itempopup.cpp:118 +msgid " grams" +msgstr "" + #: ../src/gui/login.cpp:49 msgid "Login" msgstr "登录" @@ -660,12 +667,7 @@ msgstr "快捷键" msgid "Setup" msgstr "设置" -#: ../src/gui/minimap.cpp:39 -#, fuzzy -msgid "Map" -msgstr "小地图" - -#: ../src/gui/minimap.cpp:43 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "小地图" @@ -728,7 +730,7 @@ msgid "@@talk|Talk To NPC@@" msgstr "@@谈话|和NPC谈话@@" #: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:309 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@取消|取消@@" @@ -737,29 +739,34 @@ msgstr "@@取消|取消@@" msgid "@@pickup|Pick Up %s@@" msgstr "@@捡起|捡起%s@@" -#: ../src/gui/popupmenu.cpp:298 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "@@使用|卸载@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@使用|装备@@" -#: ../src/gui/popupmenu.cpp:303 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@使用|使用@@" -#: ../src/gui/popupmenu.cpp:305 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@丢弃|丢弃@@" -#: ../src/gui/popupmenu.cpp:306 +#: ../src/gui/popupmenu.cpp:300 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/popupmenu.cpp:307 -msgid "@@description|Description@@" -msgstr "@@描述|描述@@" +#: ../src/gui/recorder.h:41 +#, fuzzy +msgid "Recording..." +msgstr "连接中..." + +#: ../src/gui/recorder.h:42 +msgid "Stop recording" +msgstr "" #: ../src/gui/register.cpp:82 msgid "Confirm:" @@ -819,12 +826,11 @@ msgstr "音效声量" msgid "Music volume" msgstr "音乐声量" -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:116 +#: ../src/gui/setup.cpp:60 msgid "Apply" msgstr "应用" -#. Disable this button when the windows aren't created yet -#: ../src/gui/setup.cpp:60 ../src/gui/setup.cpp:71 ../src/gui/setup.cpp:126 +#: ../src/gui/setup.cpp:60 msgid "Reset Windows" msgstr "重置窗口" @@ -1129,6 +1135,23 @@ msgstr "职业:%d" msgid "Money: %d GP" msgstr "金钱:%d 金币" +#: ../src/gui/status.cpp:53 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:61 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:65 +#, fuzzy +msgid "Job:" +msgstr "职业:%d" + #. ---------------------- #. Stats Part #. ---------------------- @@ -1638,45 +1661,45 @@ msgstr "" msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:394 +#: ../src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:399 +#: ../src/game.cpp:395 #, fuzzy msgid "Saving screenshot failed!" msgstr "原地休息失败!" -#: ../src/game.cpp:400 +#: ../src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:475 +#: ../src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:476 +#: ../src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:539 +#: ../src/game.cpp:535 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:546 +#: ../src/game.cpp:542 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:641 +#: ../src/game.cpp:637 #, fuzzy msgid "Are you sure you want to quit?" msgstr "你确定想删除这个角色?" -#: ../src/game.cpp:648 +#: ../src/game.cpp:644 msgid "no" msgstr "" -#: ../src/game.cpp:788 +#: ../src/game.cpp:784 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" @@ -2017,6 +2040,20 @@ msgstr "未知命令" msgid "Type /help party for a list of options." msgstr "输入 /help 获取指令列表。" +#, fuzzy +#~ msgid "Weight: %d g / %d g" +#~ msgstr "负重:%d / %d" + +#~ msgid "Slots used: %d / %d" +#~ msgstr "已使用槽: %d / %d" + +#, fuzzy +#~ msgid "Map" +#~ msgstr "小地图" + +#~ msgid "@@description|Description@@" +#~ msgstr "@@描述|描述@@" + #~ msgid "Remember Username" #~ msgstr "保存用户名" -- cgit v1.2.3-60-g2f50 From dae13b61cfb64fe5c6a724e2fbbf597846e126d2 Mon Sep 17 00:00:00 2001 From: Philipp Sehmisch Date: Wed, 28 Jan 2009 20:40:34 +0100 Subject: Made translations and music optional components when installing on windows. --- packaging/windows/setup.nsi | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi index 629bcf85..731994b8 100644 --- a/packaging/windows/setup.nsi +++ b/packaging/windows/setup.nsi @@ -43,6 +43,8 @@ SetCompressor /SOLID lzma !insertmacro MUI_PAGE_LICENSE "${SRCDIR}\COPYING" ; Directory page !insertmacro MUI_PAGE_DIRECTORY +; Components page +!insertmacro MUI_PAGE_COMPONENTS ; Instfiles page !insertmacro MUI_PAGE_INSTFILES ; Finish page @@ -152,11 +154,9 @@ Section "Core files (required)" SecCore CreateDirectory "$INSTDIR\data\graphics" CreateDirectory "$INSTDIR\data\help" CreateDirectory "$INSTDIR\data\icons" - CreateDirectory "$INSTDIR\data\music" CreateDirectory "$INSTDIR\data\graphics\gui" CreateDirectory "$INSTDIR\data\graphics\images" CreateDirectory "$INSTDIR\docs" - CreateDirectory "$INSTDIR\po" SetOverwrite ifnewer SetOutPath "$INSTDIR" @@ -178,16 +178,31 @@ Section "Core files (required)" SecCore File "${SRCDIR}\data\help\*.txt" SetOutPath "$INSTDIR\data\icons\" File "${SRCDIR}\data\icons\aethyra.ico" - SetOutPath "$INSTDIR\data\music" - File /nonfatal "${SRCDIR}\data\music\*.ogg" SetOutPath "$INSTDIR\docs" File "${SRCDIR}\docs\FAQ.txt" - SetOutPath "$INSTDIR\po" - File "${SRCDIR}\po\aethyra.pot" - File "${SRCDIR}\po\LINGUAS" - File "${SRCDIR}\po\*.po" SectionEnd +Section "Music" SecMusic + CreateDirectory "$INSTDIR\data\music" + SetOutPath "$INSTDIR\data\music" + File /nonfatal "${SRCDIR}\data\music\*.ogg" +SectionEnd + +Section "Translations" SecTrans + CreateDirectory "$INSTDIR\translations" + SetOutPath "$INSTDIR\translations" + File /nonfatal /r "${SRCDIR}\translations" +SectionEnd + +;Package descriptions +!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN + !insertmacro MUI_DESCRIPTION_TEXT ${SecCore} "The core program files." + !insertmacro MUI_DESCRIPTION_TEXT ${SecMusic} "Background music." + !insertmacro MUI_DESCRIPTION_TEXT ${SecTrans} "Translations for the user interface into 23 different languages. Uncheck this component to leave it in English." +!insertmacro MUI_FUNCTION_DESCRIPTION_END + + + Section -AdditionalIcons WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}" CreateShortCut "$SMPROGRAMS\Aethyra\Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url" -- cgit v1.2.3-60-g2f50 From 8b71ee703caa6bf289f25d8c7118636592771412 Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Tue, 27 Jan 2009 21:24:13 +0100 Subject: Another file added to the ignore list --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 6cddf3cf..4ea99bae 100644 --- a/.gitignore +++ b/.gitignore @@ -27,6 +27,7 @@ Makefile config.h config.log config.status +config.status.lineno po/POTFILES .deps stamp-h1 -- cgit v1.2.3-60-g2f50 From 487b7237a730469fc4f8a501a93f78c2bbafad51 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 28 Jan 2009 13:43:46 -0700 Subject: Removed manual trimmings in exchange for using trim.h instead. Signed-off-by: Ira Rice --- src/being.cpp | 12 +++--------- src/resources/itemdb.cpp | 10 ++-------- 2 files changed, 5 insertions(+), 17 deletions(-) diff --git a/src/being.cpp b/src/being.cpp index 985be69c..9de03502 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -46,7 +46,8 @@ #include "utils/dtor.h" #include "utils/gettext.h" -#include "utils/tostring.h" +#include "utils/tostring.h" +#include "utils/trim.h" #include "utils/xml.h" int Being::instances = 0; @@ -176,14 +177,7 @@ void Being::setSpeech(const std::string &text, Uint32 time) mSpeech = text; // Trim whitespace - while (mSpeech[0] == ' ') - { - mSpeech = mSpeech.substr(1, mSpeech.size()); - } - while (mSpeech[mSpeech.size()] == ' ') - { - mSpeech = mSpeech.substr(0, mSpeech.size() - 1); - } + trim(mSpeech); // check for links std::string::size_type start = mSpeech.find('['); diff --git a/src/resources/itemdb.cpp b/src/resources/itemdb.cpp index 773febd7..384efdf1 100644 --- a/src/resources/itemdb.cpp +++ b/src/resources/itemdb.cpp @@ -31,6 +31,7 @@ #include "../utils/dtor.h" #include "../utils/gettext.h" +#include "../utils/trim.h" #include "../utils/xml.h" namespace @@ -125,14 +126,7 @@ void ItemDB::load() if (itr == mNamedItemInfos.end()) { std::string temp = name; - while (temp[0] == ' ') - { - temp = temp.substr(1, temp.size()); - } - while (temp[temp.size()] == ' ') - { - temp = temp.substr(0, temp.size() - 1); - } + trim(temp); for (unsigned int i = 0; i < temp.size(); i++) { -- cgit v1.2.3-60-g2f50 From 1ca8d08b7619e1958371ce8d82e201b82ae39e32 Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Wed, 28 Jan 2009 15:16:12 +0000 Subject: Fix handling of packet 0x81 --- src/net/charserverhandler.cpp | 51 ++++++++++++++++++++++++------------------- src/net/loginhandler.cpp | 34 ++++++++++++++++++++++++----- src/net/maploginhandler.cpp | 26 +++++++++++++++++----- src/net/protocol.h | 1 + 4 files changed, 79 insertions(+), 33 deletions(-) diff --git a/src/net/charserverhandler.cpp b/src/net/charserverhandler.cpp index 909100e5..b91a506a 100644 --- a/src/net/charserverhandler.cpp +++ b/src/net/charserverhandler.cpp @@ -43,6 +43,7 @@ CharServerHandler::CharServerHandler(): mCharCreateDialog(0) { static const Uint16 _messages[] = { + SMSG_CONNECTION_PROBLEM, 0x006b, 0x006c, 0x006d, @@ -50,7 +51,6 @@ CharServerHandler::CharServerHandler(): 0x006f, 0x0070, 0x0071, - 0x0081, 0 }; handledMessages = _messages; @@ -58,14 +58,40 @@ CharServerHandler::CharServerHandler(): void CharServerHandler::handleMessage(MessageIn *msg) { - int slot; - int flags; + int slot, flags, code; LocalPlayer *tempPlayer; logger->log("CharServerHandler: Packet ID: %x, Length: %d", msg->getId(), msg->getLength()); switch (msg->getId()) { + case SMSG_CONNECTION_PROBLEM: + code = msg->readInt8(); + logger->log("Connection problem: %i", code); + + switch (code) { + case 0: + errorMessage = "Authentication failed"; + break; + case 1: + errorMessage = "Map server(s) offline"; + break; + case 2: + errorMessage = "This account is already logged in"; + break; + case 3: + errorMessage = "Speed hack detected"; + break; + case 8: + errorMessage = "Duplicated login"; + break; + default: + errorMessage = "Unknown connection error"; + break; + } + state = ERROR_STATE; + break; + case 0x006b: msg->skip(2); // Length word flags = msg->readInt32(); // Aethyra extensions flags @@ -165,25 +191,6 @@ void CharServerHandler::handleMessage(MessageIn *msg) mCharInfo->select(slot); state = CONNECTING_STATE; break; - - case 0x0081: - switch (msg->readInt8()) { - case 1: - errorMessage = "Map server offline"; - break; - case 3: - errorMessage = "Speed hack detected"; - break; - case 8: - errorMessage = "Duplicated login"; - break; - default: - errorMessage = "Unknown error with 0x0081"; - break; - } - mCharInfo->unlock(); - state = ERROR_STATE; - break; } } diff --git a/src/net/loginhandler.cpp b/src/net/loginhandler.cpp index f240618d..db601214 100644 --- a/src/net/loginhandler.cpp +++ b/src/net/loginhandler.cpp @@ -34,7 +34,8 @@ extern SERVER_INFO **server_info; LoginHandler::LoginHandler() { static const Uint16 _messages[] = { - 0x0063, + SMSG_CONNECTION_PROBLEM, + SMSG_UPDATE_HOST, 0x0069, 0x006a, 0 @@ -44,9 +45,32 @@ LoginHandler::LoginHandler() void LoginHandler::handleMessage(MessageIn *msg) { + int code; + switch (msg->getId()) { - case 0x0063: + case SMSG_CONNECTION_PROBLEM: + code = msg->readInt8(); + logger->log("Connection problem: %i", code); + + switch (code) { + case 0: + errorMessage = "Authentication failed"; + break; + case 1: + errorMessage = "No servers available"; + break; + case 2: + errorMessage = "This account is already logged in"; + break; + default: + errorMessage = "Unknown connection error"; + break; + } + state = ERROR_STATE; + break; + + case SMSG_UPDATE_HOST: int len; len = msg->readInt16() - 4; @@ -90,10 +114,10 @@ void LoginHandler::handleMessage(MessageIn *msg) break; case 0x006a: - int loginError = msg->readInt8(); - logger->log("Login::error code: %i", loginError); + code = msg->readInt8(); + logger->log("Login::error code: %i", code); - switch (loginError) { + switch (code) { case 0: errorMessage = "Unregistered ID"; break; diff --git a/src/net/maploginhandler.cpp b/src/net/maploginhandler.cpp index 1b0919fa..b851117e 100644 --- a/src/net/maploginhandler.cpp +++ b/src/net/maploginhandler.cpp @@ -30,8 +30,8 @@ MapLoginHandler::MapLoginHandler() { static const Uint16 _messages[] = { + SMSG_CONNECTION_PROBLEM, SMSG_LOGIN_SUCCESS, - 0x0081, 0 }; handledMessages = _messages; @@ -39,10 +39,29 @@ MapLoginHandler::MapLoginHandler() void MapLoginHandler::handleMessage(MessageIn *msg) { + int code; unsigned char direction; switch (msg->getId()) { + case SMSG_CONNECTION_PROBLEM: + code = msg->readInt8(); + logger->log("Connection problem: %i", code); + + switch (code) { + case 0: + errorMessage = "Authentication failed"; + break; + case 2: + errorMessage = "This account is already logged in"; + break; + default: + errorMessage = "Unknown connection error"; + break; + } + state = ERROR_STATE; + break; + case SMSG_LOGIN_SUCCESS: msg->readInt32(); // server tick msg->readCoordinates(player_node->mX, player_node->mY, direction); @@ -51,10 +70,5 @@ void MapLoginHandler::handleMessage(MessageIn *msg) player_node->mX, player_node->mY, direction); state = GAME_STATE; break; - - case 0x0081: - logger->log("Warning: Map server D/C"); - state = ERROR_STATE; - break; } } diff --git a/src/net/protocol.h b/src/net/protocol.h index fd08c45d..e9053451 100644 --- a/src/net/protocol.h +++ b/src/net/protocol.h @@ -27,6 +27,7 @@ *********************************/ #define SMSG_LOGIN_SUCCESS 0x0073 /**< Contains starting location */ #define SMSG_SERVER_PING 0x007f /**< Contains server tick */ +#define SMSG_CONNECTION_PROBLEM 0x0081 #define SMSG_UPDATE_HOST 0x0063 /**< Custom update host packet */ #define SMSG_PLAYER_UPDATE_1 0x01d8 #define SMSG_PLAYER_UPDATE_2 0x01d9 -- cgit v1.2.3-60-g2f50 From 4418d3678337276070e6d46d8011ce052be388a5 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 28 Jan 2009 16:58:56 -0700 Subject: Moved NPC text back to using the textbox. Rationale is that the textbox code is in much better shape than the browserbox code at the moment, and that the move to using the browserbox was a bit silly, as textbox already wraps. Signed-off-by: Ira Rice --- src/gui/npc_text.cpp | 40 +++++++++++++++++++++++++++------------- src/gui/npc_text.h | 13 +++++++++++-- 2 files changed, 38 insertions(+), 15 deletions(-) diff --git a/src/gui/npc_text.cpp b/src/gui/npc_text.cpp index a2e043d1..b2256f07 100644 --- a/src/gui/npc_text.cpp +++ b/src/gui/npc_text.cpp @@ -22,9 +22,9 @@ #include #include "npc_text.h" -#include "browserbox.h" #include "button.h" #include "scrollarea.h" +#include "textbox.h" #include "widgets/layout.h" @@ -42,10 +42,11 @@ NpcTextDialog::NpcTextDialog(): setDefaultSize(0, 0, 260, 200); - mBrowserBox = new BrowserBox(BrowserBox::AUTO_WRAP); - mBrowserBox->setOpaque(false); + mTextBox = new TextBox; + mTextBox->setEditable(false); + mTextBox->setOpaque(false); - scrollArea = new ScrollArea(mBrowserBox); + scrollArea = new ScrollArea(mTextBox); okButton = new Button(_("OK"), "ok", this); scrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); @@ -61,30 +62,43 @@ NpcTextDialog::NpcTextDialog(): setLocationRelativeTo(getParent()); } -void NpcTextDialog::clearText() -{ - mBrowserBox->clearRows(); -} - void NpcTextDialog::setText(const std::string &text) { - mBrowserBox->clearRows(); - mBrowserBox->addRow(text); + const gcn::Rectangle &area = getChildrenArea(); + const int width = area.width; + + mText = text; + mTextBox->setMinWidth(width - 30); + mTextBox->setTextWrapped(mText); } void NpcTextDialog::addText(const std::string &text) { - mBrowserBox->addRow(text); + setText(mText + text + "\n"); } void NpcTextDialog::action(const gcn::ActionEvent &event) { if (event.getId() == "ok") { - clearText(); + setText(""); setVisible(false); if (current_npc) current_npc->nextDialog(); current_npc = 0; } } + +void NpcTextDialog::widgetResized(const gcn::Event &event) +{ + Window::widgetResized(event); + + const gcn::Rectangle &area = getChildrenArea(); + + mTextBox->setMinWidth(area.width - 30); + mTextBox->setTextWrapped(mText); + + // Set the text again so that it gets wrapped according to the new size + mTextBox->setTextWrapped(mText); +} + diff --git a/src/gui/npc_text.h b/src/gui/npc_text.h index b4b6f1af..4e0d33aa 100644 --- a/src/gui/npc_text.h +++ b/src/gui/npc_text.h @@ -29,7 +29,7 @@ #include "scrollarea.h" #include "window.h" -class BrowserBox; +class TextBox; /** * The npc text dialog. @@ -71,10 +71,19 @@ class NpcTextDialog : public Window, public gcn::ActionListener */ void addText(const std::string &string); + /** + * Called when resizing the window. + * + * @param event The calling event + */ + void widgetResized(const gcn::Event &event); + private: gcn::Button *okButton; gcn::ScrollArea *scrollArea; - BrowserBox *mBrowserBox; + TextBox *mTextBox; + + std::string mText; }; #endif // NPC_TEXT_H -- cgit v1.2.3-60-g2f50 From 129245a8063f09775930b0ffff11f043c219c277 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 28 Jan 2009 18:03:14 -0700 Subject: Consolidated setMinWidth into textWrap, since all lines are dependant upon knowing what dimension they have to wrap to or beat in order for text wrapping to work. By adding this to be initiated at the same time as the text wrapping is done, this should decrease visual artifacts caused by not initializing it properly to begin with. Also made the item popups compact to the minimum dimension. Signed-off-by: Ira Rice --- src/gui/confirm_dialog.cpp | 6 +++--- src/gui/itempopup.cpp | 41 ++++++++++++++++++++--------------------- src/gui/npc_text.cpp | 14 ++------------ src/gui/ok_dialog.cpp | 3 +-- src/gui/speechbubble.cpp | 5 +---- src/gui/textbox.cpp | 6 +++++- src/gui/textbox.h | 7 +------ 7 files changed, 33 insertions(+), 49 deletions(-) diff --git a/src/gui/confirm_dialog.cpp b/src/gui/confirm_dialog.cpp index 569fd93f..643d5d7a 100644 --- a/src/gui/confirm_dialog.cpp +++ b/src/gui/confirm_dialog.cpp @@ -41,8 +41,7 @@ ConfirmDialog::ConfirmDialog(const std::string &title, const std::string &msg, mTextArea->setVerticalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); mTextArea->setOpaque(false); - mTextBox->setMinWidth(260); - mTextBox->setTextWrapped(msg); + mTextBox->setTextWrapped(msg, 260); int numRows = mTextBox->getNumberOfRows(); int width = getFont()->getWidth(title); @@ -77,7 +76,8 @@ ConfirmDialog::ConfirmDialog(const std::string &title, const std::string &msg, add(yesButton); add(noButton); - if (getParent()) { + if (getParent()) + { setLocationRelativeTo(getParent()); getParent()->moveToTop(this); } diff --git a/src/gui/itempopup.cpp b/src/gui/itempopup.cpp index 8235d640..1256275d 100644 --- a/src/gui/itempopup.cpp +++ b/src/gui/itempopup.cpp @@ -55,8 +55,6 @@ ItemPopup::ItemPopup(): // Item Description mItemDesc = new TextBox(); mItemDesc->setEditable(false); - mItemDesc->setMinWidth(186); - mItemDesc->setTextWrapped(""); mItemDescScroll = new ScrollArea(mItemDesc); mItemDescScroll->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); @@ -68,8 +66,6 @@ ItemPopup::ItemPopup(): // Item Effect mItemEffect = new TextBox(); mItemEffect->setEditable(false); - mItemEffect->setMinWidth(186); - mItemEffect->setTextWrapped(""); mItemEffectScroll = new ScrollArea(mItemEffect); mItemEffectScroll->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); @@ -81,8 +77,6 @@ ItemPopup::ItemPopup(): // Item Weight mItemWeight = new TextBox(); mItemWeight->setEditable(false); - mItemWeight->setMinWidth(186); - mItemWeight->setTextWrapped(""); mItemWeightScroll = new ScrollArea(mItemWeight); mItemWeightScroll->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); @@ -104,35 +98,40 @@ ItemPopup::ItemPopup(): void ItemPopup::setItem(const ItemInfo &item) { - const gcn::Rectangle &area = getChildrenArea(); - const int width = area.width; - - mItemDesc->setMinWidth(width - 10); - mItemEffect->setMinWidth(width - 10); - mItemWeight->setMinWidth(width - 10); - mItemName->setCaption(item.getName()); - mItemDesc->setTextWrapped(item.getDescription()); - mItemEffect->setTextWrapped(item.getEffect()); + mItemDesc->setTextWrapped(item.getDescription(), 196); + mItemEffect->setTextWrapped(item.getEffect(), 196); mItemWeight->setTextWrapped(_("Weight: ") + toString(item.getWeight()) + - _(" grams")); + _(" grams"), 196); + + int minWidth = mItemName->getWidth(); + + if (mItemDesc->getMinWidth() > minWidth) + minWidth = mItemDesc->getMinWidth(); + if (mItemEffect->getMinWidth() > minWidth) + minWidth = mItemEffect->getMinWidth(); + if (mItemWeight->getMinWidth() > minWidth) + minWidth = mItemWeight->getMinWidth(); + + minWidth += 8; + setWidth(minWidth); int numRowsDesc = mItemDesc->getNumberOfRows(); int numRowsEffect = mItemEffect->getNumberOfRows(); int numRowsWeight = mItemWeight->getNumberOfRows(); - mItemDescScroll->setDimension(gcn::Rectangle(2, 0, 196, + mItemDescScroll->setDimension(gcn::Rectangle(2, 0, minWidth, numRowsDesc * getFont()->getHeight())); - mItemEffectScroll->setDimension(gcn::Rectangle(2, 0, 196, + mItemEffectScroll->setDimension(gcn::Rectangle(2, 0, minWidth, numRowsEffect * getFont()->getHeight())); - mItemWeightScroll->setDimension(gcn::Rectangle(2, 0, 196, + mItemWeightScroll->setDimension(gcn::Rectangle(2, 0, minWidth, numRowsWeight * getFont()->getHeight())); if(item.getEffect() == "") { - setContentSize(200, (numRowsDesc * getFont()->getHeight() + + setContentSize(minWidth, (numRowsDesc * getFont()->getHeight() + (3 * getFont()->getHeight()))); mItemWeightScroll->setPosition(2, @@ -141,7 +140,7 @@ void ItemPopup::setItem(const ItemInfo &item) } else { - setContentSize(200, (numRowsDesc * getFont()->getHeight()) + + setContentSize(minWidth, (numRowsDesc * getFont()->getHeight()) + (numRowsEffect * getFont()->getHeight()) + (3 * getFont()->getHeight())); diff --git a/src/gui/npc_text.cpp b/src/gui/npc_text.cpp index b2256f07..1e29b793 100644 --- a/src/gui/npc_text.cpp +++ b/src/gui/npc_text.cpp @@ -64,12 +64,8 @@ NpcTextDialog::NpcTextDialog(): void NpcTextDialog::setText(const std::string &text) { - const gcn::Rectangle &area = getChildrenArea(); - const int width = area.width; - mText = text; - mTextBox->setMinWidth(width - 30); - mTextBox->setTextWrapped(mText); + mTextBox->setTextWrapped(mText, scrollArea->getWidth() - 15); } void NpcTextDialog::addText(const std::string &text) @@ -93,12 +89,6 @@ void NpcTextDialog::widgetResized(const gcn::Event &event) { Window::widgetResized(event); - const gcn::Rectangle &area = getChildrenArea(); - - mTextBox->setMinWidth(area.width - 30); - mTextBox->setTextWrapped(mText); - - // Set the text again so that it gets wrapped according to the new size - mTextBox->setTextWrapped(mText); + setText(mText); } diff --git a/src/gui/ok_dialog.cpp b/src/gui/ok_dialog.cpp index dc66a900..7f63b152 100644 --- a/src/gui/ok_dialog.cpp +++ b/src/gui/ok_dialog.cpp @@ -40,8 +40,7 @@ OkDialog::OkDialog(const std::string &title, const std::string &msg, mTextArea->setVerticalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); mTextArea->setOpaque(false); - mTextBox->setMinWidth(260); - mTextBox->setTextWrapped(msg); + mTextBox->setTextWrapped(msg, 260); int numRows = mTextBox->getNumberOfRows(); diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp index a6bb5563..7eedce1c 100644 --- a/src/gui/speechbubble.cpp +++ b/src/gui/speechbubble.cpp @@ -65,8 +65,6 @@ SpeechBubble::SpeechBubble(): // LEEOR / TODO: This causes an exception error. //moveToBottom(getParent()); - - mSpeechBox->setTextWrapped( "" ); } void SpeechBubble::setCaption(const std::string &name, const gcn::Color &color) @@ -78,8 +76,7 @@ void SpeechBubble::setCaption(const std::string &name, const gcn::Color &color) void SpeechBubble::setText(std::string mText) { - mSpeechBox->setMinWidth(140); - mSpeechBox->setTextWrapped(mText); + mSpeechBox->setTextWrapped(mText, 130); const int fontHeight = getFont()->getHeight(); const int numRows = mSpeechBox->getNumberOfRows() + 1; diff --git a/src/gui/textbox.cpp b/src/gui/textbox.cpp index ee03c79d..fb5a39e6 100644 --- a/src/gui/textbox.cpp +++ b/src/gui/textbox.cpp @@ -31,9 +31,10 @@ TextBox::TextBox(): { setOpaque(false); setFrameSize(0); + mMinWidth = getWidth(); } -void TextBox::setTextWrapped(const std::string &text) +void TextBox::setTextWrapped(const std::string &text, int minDimension) { // Make sure parent scroll area sets width of this widget if (getParent()) @@ -41,6 +42,9 @@ void TextBox::setTextWrapped(const std::string &text) getParent()->logic(); } + // Take the supplied minimum dimension as a starting point and try to beat it + mMinWidth = minDimension; + std::stringstream wrappedStream; std::string::size_type newlinePos, lastNewlinePos = 0; int minWidth = 0; diff --git a/src/gui/textbox.h b/src/gui/textbox.h index 98b60402..84dd6268 100644 --- a/src/gui/textbox.h +++ b/src/gui/textbox.h @@ -43,18 +43,13 @@ class TextBox : public gcn::TextBox { /** * Sets the text after wrapping it to the current width of the widget. */ - void setTextWrapped(const std::string &text); + void setTextWrapped(const std::string &text, int minDimension); /** * Get the minimum text width for the text box. */ int getMinWidth() { return mMinWidth; } - /** - * Set the minimum text width for the text box. - */ - void setMinWidth(int width) { mMinWidth = width; } - private: int mMinWidth; }; -- cgit v1.2.3-60-g2f50 From 7a99b87f6f5e42072fa268876795289ab75a271e Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 28 Jan 2009 19:14:41 -0700 Subject: Finally put in the last missing wrapping case that has been missing from the textbox class. Should now always choose the most ideal text wrap possible. Signed-off-by: Ira Rice --- src/gui/textbox.cpp | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/src/gui/textbox.cpp b/src/gui/textbox.cpp index fb5a39e6..98096112 100644 --- a/src/gui/textbox.cpp +++ b/src/gui/textbox.cpp @@ -92,9 +92,8 @@ void TextBox::setTextWrapped(const std::string &text, int minDimension) else { if (xpos > minWidth) - { minWidth = xpos; - } + // The window wasn't big enough. Resize it and try again. if (minWidth > mMinWidth) { @@ -120,17 +119,37 @@ void TextBox::setTextWrapped(const std::string &text, int minDimension) while (spacePos != line.size()); if (text.find("\n", lastNewlinePos) != std::string::npos) - { wrappedStream << "\n"; - } + lastNewlinePos = newlinePos + 1; + + // Is the last line we're trying to text wrap longer than the minimum + // width we're trying to beat in the first place? If so, then rewrap + // using that length. + if (newlinePos == text.size()) + { + spacePos = text.rfind(" ", text.size()); + const std::string word = line.substr(spacePos + 1); + const int length = getFont()->getWidth(word); + + if ((length > xpos || length > minWidth) && mMinWidth != length) + { + mMinWidth = length; + wrappedStream.clear(); + wrappedStream.str(""); + spacePos = 0; + lastNewlinePos = 0; + newlinePos = text.find("\n", lastNewlinePos); + line = text.substr(lastNewlinePos, newlinePos - + lastNewlinePos); + } + } } while (newlinePos != text.size()); if (xpos > minWidth) - { minWidth = xpos; - } + mMinWidth = minWidth; gcn::TextBox::setText(wrappedStream.str()); -- cgit v1.2.3-60-g2f50 From 63886946dceb5e3a4345810d35327e9767cba913 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 28 Jan 2009 19:19:25 -0700 Subject: Fix for a mistake in one of the logicc statements in the last commit. Signed-off-by: Ira Rice --- src/gui/textbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/textbox.cpp b/src/gui/textbox.cpp index 98096112..b36897d6 100644 --- a/src/gui/textbox.cpp +++ b/src/gui/textbox.cpp @@ -132,7 +132,7 @@ void TextBox::setTextWrapped(const std::string &text, int minDimension) const std::string word = line.substr(spacePos + 1); const int length = getFont()->getWidth(word); - if ((length > xpos || length > minWidth) && mMinWidth != length) + if ((length > xpos || length > minWidth) && length > mMinWidth) { mMinWidth = length; wrappedStream.clear(); -- cgit v1.2.3-60-g2f50 From 0e2a2f39a2137ea1caae96256431c7d35fc2e6ec Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 28 Jan 2009 20:31:36 -0700 Subject: Fixed a slight error in item name widths. Signed-off-by: Ira Rice --- src/gui/itempopup.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/gui/itempopup.cpp b/src/gui/itempopup.cpp index 1256275d..402f9e05 100644 --- a/src/gui/itempopup.cpp +++ b/src/gui/itempopup.cpp @@ -47,10 +47,8 @@ ItemPopup::ItemPopup(): // Item Name mItemName = new gcn::Label("Label"); - mItemName->setFont(gui->getFont()); - mItemName->setPosition(2, 2); - mItemName->setWidth(getWidth() - 4); mItemName->setFont(boldFont); + mItemName->setPosition(2, 2); // Item Description mItemDesc = new TextBox(); @@ -99,6 +97,7 @@ ItemPopup::ItemPopup(): void ItemPopup::setItem(const ItemInfo &item) { mItemName->setCaption(item.getName()); + mItemName->setWidth(boldFont->getWidth(item.getName())); mItemDesc->setTextWrapped(item.getDescription(), 196); mItemEffect->setTextWrapped(item.getEffect(), 196); mItemWeight->setTextWrapped(_("Weight: ") + toString(item.getWeight()) + -- cgit v1.2.3-60-g2f50 From 5a3c174a53ed90224dc4fc49744c656eb9d358fa Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 28 Jan 2009 23:41:36 -0700 Subject: Added coloring of item names by type. TODO: Allow this to be customizable through the color interface so that if someone is colorblind to a certain color and it doesn't show up well, they can change it (or even people who just don't like the default color). Signed-off-by: Ira Rice --- src/gui/itempopup.cpp | 35 +++++++++++++++++++++++++++++++++++ src/gui/itempopup.h | 3 +++ src/resources/itemdb.cpp | 4 ++-- src/resources/iteminfo.h | 12 +++++------- 4 files changed, 45 insertions(+), 9 deletions(-) diff --git a/src/gui/itempopup.cpp b/src/gui/itempopup.cpp index 402f9e05..9b84b39e 100644 --- a/src/gui/itempopup.cpp +++ b/src/gui/itempopup.cpp @@ -97,6 +97,7 @@ ItemPopup::ItemPopup(): void ItemPopup::setItem(const ItemInfo &item) { mItemName->setCaption(item.getName()); + mItemName->setForegroundColor(getColor(item.getType())); mItemName->setWidth(boldFont->getWidth(item.getName())); mItemDesc->setTextWrapped(item.getDescription(), 196); mItemEffect->setTextWrapped(item.getEffect(), 196); @@ -154,6 +155,40 @@ void ItemPopup::setItem(const ItemInfo &item) (2 * getFont()->getHeight())); } +gcn::Color ItemPopup::getColor(const std::string& type) +{ + gcn::Color color; + + if (type.compare("generic") == 0) + color = 0x21a5b1; + else if (type.compare("equip-head") == 0) + color = 0x527fa4; + else if (type.compare("usable") == 0) + color = 0x268d24; + else if (type.compare("equip-torso") == 0) + color = 0xd12aa4; + else if (type.compare("equip-1hand") == 0) + color = 0xf42a2a; + else if (type.compare("equip-legs") == 0) + color = 0x718218; + else if (type.compare("equip-feet") == 0) + color = 0xf44ca5; + else if (type.compare("equip-2hand") == 0) + color = 0xf46d0e; + else if (type.compare("equip-shield") == 0) + color = 0x9c2424; + else if (type.compare("equip-ring") == 0) + color = 0xf4ea17; + else if (type.compare("equip-arms") == 0) + color = 0x9c24e8; + else if (type.compare("equip-ammo") == 0) + color = 0xbe8717; + else + color = 0x000000; + + return color; +} + unsigned int ItemPopup::getNumRows() { return mItemDesc->getNumberOfRows() + mItemEffect->getNumberOfRows() + diff --git a/src/gui/itempopup.h b/src/gui/itempopup.h index 0c729231..3c8f575d 100644 --- a/src/gui/itempopup.h +++ b/src/gui/itempopup.h @@ -27,6 +27,7 @@ #include "textbox.h" #include "window.h" +#include "../guichanfwd.h" #include "../item.h" class ItemPopup : public Window @@ -46,6 +47,8 @@ class ItemPopup : public Window ScrollArea *mItemDescScroll; ScrollArea *mItemEffectScroll; ScrollArea *mItemWeightScroll; + + gcn::Color getColor(const std::string& type); }; #endif // ITEMPOPUP_H__ diff --git a/src/resources/itemdb.cpp b/src/resources/itemdb.cpp index 384efdf1..752ea38b 100644 --- a/src/resources/itemdb.cpp +++ b/src/resources/itemdb.cpp @@ -84,7 +84,7 @@ void ItemDB::load() logger->log(_("ItemDB: Redefinition of item ID %d"), id); } - int type = XML::getProperty(node, "type", 0); + std::string type = XML::getProperty(node, "type", "other"); int weight = XML::getProperty(node, "weight", 0); int view = XML::getProperty(node, "view", 0); @@ -152,7 +152,7 @@ void ItemDB::load() CHECK_PARAM(description, ""); // CHECK_PARAM(effect, ""); // CHECK_PARAM(type, 0); - CHECK_PARAM(weight, 0); + // CHECK_PARAM(weight, 0); // CHECK_PARAM(slot, 0); #undef CHECK_PARAM diff --git a/src/resources/iteminfo.h b/src/resources/iteminfo.h index 86725ca2..c03dec28 100644 --- a/src/resources/iteminfo.h +++ b/src/resources/iteminfo.h @@ -47,7 +47,7 @@ class ItemInfo * Constructor. */ ItemInfo(): - mType(0), + mType(""), mWeight(0), mView(0), mAttackType(ACTION_DEFAULT) @@ -81,14 +81,12 @@ class ItemInfo void setEffect(const std::string &effect) { mEffect = effect; } - const std::string& - getEffect() const { return mEffect; } + const std::string& getEffect() const { return mEffect; } - void setType(short type) + void setType(const std::string& type) { mType = type; } - short getType() const - { return mType; } + const std::string& getType() const { return mType; } void setWeight(short weight) { mWeight = weight; } @@ -118,7 +116,7 @@ class ItemInfo std::string mName; std::string mDescription; /**< Short description. */ std::string mEffect; /**< Description of effects. */ - char mType; /**< Item type. */ + std::string mType; /**< Item type. */ short mWeight; /**< Weight in grams. */ int mView; /**< Item ID of how this item looks. */ int mId; /**< Item ID */ -- cgit v1.2.3-60-g2f50 From f9cacf3f34db1ccf3b6aea0d1e58029a89bed78b Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 28 Jan 2009 23:54:56 -0700 Subject: Adjusted a few color defaults to make them easier to see. Signed-off-by: Ira Rice --- src/gui/itempopup.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/itempopup.cpp b/src/gui/itempopup.cpp index 9b84b39e..80edd354 100644 --- a/src/gui/itempopup.cpp +++ b/src/gui/itempopup.cpp @@ -170,19 +170,19 @@ gcn::Color ItemPopup::getColor(const std::string& type) else if (type.compare("equip-1hand") == 0) color = 0xf42a2a; else if (type.compare("equip-legs") == 0) - color = 0x718218; + color = 0x699900; else if (type.compare("equip-feet") == 0) - color = 0xf44ca5; + color = 0xaa1d48; else if (type.compare("equip-2hand") == 0) color = 0xf46d0e; else if (type.compare("equip-shield") == 0) color = 0x9c2424; else if (type.compare("equip-ring") == 0) - color = 0xf4ea17; + color = 0x0000ff; else if (type.compare("equip-arms") == 0) color = 0x9c24e8; else if (type.compare("equip-ammo") == 0) - color = 0xbe8717; + color = 0x8b6311; else color = 0x000000; -- cgit v1.2.3-60-g2f50 From a48b3777b83f9703fb1dbde48bdc6d5f22f66a38 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 29 Jan 2009 00:40:12 -0700 Subject: Fixed a crash caused by getting the wrong string substring. In doing so, the algorithm was optimized further, so that only one correction needs to be done if the last line is the longest. Signed-off-by: Ira Rice --- src/gui/textbox.cpp | 37 +++++++++++++++---------------------- 1 file changed, 15 insertions(+), 22 deletions(-) diff --git a/src/gui/textbox.cpp b/src/gui/textbox.cpp index b36897d6..c04b4262 100644 --- a/src/gui/textbox.cpp +++ b/src/gui/textbox.cpp @@ -65,6 +65,19 @@ void TextBox::setTextWrapped(const std::string &text, int minDimension) std::string::size_type spacePos, lastSpacePos = 0; xpos = 0; + spacePos = text.rfind(" ", text.size()); + if (spacePos == std::string::npos) + { + spacePos = 0; + } + else + { + const std::string word = text.substr(spacePos + 1); + const int length = getFont()->getWidth(word); + + if (length > mMinWidth) + mMinWidth = length; + } do { spacePos = line.find(" ", lastSpacePos); @@ -103,6 +116,8 @@ void TextBox::setTextWrapped(const std::string &text, int minDimension) spacePos = 0; lastNewlinePos = 0; newlinePos = text.find("\n", lastNewlinePos); + if (newlinePos == std::string::npos) + newlinePos = text.size(); line = text.substr(lastNewlinePos, newlinePos - lastNewlinePos); width = 0; @@ -122,28 +137,6 @@ void TextBox::setTextWrapped(const std::string &text, int minDimension) wrappedStream << "\n"; lastNewlinePos = newlinePos + 1; - - // Is the last line we're trying to text wrap longer than the minimum - // width we're trying to beat in the first place? If so, then rewrap - // using that length. - if (newlinePos == text.size()) - { - spacePos = text.rfind(" ", text.size()); - const std::string word = line.substr(spacePos + 1); - const int length = getFont()->getWidth(word); - - if ((length > xpos || length > minWidth) && length > mMinWidth) - { - mMinWidth = length; - wrappedStream.clear(); - wrappedStream.str(""); - spacePos = 0; - lastNewlinePos = 0; - newlinePos = text.find("\n", lastNewlinePos); - line = text.substr(lastNewlinePos, newlinePos - - lastNewlinePos); - } - } } while (newlinePos != text.size()); -- cgit v1.2.3-60-g2f50 From 0a2883b61472c5dbcd419d033bd8792c335dc175 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 29 Jan 2009 00:43:16 -0700 Subject: Removed useless check from the last commit. Signed-off-by: Ira Rice --- src/gui/textbox.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/gui/textbox.cpp b/src/gui/textbox.cpp index c04b4262..e7986244 100644 --- a/src/gui/textbox.cpp +++ b/src/gui/textbox.cpp @@ -66,11 +66,8 @@ void TextBox::setTextWrapped(const std::string &text, int minDimension) xpos = 0; spacePos = text.rfind(" ", text.size()); - if (spacePos == std::string::npos) - { - spacePos = 0; - } - else + + if (spacePos != std::string::npos) { const std::string word = text.substr(spacePos + 1); const int length = getFont()->getWidth(word); @@ -78,6 +75,7 @@ void TextBox::setTextWrapped(const std::string &text, int minDimension) if (length > mMinWidth) mMinWidth = length; } + do { spacePos = line.find(" ", lastSpacePos); -- cgit v1.2.3-60-g2f50 From 68f3b73a82999b8ee8c7937b9da8060af1f3b691 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 29 Jan 2009 08:55:59 -0700 Subject: If an item link isn't found, don't treat it as a link. Signed-off-by: Ira Rice --- src/being.cpp | 3 ++- src/gui/chat.cpp | 20 ++++++++------------ 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/src/being.cpp b/src/being.cpp index 9de03502..e2495bc0 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -193,7 +193,8 @@ void Being::setSpeech(const std::string &text, Uint32 time) } std::string::size_type position = mSpeech.find('|'); - mSpeech.erase(end, 1); + if (mSpeech[start + 1] == '@' && mSpeech[start + 2] == '@') + mSpeech.erase(end, 1); mSpeech.erase(start, (position - start) + 1); position = mSpeech.find('@'); diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 068fad08..d790d292 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -376,14 +376,7 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) std::string temp = msg.substr(start+1, end - start - 1); - while (temp[0] == ' ') - { - temp = temp.substr(1, temp.size()); - } - while (temp[temp.size()] == ' ') - { - temp = temp.substr(0, temp.size() - 1); - } + trim(temp); for (unsigned int i = 0; i < temp.size(); i++) { @@ -391,10 +384,13 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) } const ItemInfo itemInfo = ItemDB::get(temp); - msg.insert(end, "@@"); - msg.insert(start+1, "|"); - msg.insert(start+1, toString(itemInfo.getId())); - msg.insert(start+1, "@@"); + if (itemInfo.getName() != _("Unknown item")) + { + msg.insert(end, "@@"); + msg.insert(start+1, "|"); + msg.insert(start+1, toString(itemInfo.getId())); + msg.insert(start+1, "@@"); + } } start = msg.find('[', start + 1); } -- cgit v1.2.3-60-g2f50 From 0187f66a01fb38f6683f528770a69652af90b35e Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 29 Jan 2009 09:04:02 -0700 Subject: Make sure that strings aren't chopped off when a | isn't found. Signed-off-by: Ira Rice --- src/being.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/being.cpp b/src/being.cpp index e2495bc0..dc36adc2 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -194,8 +194,10 @@ void Being::setSpeech(const std::string &text, Uint32 time) std::string::size_type position = mSpeech.find('|'); if (mSpeech[start + 1] == '@' && mSpeech[start + 2] == '@') + { mSpeech.erase(end, 1); - mSpeech.erase(start, (position - start) + 1); + mSpeech.erase(start, (position - start) + 1); + } position = mSpeech.find('@'); while (position != std::string::npos) -- cgit v1.2.3-60-g2f50 From 59cfd8a03f22f43539d47a55087ad5768e7a330f Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 29 Jan 2009 09:27:45 -0700 Subject: Don't send empty chats (long lines of empty spaces). Signed-off-by: Ira Rice --- src/gui/chat.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index d790d292..3a22581f 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -341,6 +341,11 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) * require server handling by proper packet. Probably * those if elses should be replaced by protocol calls */ + trim(msg); + + if (msg.compare("") == 0) + return; + // Send party message if (msg.at(0) == mPartyPrefix) { -- cgit v1.2.3-60-g2f50 From 33b92ad00cacf5d035a571edb9ff82aa5cd49d4a Mon Sep 17 00:00:00 2001 From: Kess Vargavind Date: Thu, 29 Jan 2009 01:30:13 +0100 Subject: Update Swedish translation. Two (or rather three) msgstrs require the use of "no-c-format". --- po/sv.po | 451 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 219 insertions(+), 232 deletions(-) diff --git a/po/sv.po b/po/sv.po index 1d1ea228..35c6db70 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" -"PO-Revision-Date: 2008-05-07 19:04+0000\n" -"Last-Translator: Kess Vargavind \n" +"POT-Creation-Date: 2009-01-29 13:19-0700\n" +"PO-Revision-Date: 2009-01-29 01:20+0100\n" +"Last-Translator: Kess Vargavind \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,9 +45,8 @@ msgid "Effect: %s" msgstr "Effekt: %s" #: ../src/gui/buysell.cpp:30 -#, fuzzy msgid "Shop" -msgstr "Stopp" +msgstr "Affär" #: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" @@ -65,7 +64,7 @@ msgstr "Avbryt" #: ../src/gui/char_select.cpp:63 msgid "Confirm Character Delete" -msgstr "" +msgstr "Bekräfta borttagning av karaktär" #: ../src/gui/char_select.cpp:64 msgid "Are you sure you want to delete this character?" @@ -95,9 +94,9 @@ msgstr "Nivå: %d" #: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 #: ../src/gui/char_select.cpp:190 -#, fuzzy, c-format +#, c-format msgid "Job Level: %d" -msgstr "Nivå: %d" +msgstr "Jobbnivå: %d" #: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 #, c-format @@ -130,7 +129,7 @@ msgstr "Ok" #: ../src/gui/char_select.cpp:179 #, c-format msgid "Gold: %d" -msgstr "" +msgstr "Guld: %d" #: ../src/gui/char_select.cpp:248 msgid "Create Character" @@ -154,15 +153,14 @@ msgid "Create" msgstr "Skapa" #: ../src/gui/char_server.cpp:51 -#, fuzzy msgid "Select Server" -msgstr "Välj karaktär" +msgstr "Välj server" #: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 #: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:50 msgid "OK" -msgstr "" +msgstr "Ok" #: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 @@ -172,12 +170,12 @@ msgstr "Skapa" #: ../src/gui/chat.cpp:152 msgid "Global announcement: " -msgstr "" +msgstr "Globalt meddelande: " #: ../src/gui/chat.cpp:157 #, c-format msgid "Global announcement from %s: " -msgstr "" +msgstr "Globalt meddelande från %s: " #: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 msgid "Server:" @@ -186,315 +184,321 @@ msgstr "Server:" #: ../src/gui/chat.cpp:333 #, c-format msgid "Whispering to %s: %s" -msgstr "" +msgstr "Viskar till %s: %s" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:357 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 -msgid "Return toggles chat." +#: ../src/gui/chat.cpp:392 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" msgstr "" #: ../src/gui/chat.cpp:486 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:487 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:497 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:505 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:510 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:517 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:563 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 +#: ../src/gui/chat.cpp:566 msgid "The current server doesn't support spells" msgstr "" -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:601 ../src/gui/chat.cpp:606 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:602 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:611 msgid "Unknown command" -msgstr "" +msgstr "Okänt kommando" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:623 msgid "Trade failed!" -msgstr "" +msgstr "Byteshandel misslyckades!" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:626 msgid "Emote failed!" -msgstr "" +msgstr "Kan inte visa smiley!" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:629 msgid "Sit failed!" -msgstr "" +msgstr "Kan inte sitta ned!" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:632 msgid "Chat creating failed!" -msgstr "" +msgstr "Kan inte skicka chattmeddelande!" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:635 msgid "Could not join party!" -msgstr "" +msgstr "Kan inte ansluta till gruppen!" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:638 msgid "Cannot shout!" -msgstr "" +msgstr "Kan inte skrika!" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:647 msgid "You have not yet reached a high enough lvl!" -msgstr "" +msgstr "Du har inte nått en tillräckligt hög nivå än!" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:650 msgid "Insufficient HP!" -msgstr "" +msgstr "Otillräckligt med HP!" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:653 msgid "Insufficient SP!" -msgstr "" +msgstr "Otillräckligt med SP!" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:656 msgid "You have no memos!" -msgstr "" +msgstr "Du har inga anteckningar!" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:659 msgid "You cannot do that right now!" -msgstr "" +msgstr "Du kan inte göra det just nu!" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:662 msgid "Seems you need more Zeny... ;-)" -msgstr "" +msgstr "Verkar som att du behöver mer zeny... ;-)" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:665 msgid "You cannot use this skill with that kind of weapon!" -msgstr "" +msgstr "Det går inte att använda den här förmågan med det där vapenslaget!" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:668 msgid "You need another red gem!" -msgstr "" +msgstr "Du behöver en till röd juvel!" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:671 msgid "You need another blue gem!" -msgstr "" +msgstr "Du behöver en till blå juvel!" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:674 msgid "You're carrying to much to do this!" -msgstr "" +msgstr "Du bär på för mycket för att kunna göra det här!" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:677 msgid "Huh? What's that?" -msgstr "" +msgstr "Öh? Vad är det där?" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:686 msgid "Warp failed..." -msgstr "" +msgstr "Kartförflyttning misslyckades..." -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:689 msgid "Could not steal anything..." -msgstr "" +msgstr "Kunde inte stjäla något..." -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:692 msgid "Poison had no effect..." -msgstr "" +msgstr "Giftet tog inte..." -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:775 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:780 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:786 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:791 #, fuzzy msgid "Changing prefix to " msgstr "Ändrar OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:801 msgid "-- Help --" -msgstr "" +msgstr "-- Hjälp --" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:804 msgid "/announce: Global announcement (GM only)" -msgstr "" +msgstr "/announce: Globalt meddelande (endast GM)" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:805 msgid "/clear: Clears this window" -msgstr "" +msgstr "/clear: Tömmer det här fönstret på text" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:806 msgid "/help: Display this help" -msgstr "" +msgstr "/help: Visar den här hjälptexten" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:808 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:809 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:811 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:813 msgid "/where: Display map name" -msgstr "" +msgstr "/where: Visar namnet på kartan där du befinner dig" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:814 msgid "/w : Short form for /whisper" -msgstr "" +msgstr "/w : Kortare variant av /whisper" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:815 msgid "/whisper : Sends a private to " -msgstr "" +msgstr "/whisper : Skickar ett privat meddelande till en spelare" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:817 msgid "/who: Display number of online users" -msgstr "" +msgstr "/who: Visar antalet inloggade spelare" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:818 msgid "For more information, type /help " -msgstr "" +msgstr "För mer information skriv /help " -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:822 msgid "Command: /announce " -msgstr "" +msgstr "Kommando: /announce " -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:823 msgid "*** only available to a GM ***" -msgstr "" +msgstr "*** endast en GM kan använda det här kommandot ***" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:824 msgid "This command sends the message to all players currently online." msgstr "" +"Det här kommandot skickar meddelandet till alla inloggade spelare." -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:829 msgid "Command: /clear" -msgstr "" +msgstr "Kommando: /clear" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:830 msgid "This command clears the chat log of previous chat." -msgstr "" +msgstr "Det här kommandot tömmer chattloggen." -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:835 msgid "Command: /help" -msgstr "" +msgstr "Kommando: /help" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:836 msgid "This command displays a list of all commands available." -msgstr "" +msgstr "Det här kommandot visar en lista över alla tillgängliga kommandon." -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:838 msgid "Command: /help " -msgstr "" +msgstr "Kommando: /help " -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:839 msgid "This command displays help on ." -msgstr "" +msgstr "Det här kommandot ger mer information om ." -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:847 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:848 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:858 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:859 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:862 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:865 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:866 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:870 msgid "Command: /where" -msgstr "" +msgstr "Kommando: /where" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:871 msgid "This command displays the name of the current map." -msgstr "" +msgstr "Det här kommandot visar namnet på den karta där du befinner dig." -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:876 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:877 msgid "Command: /whisper " -msgstr "" +msgstr "Kommando: /whisper " -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:878 msgid "Command: /w " -msgstr "" +msgstr "Kommando: /w " -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:879 msgid "This command sends the message to ." -msgstr "" +msgstr "Det här kommandot skickar meddelandet till karaktären ." -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:881 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" +"Om innehåller mellanslag, måste du sätta citattecken (\") runt det." -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:886 msgid "Command: /who" -msgstr "" +msgstr "Kommando: /who" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:887 msgid "This command displays the number of players currently online." -msgstr "" +msgstr "Det här kommandot visar antalet spelare som är inloggade just nu." -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:892 msgid "Unknown command." -msgstr "" +msgstr "Okänt kommando." -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:893 msgid "Type /help for a list of commands." -msgstr "" +msgstr "Skriv /help för en lista med kommandon." #: ../src/gui/colour.cpp:33 msgid "GM" @@ -569,11 +573,11 @@ msgstr "Avrusta" #: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 msgid "Help" -msgstr "" +msgstr "Hjälp" #: ../src/gui/help.cpp:43 msgid "Close" -msgstr "" +msgstr "Stäng" #: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 @@ -591,11 +595,11 @@ msgstr "Släpp" #: ../src/gui/inventorywindow.cpp:85 msgid "Slots: " -msgstr "" +msgstr "Utrymme: " -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:104 msgid "Weight: " -msgstr "" +msgstr "Vikt: " #: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." @@ -605,7 +609,7 @@ msgstr "Välj antal föremål att handla med." msgid "Select amount of items to drop." msgstr "Välj antal föremål att släppa." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:105 msgid " grams" msgstr "" @@ -646,7 +650,7 @@ msgstr "Färdigheter" #: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" -msgstr "Genväg" +msgstr "Genvägar" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 #: ../src/gui/setup.cpp:52 ../src/main.cpp:787 @@ -725,9 +729,8 @@ msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Plocka upp %s@@" #: ../src/gui/popupmenu.cpp:292 -#, fuzzy msgid "@@use|Unequip@@" -msgstr "@@use|Utrusta@@" +msgstr "@@use|Avrusta@@" #: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" @@ -760,11 +763,11 @@ msgstr "Bekräfta:" #: ../src/gui/register.cpp:90 msgid "Male" -msgstr "" +msgstr "Man" #: ../src/gui/register.cpp:91 msgid "Female" -msgstr "" +msgstr "Kvinna" #: ../src/gui/register.cpp:159 #, c-format @@ -834,7 +837,7 @@ msgstr "Joystick" #: ../src/gui/setup.cpp:93 msgid "Keyboard" -msgstr "" +msgstr "Tangentbord" #: ../src/gui/setup.cpp:97 msgid "Colors" @@ -842,7 +845,7 @@ msgstr "" #: ../src/gui/setup.cpp:101 msgid "Players" -msgstr "" +msgstr "Spelare" #: ../src/gui/setup_colours.cpp:53 msgid "Red: " @@ -878,45 +881,43 @@ msgstr "Rotera spaken" #: ../src/gui/setup_keyboard.cpp:87 msgid "Assign" -msgstr "" +msgstr "Tilldela" #: ../src/gui/setup_keyboard.cpp:91 -#, fuzzy msgid "Default" -msgstr "Ta bort" +msgstr "Förval" #: ../src/gui/setup_keyboard.cpp:120 msgid "Key Conflict(s) Detected." -msgstr "" +msgstr "Samma tangent används på flera ställen." #: ../src/gui/setup_keyboard.cpp:121 msgid "Resolve them, or gameplay may result in strange behaviour." -msgstr "" +msgstr "Se till att använda olika tangenter, annars kan det bli konstigheter." #: ../src/gui/setup_players.cpp:54 -#, fuzzy msgid "Name" -msgstr "Namn:" +msgstr "Namn" #: ../src/gui/setup_players.cpp:55 msgid "Relation" -msgstr "" +msgstr "Relation" #: ../src/gui/setup_players.cpp:59 msgid "Neutral" -msgstr "" +msgstr "Neutral" #: ../src/gui/setup_players.cpp:60 msgid "Friend" -msgstr "" +msgstr "Vän" #: ../src/gui/setup_players.cpp:61 msgid "Disregarded" -msgstr "" +msgstr "Förbisedd" #: ../src/gui/setup_players.cpp:62 msgid "Ignored" -msgstr "" +msgstr "Ignorerad" #: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 msgid "???" @@ -924,19 +925,19 @@ msgstr "" #: ../src/gui/setup_players.cpp:216 msgid "Save player list" -msgstr "" +msgstr "Kom ihåg spelarlista" #: ../src/gui/setup_players.cpp:218 msgid "Allow trading" -msgstr "" +msgstr "Tillåt byteshandel" #: ../src/gui/setup_players.cpp:220 msgid "Allow whispers" -msgstr "" +msgstr "Tillåt viskningar" #: ../src/gui/setup_players.cpp:247 msgid "When ignoring:" -msgstr "" +msgstr "Vid ignorering:" #: ../src/gui/setup_video.cpp:92 msgid "No modes available" @@ -992,7 +993,7 @@ msgstr "Omgivande FX" #: ../src/gui/setup_video.cpp:149 msgid "Particle Detail" -msgstr "" +msgstr "Partikeldetaljer" #: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 msgid "off" @@ -1010,11 +1011,11 @@ msgstr "hög" #: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 msgid "medium" -msgstr "" +msgstr "medium" #: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 msgid "max" -msgstr "" +msgstr "maximal" #: ../src/gui/setup_video.cpp:303 msgid "Failed to switch to " @@ -1085,11 +1086,11 @@ msgstr "Färdigheter" #: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 #, c-format msgid "Skill points: %d" -msgstr "" +msgstr "Färdighetspoäng: %d" #: ../src/gui/skill.cpp:140 msgid "Up" -msgstr "" +msgstr "Upp" #: ../src/gui/skill.cpp:140 msgid "inc" @@ -1110,14 +1111,14 @@ msgid "Speech" msgstr "" #: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 -#, fuzzy, c-format +#, c-format msgid "Job: %d" -msgstr "Nivå: %d" +msgstr "Jobb: %d" #: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 -#, fuzzy, c-format +#, c-format msgid "Money: %d GP" -msgstr "Pengar: %d" +msgstr "Pengar: %d GP" #: ../src/gui/status.cpp:53 msgid "HP:" @@ -1132,95 +1133,84 @@ msgid "MP:" msgstr "" #: ../src/gui/status.cpp:65 -#, fuzzy msgid "Job:" -msgstr "Nivå: %d" +msgstr "Jobb:" #. ---------------------- #. Stats Part #. ---------------------- #. Static Labels #: ../src/gui/status.cpp:125 -#, fuzzy msgid "Stats" -msgstr "Status" +msgstr "Statistik" #: ../src/gui/status.cpp:126 msgid "Total" -msgstr "" +msgstr "Totalt" #: ../src/gui/status.cpp:127 msgid "Cost" -msgstr "" +msgstr "Kostnad" #. Derived Stats #: ../src/gui/status.cpp:130 -#, fuzzy msgid "Attack:" -msgstr "Attack %+d" +msgstr "Attack:" #: ../src/gui/status.cpp:131 -#, fuzzy msgid "Defense:" -msgstr "Försvar %+d" +msgstr "Försvar:" #: ../src/gui/status.cpp:132 -#, fuzzy msgid "M.Attack:" -msgstr "Attack %+d" +msgstr "M. attack:" #: ../src/gui/status.cpp:133 -#, fuzzy msgid "M.Defense:" -msgstr "Försvar %+d" +msgstr "M. försvar:" #: ../src/gui/status.cpp:134 -#, c-format +#, fuzzy, c-format msgid "% Accuracy:" -msgstr "" +msgstr "% Precision:" #: ../src/gui/status.cpp:135 -#, c-format +#, fuzzy, c-format msgid "% Evade:" -msgstr "" +msgstr "% Undvikan:" #: ../src/gui/status.cpp:136 msgid "% Reflex:" -msgstr "" +msgstr "% Reflexer:" #: ../src/gui/status.cpp:280 -#, fuzzy msgid "Strength" -msgstr "Styrka:" +msgstr "Styrka" #: ../src/gui/status.cpp:281 -#, fuzzy msgid "Agility" -msgstr "Smidighet:" +msgstr "Smidighet" #: ../src/gui/status.cpp:282 -#, fuzzy msgid "Vitality" -msgstr "Hälsa:" +msgstr "Hälsa" #: ../src/gui/status.cpp:283 -#, fuzzy msgid "Intelligence" -msgstr "Intelligens:" +msgstr "Intelligens" #: ../src/gui/status.cpp:284 -#, fuzzy msgid "Dexterity" -msgstr "Skicklighet:" +msgstr "Skicklighet" #: ../src/gui/status.cpp:285 msgid "Luck" -msgstr "" +msgstr "Tur" #: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" -msgstr "" +msgstr "Återstående statuspoäng: %d" #: ../src/gui/trade.cpp:51 msgid "Trade: You" @@ -1228,7 +1218,7 @@ msgstr "" #: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 msgid "Trade" -msgstr "" +msgstr "Byteshandla" #: ../src/gui/trade.cpp:63 msgid "Add" @@ -1246,6 +1236,8 @@ msgstr "Du ger:" #: ../src/gui/trade.cpp:252 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" +"Kan inte lägga till vald sak. Det går inte att byteshandla med samma slags " +"sak flera gånger." #: ../src/gui/updatewindow.cpp:78 #, c-format @@ -1254,11 +1246,11 @@ msgstr "" #: ../src/gui/updatewindow.cpp:93 msgid "Updating..." -msgstr "" +msgstr "Uppdaterar..." #: ../src/gui/updatewindow.cpp:115 msgid "Play" -msgstr "" +msgstr "Spela" #: ../src/gui/updatewindow.cpp:196 msgid "Couldn't load news" @@ -1300,7 +1292,7 @@ msgstr "" #: ../src/gui/updatewindow.cpp:520 msgid "Completed" -msgstr "" +msgstr "Färdig" #: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 msgid "Message" @@ -1549,57 +1541,53 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" -msgstr "" +msgstr "Namnlös" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" #: ../src/resources/monsterdb.cpp:44 msgid "unnamed" -msgstr "" +msgstr "Namnlös" #: ../src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." @@ -1849,20 +1837,19 @@ msgstr "" #: ../src/main.cpp:862 msgid "Got disconnected from server!" -msgstr "" +msgstr "Kopplades från servern!" #: ../src/main.cpp:1067 -#, fuzzy msgid "Connecting to map server..." -msgstr "Ansluter..." +msgstr "Ansluter till kartservern..." #: ../src/main.cpp:1075 msgid "Connecting to character server..." -msgstr "" +msgstr "Ansluter till karaktärsservern..." #: ../src/main.cpp:1083 msgid "Connecting to account server..." -msgstr "" +msgstr "Ansluter till kontoservern..." #: ../src/party.cpp:55 msgid "Not yet implemented!" -- cgit v1.2.3-60-g2f50 From 50a9e6619f6ffd9215f81d28d6bdd617c52947c1 Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Thu, 29 Jan 2009 20:01:04 +0100 Subject: Converted CRLF newlines to LF --- packaging/windows/make-translations.vbs | 42 +++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 packaging/windows/make-translations.vbs diff --git a/packaging/windows/make-translations.vbs b/packaging/windows/make-translations.vbs new file mode 100644 index 00000000..dee9f2bb --- /dev/null +++ b/packaging/windows/make-translations.vbs @@ -0,0 +1,42 @@ +Set fso = CreateObject("Scripting.FileSystemObject") +Set WshShell = CreateObject("WScript.Shell") +Dim s, infile, outfile, command + +Function CreateFolderIfNonexistent(folder) + if not fso.FolderExists(folder) then + fso.CreateFolder(folder) + end if +end Function + +'check for existence of msgfmt +if not fso.FileExists("msgfmt.exe") then + WScript.echo "msgfmt.exe not found. Please get gettext for windows from http://gnuwin32.sourceforge.net/packages/gettext.htm and copy the files msgfmt.exe and all dll files from the gettext/bin directory into this directory and run this script again." + WScript.Quit(1) +end if + +CreateFolderIfNonexistent("..\..\translations\") + +'open translation list +Set stream = fso.GetFile("..\..\po\LINGUAS").OpenAsTextStream(1, 0) + +'iterate contents of translations file +translations = 0 +do while not stream.AtEndOfStream + s = stream.ReadLine() + if inStr(s, "#") = false then + 'create the output directory + CreateFolderIfNonexistent("..\..\translations\" + s) + CreateFolderIfNonexistent("..\..\translations\" + s + "\LC_MESSAGES") + 'build the translate command + infile = "../../po/" + s + ".po" + outfile = "../../translations/" + s +"/LC_MESSAGES/aethyra.mo" + command = "msgfmt -c -o " + outfile + " " + infile + 'execute translate command + errval = WshShell.run(command, 0, true) + if errval = 0 then + translations = translations + 1 + end if + end if +loop + +WScript.echo translations, " translations compiled." -- cgit v1.2.3-60-g2f50 From d3ac12d94f6ddb25866e10856ec47919a4b6d7a6 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 29 Jan 2009 16:25:16 -0700 Subject: Fixed up minimap resizing code so that the minimum width is always long enough to contain the map's name. Also fixed an unnoticed logic flip that was done unintentionally. This class now manages to work perfectly when the config file has no previous dimensional influences, but still won't resize properly without removing the ability to resize or getting rid of those stored configs. TODO: Find out why loading window configuration for the default minimum width or height overrides the Minimap's supplied dimensions it wants. Signed-off-by: Ira Rice --- src/gui/minimap.cpp | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/gui/minimap.cpp b/src/gui/minimap.cpp index 7802b583..d68faa56 100644 --- a/src/gui/minimap.cpp +++ b/src/gui/minimap.cpp @@ -71,19 +71,25 @@ void Minimap::setMapImage(Image *img) setMinWidth(mapWidth > titleWidth ? mapWidth : titleWidth); setMinHeight(mapHeight); - setMaxWidth(mMapImage->getWidth() + offsetX); + setMaxWidth(mMapImage->getWidth() > titleWidth ? + mMapImage->getWidth() + offsetX : titleWidth); setMaxHeight(mMapImage->getHeight() + offsetY); mMapImage->setAlpha(config.getValue("guialpha", 0.8)); - // Set content size to be within the minimum and maximum boundaries - setWidth(getMinWidth() < getWidth() ? getWidth() : getMinWidth()); - if (getMaxWidth() > getWidth()) + // Make sure the window is within the minimum and maximum boundaries + // TODO: Shouldn't this be happening automatically within the Window + // class? + if (getMinWidth() > getWidth()) + setWidth(getMinWidth()); + else if (getMaxWidth() < getWidth()) setWidth(getMaxWidth()); - setHeight(getMinHeight() < getHeight() ? getHeight() : getMinHeight()); - if (getMaxHeight() > getHeight()) + if (getMinHeight() > getHeight()) + setHeight(getMinHeight()); + else if (getMaxHeight() < getHeight()) setHeight(getMaxHeight()); + setContentSize(getWidth() - offsetX, getHeight() - offsetY); setDefaultSize(getX(), getY(), getWidth(), getHeight()); resetToDefaultSize(); -- cgit v1.2.3-60-g2f50 From 5a217925e3088bfbb187d274ced159754e2397c2 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 29 Jan 2009 17:34:37 -0700 Subject: Trimmed out a few help functions from some subclasses, and moved them back to the chat class, where they really belong. Since the party class parses its own suboptions, I left the suboptions within that class. Signed-off-by: Ira Rice --- src/gui/chat.cpp | 13 +++++++++---- src/gui/recorder.cpp | 19 ++----------------- src/gui/recorder.h | 15 ++------------- src/party.cpp | 5 ----- src/party.h | 1 - 5 files changed, 13 insertions(+), 40 deletions(-) diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 3a22581f..36e33160 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -478,7 +478,7 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) else if (command == "whisper" || command == "msg" || command == "w") whisper(nick, msg); else if (command == "record") - mRecorder->changeStatus(msg); + mRecorder->changeRecordingStatus(msg); else if (command == "toggle") { if (msg == "") @@ -804,10 +804,11 @@ void ChatWindow::help(const std::string & msg1, const std::string & msg2) chatLog(_("/announce: Global announcement (GM only)"), BY_SERVER); chatLog(_("/clear: Clears this window"), BY_SERVER); chatLog(_("/help: Display this help"), BY_SERVER); - mParty->help(); + chatLog(_("/party : Party commands."), BY_SERVER); chatLog(_("/msg : Alternate form for /whisper"), BY_SERVER); chatLog(_("/present: Get list of players present"), BY_SERVER); - mRecorder->help(); + chatLog(_("/record : Start recording the chat to an" + " external file."), BY_SERVER); chatLog(_("/toggle: Determine whether toggles the chat log."), BY_SERVER); chatLog(_("/where: Display map name"), BY_SERVER); @@ -851,7 +852,11 @@ void ChatWindow::help(const std::string & msg1, const std::string & msg2) } else if (msg1 == "record") { - mRecorder->help2(); + chatLog(_("Command: /record "), BY_SERVER); + chatLog(_("This command starts recording the chat log to the file " + "."), BY_SERVER); + chatLog(_("Command: /record"), BY_SERVER); + chatLog(_("This command finishes a recording session."), BY_SERVER); } else if (msg1 == "toggle") { diff --git a/src/gui/recorder.cpp b/src/gui/recorder.cpp index da67875b..02eddbe5 100644 --- a/src/gui/recorder.cpp +++ b/src/gui/recorder.cpp @@ -46,7 +46,7 @@ void Recorder::record(const std::string &msg) } } -void Recorder::changeStatus(const std::string &msg) +void Recorder::changeRecordingStatus(const std::string &msg) { std::string msgCopy = msg; trim(msgCopy); @@ -91,24 +91,9 @@ void Recorder::changeStatus(const std::string &msg) } } -void Recorder::help() const -{ - mChat->chatLog("/record : Start recording the chat.", BY_SERVER); -} - -void Recorder::help2() const -{ - mChat->chatLog("Command: /record ", BY_SERVER); - mChat->chatLog("This command starts recording the chat log to the file " - ".", BY_SERVER); - mChat->chatLog("Command: /record", BY_SERVER); - mChat->chatLog("This command finishes a recording session.", BY_SERVER); -} - void Recorder::action(const gcn::ActionEvent &event) { - if (event.getId() == "activate") - changeStatus(""); + changeRecordingStatus(""); } Recorder::~Recorder() diff --git a/src/gui/recorder.h b/src/gui/recorder.h index 6f917c25..420c4a2b 100644 --- a/src/gui/recorder.h +++ b/src/gui/recorder.h @@ -53,20 +53,9 @@ class Recorder : public Window, public gcn::ActionListener /* * Outputs the message to the recorder file * - * @param msg the line to write to the recorded file. - */ - void changeStatus(const std::string &msg); - - /* - * Displays a help message on how to use this class in the chat window. - */ - void help() const; - - /* - * Displays an extended help message on how to use this class in the - * chat window. + * @param msg The file to write out to. If null, then stop recording. */ - void help2() const; + void changeRecordingStatus(const std::string &msg); /* * Whether or not the recorder is in use. diff --git a/src/party.cpp b/src/party.cpp index ecb0ab2d..67262176 100644 --- a/src/party.cpp +++ b/src/party.cpp @@ -166,11 +166,6 @@ void Party::receiveChat(Being *being, const std::string &msg) mChat->chatLog(being->getName() + " : " + msg, BY_PARTY); } -void Party::help() -{ - mChat->chatLog(_("/party : Party commands."), BY_SERVER); -} - void Party::help(const std::string &msg) { if (msg == "") diff --git a/src/party.h b/src/party.h index 8d6dce47..5643f894 100644 --- a/src/party.h +++ b/src/party.h @@ -47,7 +47,6 @@ class Party void leftResponse(const std::string &nick); void receiveChat(Being *being, const std::string &msg); - void help(); void help(const std::string &msg); private: ChatWindow *mChat; -- cgit v1.2.3-60-g2f50 From a49b60fc0f9edfba8ec457ce06cf75cc13d4c71b Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 07:51:11 -0700 Subject: Fixed the last freestanding minimap bug. Now minimaps behave perfectly even when there's already a saved window configuration. Signed-off-by: Ira Rice --- src/gui/minimap.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/minimap.cpp b/src/gui/minimap.cpp index d68faa56..d1d3af46 100644 --- a/src/gui/minimap.cpp +++ b/src/gui/minimap.cpp @@ -44,6 +44,8 @@ Minimap::Minimap(): mShow = config.getValue(getWindowName() + "Visible", true); setDefaultSize(5, 25, 100, 100); setResizable(true); + + loadWindowState(); } Minimap::~Minimap() @@ -93,7 +95,6 @@ void Minimap::setMapImage(Image *img) setDefaultSize(getX(), getY(), getWidth(), getHeight()); resetToDefaultSize(); - loadWindowState(); setVisible(mShow); } else -- cgit v1.2.3-60-g2f50 From ea9ca516da190a1a328b455c4d98a9fd57182e55 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 08:43:15 -0700 Subject: Fixed color saving on Windows. Signed-off-by: Ira Rice --- src/gui/colour.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/gui/colour.cpp b/src/gui/colour.cpp index 816420ed..e6ceeaca 100644 --- a/src/gui/colour.cpp +++ b/src/gui/colour.cpp @@ -26,6 +26,7 @@ #include "../configuration.h" #include "../utils/gettext.h" +#include "../utils/tostring.h" Colour::Colour() { @@ -48,9 +49,7 @@ Colour::~Colour() col != colEnd; ++col) { - char buffer[20]; - std::sprintf(buffer, "0x%06x", col->rgb); - config.setValue("Colour" + col->text, buffer); + config.setValue("Colour" + col->text, toString(col->rgb)); } } -- cgit v1.2.3-60-g2f50 From 4c0f83e55fd1f6fabc2d8152843175b8ea55bc2b Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 09:06:56 -0700 Subject: Re-enabled real time gui opacity updating. Signed-off-by: Ira Rice --- src/gui/window.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/gui/window.cpp b/src/gui/window.cpp index dba65143..66f38aa8 100644 --- a/src/gui/window.cpp +++ b/src/gui/window.cpp @@ -58,9 +58,6 @@ class WindowConfigListener : public ConfigListener void optionChanged(const std::string &) { Window::mAlphaChanged = true; -// for_each(Window::border.grid, Window::border.grid + 9, -// std::bind2nd(std::mem_fun(&Image::setAlpha), -// config.getValue("guialpha", 0.8))); } }; @@ -195,6 +192,14 @@ void Window::draw(gcn::Graphics *graphics) getPadding() ); } + + // Update window alpha values + if (mAlphaChanged) + { + for_each(border.grid, border.grid + 9, + std::bind2nd(std::mem_fun(&Image::setAlpha), + config.getValue("guialpha", 0.8))); + } drawChildren(graphics); } -- cgit v1.2.3-60-g2f50 From cc37b4a9153379d5c5529ba85305d36efba2cd85 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 09:17:03 -0700 Subject: Changed the minimap to remember whether the minimap was toggled or not when the client was last exited. Signed-off-by: Ira Rice --- src/gui/minimap.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/gui/minimap.cpp b/src/gui/minimap.cpp index d1d3af46..0b156fc4 100644 --- a/src/gui/minimap.cpp +++ b/src/gui/minimap.cpp @@ -41,7 +41,7 @@ Minimap::Minimap(): mProportion(0.5) { setWindowName(_("MiniMap")); - mShow = config.getValue(getWindowName() + "Visible", true); + mShow = config.getValue(getWindowName() + "Show", true); setDefaultSize(5, 25, 100, 100); setResizable(true); @@ -52,6 +52,8 @@ Minimap::~Minimap() { if (mMapImage) mMapImage->decRef(); + + config.setValue(getWindowName() + "Show", mShow); } void Minimap::setMapImage(Image *img) @@ -106,7 +108,6 @@ void Minimap::setMapImage(Image *img) void Minimap::toggle() { mShow = !mShow; - config.setValue(getWindowName() + "Visible", mShow); } void Minimap::draw(gcn::Graphics *graphics) -- cgit v1.2.3-60-g2f50 From d57be9d49c55bc0b85eb8f539ff2029518cfafc0 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 10:56:54 -0700 Subject: Exposed most gui elements to take alpha values. There are still a few spots that could also be fixed up as well, but require other methods to fix them (the filled color rectangles on the progress bars, as well as the text on them as well, as an example). Signed-off-by: Ira Rice --- src/gui/button.cpp | 34 ++++++++++++++++++++++------------ src/gui/button.h | 1 + src/gui/checkbox.cpp | 27 +++++++++++++++++++++------ src/gui/checkbox.h | 1 + src/gui/emoteshortcutcontainer.cpp | 13 +++++++++++-- src/gui/itemshortcutcontainer.cpp | 8 ++++++-- src/gui/minimap.cpp | 2 -- src/gui/playerbox.cpp | 9 +++++++++ src/gui/playerbox.h | 1 + src/gui/progressbar.cpp | 17 +++++++++++++++++ src/gui/progressbar.h | 1 + src/gui/scrollarea.cpp | 11 +++++++++++ src/gui/scrollarea.h | 1 + src/gui/shortcutcontainer.cpp | 4 +++- src/gui/shortcutcontainer.h | 2 ++ src/gui/slider.cpp | 16 ++++++++++++++++ src/gui/slider.h | 1 + src/gui/textfield.cpp | 13 ++++++++++--- src/gui/textfield.h | 1 + src/gui/widgets/resizegrip.cpp | 9 +++++++++ src/gui/widgets/resizegrip.h | 1 + src/gui/widgets/tab.cpp | 13 +++++++++++++ src/gui/widgets/tab.h | 1 + src/gui/window.cpp | 1 + 24 files changed, 160 insertions(+), 28 deletions(-) diff --git a/src/gui/button.cpp b/src/gui/button.cpp index 9b624015..d578202e 100644 --- a/src/gui/button.cpp +++ b/src/gui/button.cpp @@ -21,6 +21,7 @@ #include "button.h" +#include "../configuration.h" #include "../graphics.h" #include "../resources/image.h" @@ -35,6 +36,7 @@ #include int Button::mInstances = 0; +float Button::mAlpha = config.getValue("guialpha", 0.8); enum{ BUTTON_STANDARD, // 0 @@ -100,6 +102,7 @@ void Button::init() data[x].gridX, data[y].gridY, data[x + 1].gridX - data[x].gridX + 1, data[y + 1].gridY - data[y].gridY + 1); + button[mode].grid[a]->setAlpha(mAlpha); a++; } } @@ -126,17 +129,25 @@ void Button::draw(gcn::Graphics *graphics) { int mode; - if (!isEnabled()) { + if (!isEnabled()) mode = BUTTON_DISABLED; - } - else if (isPressed() || mIsLogged) { + else if (isPressed() || mIsLogged) mode = BUTTON_PRESSED; - } - else if (mHasMouse || isFocused()) { + else if (mHasMouse || isFocused()) mode = BUTTON_HIGHLIGHTED; - } - else { + else mode = BUTTON_STANDARD; + + if (config.getValue("guialpha", 0.8) != mAlpha) + { + mAlpha = config.getValue("guialpha", 0.8); + for (int a = 0; a < 9; a++) + { + button[BUTTON_DISABLED].grid[a]->setAlpha(mAlpha); + button[BUTTON_PRESSED].grid[a]->setAlpha(mAlpha); + button[BUTTON_HIGHLIGHTED].grid[a]->setAlpha(mAlpha); + button[BUTTON_STANDARD].grid[a]->setAlpha(mAlpha); + } } static_cast(graphics)-> @@ -147,7 +158,8 @@ void Button::draw(gcn::Graphics *graphics) int textX; int textY = getHeight() / 2 - getFont()->getHeight() / 2; - switch (getAlignment()) { + switch (getAlignment()) + { case gcn::Graphics::LEFT: textX = 4; break; @@ -163,10 +175,8 @@ void Button::draw(gcn::Graphics *graphics) graphics->setFont(getFont()); - if (isPressed()) { + if (isPressed()) graphics->drawText(getCaption(), textX + 1, textY + 1, getAlignment()); - } - else { + else graphics->drawText(getCaption(), textX, textY, getAlignment()); - } } diff --git a/src/gui/button.h b/src/gui/button.h index d8ed9fa7..1faf2455 100644 --- a/src/gui/button.h +++ b/src/gui/button.h @@ -71,6 +71,7 @@ class Button : public gcn::Button static ImageRect button[4]; /**< Button state graphics */ static int mInstances; /**< Number of button instances */ + static float mAlpha; bool mIsLogged; /**< Makes the button appear pressed all the time */ }; diff --git a/src/gui/checkbox.cpp b/src/gui/checkbox.cpp index b8fca2b8..7fa4fa81 100644 --- a/src/gui/checkbox.cpp +++ b/src/gui/checkbox.cpp @@ -21,12 +21,14 @@ #include "checkbox.h" +#include "../configuration.h" #include "../graphics.h" #include "../resources/image.h" #include "../resources/resourcemanager.h" int CheckBox::instances = 0; +float CheckBox::mAlpha = config.getValue("guialpha", 0.8); Image *CheckBox::checkBoxNormal; Image *CheckBox::checkBoxChecked; Image *CheckBox::checkBoxDisabled; @@ -43,6 +45,10 @@ CheckBox::CheckBox(const std::string& caption, bool selected): checkBoxChecked = checkBox->getSubImage(9, 0, 9, 10); checkBoxDisabled = checkBox->getSubImage(18, 0, 9, 10); checkBoxDisabledChecked = checkBox->getSubImage(27, 0, 9, 10); + checkBoxNormal->setAlpha(mAlpha); + checkBoxChecked->setAlpha(mAlpha); + checkBoxDisabled->setAlpha(mAlpha); + checkBoxDisabledChecked->setAlpha(mAlpha); checkBox->decRef(); } @@ -66,16 +72,25 @@ void CheckBox::drawBox(gcn::Graphics* graphics) { Image *box; - if (isSelected()) { - if (isEnabled()) { + if (isSelected()) + { + if (isEnabled()) box = checkBoxChecked; - } else { + else box = checkBoxDisabledChecked; - } - } else if (isEnabled()) { + } + else if (isEnabled()) box = checkBoxNormal; - } else { + else box = checkBoxDisabled; + + if (config.getValue("guialpha", 0.8) != mAlpha) + { + mAlpha = config.getValue("guialpha", 0.8); + checkBoxNormal->setAlpha(mAlpha); + checkBoxChecked->setAlpha(mAlpha); + checkBoxDisabled->setAlpha(mAlpha); + checkBoxDisabledChecked->setAlpha(mAlpha); } static_cast(graphics)->drawImage(box, 2, 2); diff --git a/src/gui/checkbox.h b/src/gui/checkbox.h index d92fc822..2e52fd0a 100644 --- a/src/gui/checkbox.h +++ b/src/gui/checkbox.h @@ -54,6 +54,7 @@ class CheckBox : public gcn::CheckBox { private: static int instances; + static float mAlpha; static Image *checkBoxNormal; static Image *checkBoxChecked; static Image *checkBoxDisabled; diff --git a/src/gui/emoteshortcutcontainer.cpp b/src/gui/emoteshortcutcontainer.cpp index f5ee9843..e35d037f 100644 --- a/src/gui/emoteshortcutcontainer.cpp +++ b/src/gui/emoteshortcutcontainer.cpp @@ -22,6 +22,7 @@ #include "emoteshortcutcontainer.h" #include "../animatedsprite.h" +#include "../configuration.h" #include "../emoteshortcut.h" #include "../graphics.h" #include "../inventory.h" @@ -42,11 +43,10 @@ static const int MAX_ITEMS = 12; EmoteShortcutContainer::EmoteShortcutContainer(): + ShortcutContainer(), mEmoteClicked(false), mEmoteMoved(0) { - mGridWidth = 1, - mGridHeight = 1, addMouseListener(this); addWidgetListener(this); @@ -54,6 +54,8 @@ EmoteShortcutContainer::EmoteShortcutContainer(): mBackgroundImg = resman->getImage("graphics/gui/item_shortcut_bgr.png"); + mBackgroundImg->setAlpha(config.getValue("guialpha", 0.8)); + // Setup emote sprites for (int i = 0; i <= EmoteDB::getLast(); i++) { @@ -96,6 +98,7 @@ void EmoteShortcutContainer::draw(gcn::Graphics *graphics) } } + if (mEmoteMoved) { // Draw the emote image being dragged by the cursor. @@ -108,6 +111,12 @@ void EmoteShortcutContainer::draw(gcn::Graphics *graphics) sprite->draw(g, tPosX, tPosY); } } + + if (config.getValue("guialpha", 0.8) != mAlpha) + { + mAlpha = config.getValue("guialpha", 0.8); + mBackgroundImg->setAlpha(mAlpha); + } } void EmoteShortcutContainer::mouseDragged(gcn::MouseEvent &event) diff --git a/src/gui/itemshortcutcontainer.cpp b/src/gui/itemshortcutcontainer.cpp index 83d8c9fb..ecadd0e4 100644 --- a/src/gui/itemshortcutcontainer.cpp +++ b/src/gui/itemshortcutcontainer.cpp @@ -39,11 +39,10 @@ #include "../utils/tostring.h" ItemShortcutContainer::ItemShortcutContainer(): + ShortcutContainer(), mItemClicked(false), mItemMoved(NULL) { - mGridWidth=1; - mGridHeight=1; addMouseListener(this); addWidgetListener(this); @@ -136,6 +135,11 @@ void ItemShortcutContainer::draw(gcn::Graphics *graphics) gcn::Graphics::CENTER); } } + + if (config.getValue("guialpha", 0.8) != mAlpha) + { + mBackgroundImg->setAlpha(config.getValue("guialpha", 0.8)); + } } void ItemShortcutContainer::mouseDragged(gcn::MouseEvent &event) diff --git a/src/gui/minimap.cpp b/src/gui/minimap.cpp index 0b156fc4..37505305 100644 --- a/src/gui/minimap.cpp +++ b/src/gui/minimap.cpp @@ -79,8 +79,6 @@ void Minimap::setMapImage(Image *img) mMapImage->getWidth() + offsetX : titleWidth); setMaxHeight(mMapImage->getHeight() + offsetY); - mMapImage->setAlpha(config.getValue("guialpha", 0.8)); - // Make sure the window is within the minimum and maximum boundaries // TODO: Shouldn't this be happening automatically within the Window // class? diff --git a/src/gui/playerbox.cpp b/src/gui/playerbox.cpp index c22d407c..20ed17f8 100644 --- a/src/gui/playerbox.cpp +++ b/src/gui/playerbox.cpp @@ -34,6 +34,7 @@ #include "../utils/dtor.h" int PlayerBox::instances = 0; +float PlayerBox::mAlpha = config.getValue("guialpha", 0.8); ImageRect PlayerBox::background; PlayerBox::PlayerBox(const Player *player): @@ -94,6 +95,14 @@ void PlayerBox::draw(gcn::Graphics *graphics) } } } + + if (config.getValue("guialpha", 0.8) != mAlpha) + { + for (int a = 0; a < 9; a++) + { + background.grid[a]->setAlpha(config.getValue("guialpha", 0.8)); + } + } } void PlayerBox::drawFrame(gcn::Graphics *graphics) diff --git a/src/gui/playerbox.h b/src/gui/playerbox.h index 5aacd26f..70c41644 100644 --- a/src/gui/playerbox.h +++ b/src/gui/playerbox.h @@ -68,6 +68,7 @@ class PlayerBox : public gcn::ScrollArea private: const Player *mPlayer; /**< The character used for display */ + static float mAlpha; static int instances; static ImageRect background; }; diff --git a/src/gui/progressbar.cpp b/src/gui/progressbar.cpp index ecc0017d..d9db0c3c 100644 --- a/src/gui/progressbar.cpp +++ b/src/gui/progressbar.cpp @@ -22,6 +22,7 @@ #include "gui.h" #include "progressbar.h" +#include "../configuration.h" #include "../graphics.h" #include "../resources/image.h" @@ -31,6 +32,7 @@ ImageRect ProgressBar::mBorder; int ProgressBar::mInstances = 0; +float ProgressBar::mAlpha = config.getValue("guialpha", 0.8); ProgressBar::ProgressBar(float progress, unsigned int width, unsigned int height, @@ -56,6 +58,12 @@ ProgressBar::ProgressBar(float progress, mBorder.grid[6] = dBorders->getSubImage(0, 15, 4, 4); mBorder.grid[7] = dBorders->getSubImage(4, 15, 3, 4); mBorder.grid[8] = dBorders->getSubImage(7, 15, 4, 4); + + for (int i = 0; i < 9; i++) + { + mBorder.grid[i]->setAlpha(mAlpha); + } + dBorders->decRef(); } @@ -93,6 +101,15 @@ void ProgressBar::logic() void ProgressBar::draw(gcn::Graphics *graphics) { + if (config.getValue("guialpha", 0.8) != mAlpha) + { + mAlpha = config.getValue("guialpha", 0.8); + for (int i = 0; i < 9; i++) + { + mBorder.grid[i]->setAlpha(mAlpha); + } + } + static_cast(graphics)-> drawImageRect(0, 0, getWidth(), getHeight(), mBorder); diff --git a/src/gui/progressbar.h b/src/gui/progressbar.h index ee0a5f81..dd9cc896 100644 --- a/src/gui/progressbar.h +++ b/src/gui/progressbar.h @@ -111,6 +111,7 @@ class ProgressBar : public gcn::Widget static ImageRect mBorder; static int mInstances; + static float mAlpha; }; #endif diff --git a/src/gui/scrollarea.cpp b/src/gui/scrollarea.cpp index 1d7f8472..a892f2d0 100644 --- a/src/gui/scrollarea.cpp +++ b/src/gui/scrollarea.cpp @@ -32,6 +32,7 @@ #include "../utils/dtor.h" int ScrollArea::instances = 0; +float ScrollArea::mAlpha = config.getValue("guialpha", 0.8); ImageRect ScrollArea::background; ImageRect ScrollArea::vMarker; Image *ScrollArea::buttons[4][2]; @@ -193,6 +194,16 @@ void ScrollArea::draw(gcn::Graphics *graphics) mScrollbarWidth)); } + if (config.getValue("guialpha", 0.8) != mAlpha) + { + mAlpha = config.getValue("guialpha", 0.8); + for (int a = 0; a < 9; a++) + { + background.grid[a]->setAlpha(mAlpha); + vMarker.grid[a]->setAlpha(mAlpha); + } + } + drawChildren(graphics); } diff --git a/src/gui/scrollarea.h b/src/gui/scrollarea.h index 4fababfa..4324deff 100644 --- a/src/gui/scrollarea.h +++ b/src/gui/scrollarea.h @@ -102,6 +102,7 @@ class ScrollArea : public gcn::ScrollArea void drawHMarker(gcn::Graphics *graphics); static int instances; + static float mAlpha; static ImageRect background; static ImageRect vMarker; static Image *buttons[4][2]; diff --git a/src/gui/shortcutcontainer.cpp b/src/gui/shortcutcontainer.cpp index d03bc809..62b2d382 100644 --- a/src/gui/shortcutcontainer.cpp +++ b/src/gui/shortcutcontainer.cpp @@ -21,6 +21,7 @@ #include "shortcutcontainer.h" +#include "../configuration.h" #include "../graphics.h" #include "../inventory.h" #include "../item.h" @@ -33,13 +34,14 @@ #include "../utils/tostring.h" +float ShortcutContainer::mAlpha = config.getValue("guialpha", 0.8); + ShortcutContainer::ShortcutContainer(): mGridWidth(1), mGridHeight(1) { } - void ShortcutContainer::widgetResized(const gcn::Event &event) { mGridWidth = getWidth() / mBoxWidth; diff --git a/src/gui/shortcutcontainer.h b/src/gui/shortcutcontainer.h index 66aca6c3..b2d0cc78 100644 --- a/src/gui/shortcutcontainer.h +++ b/src/gui/shortcutcontainer.h @@ -97,6 +97,8 @@ class ShortcutContainer : public gcn::Widget, Image *mBackgroundImg; + static float mAlpha; + int mMaxItems; int mBoxWidth; int mBoxHeight; diff --git a/src/gui/slider.cpp b/src/gui/slider.cpp index 37136012..9bfa840f 100644 --- a/src/gui/slider.cpp +++ b/src/gui/slider.cpp @@ -21,6 +21,7 @@ #include "slider.h" +#include "../configuration.h" #include "../graphics.h" #include "../resources/image.h" @@ -28,6 +29,7 @@ Image *Slider::hStart, *Slider::hMid, *Slider::hEnd, *Slider::hGrip; Image *Slider::vStart, *Slider::vMid, *Slider::vEnd, *Slider::vGrip; +float Slider::mAlpha = config.getValue("guialpha", 0.8); int Slider::mInstances = 0; Slider::Slider(double scaleEnd): @@ -107,6 +109,20 @@ void Slider::draw(gcn::Graphics *graphics) int x = 0; int y = (h - hStart->getHeight()) / 2; + if (config.getValue("guialpha", 0.8) != mAlpha) + { + mAlpha = config.getValue("guialpha", 0.8); + hStart->setAlpha(mAlpha); + hMid->setAlpha(mAlpha); + hEnd->setAlpha(mAlpha); + hGrip->setAlpha(mAlpha); + + vStart->setAlpha(mAlpha); + vMid->setAlpha(mAlpha); + vEnd->setAlpha(mAlpha); + vGrip->setAlpha(mAlpha); + } + static_cast(graphics)->drawImage(hStart, x, y); w -= hStart->getWidth() + hEnd->getWidth(); diff --git a/src/gui/slider.h b/src/gui/slider.h index c14c5be9..12004f55 100644 --- a/src/gui/slider.h +++ b/src/gui/slider.h @@ -68,6 +68,7 @@ class Slider : public gcn::Slider { static Image *hStart, *hMid, *hEnd, *hGrip; static Image *vStart, *vMid, *vEnd, *vGrip; + static float mAlpha; static int mInstances; }; diff --git a/src/gui/textfield.cpp b/src/gui/textfield.cpp index 3ecf5c82..7e5004cc 100644 --- a/src/gui/textfield.cpp +++ b/src/gui/textfield.cpp @@ -39,6 +39,7 @@ #undef DELETE //Win32 compatibility hack int TextField::instances = 0; +float TextField::mAlpha = config.getValue("guialpha", 0.8); ImageRect TextField::skin; TextField::TextField(const std::string& text): @@ -55,9 +56,6 @@ TextField::TextField(const std::string& text): Image *textbox = resman->getImage("graphics/gui/deepbox.png"); int gridx[4] = {0, 3, 28, 31}; int gridy[4] = {0, 3, 28, 31}; - //Image *textbox = resman->getImage("graphics/gui/textbox.png"); - //int gridx[4] = {0, 5, 26, 31}; - //int gridy[4] = {0, 5, 26, 31}; int a = 0, x, y; for (y = 0; y < 3; y++) { @@ -98,6 +96,15 @@ void TextField::draw(gcn::Graphics *graphics) graphics->setColor(getForegroundColor()); graphics->setFont(getFont()); graphics->drawText(mText, 1 - mXScroll, 1); + + if (config.getValue("guialpha", 0.8) != mAlpha) + { + mAlpha = config.getValue("guialpha", 0.8); + for (int a = 0; a < 9; a++) + { + skin.grid[a]->setAlpha(mAlpha); + } + } } void TextField::drawFrame(gcn::Graphics *graphics) diff --git a/src/gui/textfield.h b/src/gui/textfield.h index a2432175..11a58824 100644 --- a/src/gui/textfield.h +++ b/src/gui/textfield.h @@ -99,6 +99,7 @@ class TextField : public gcn::TextField { private: static int instances; + static float mAlpha; static ImageRect skin; bool mNumeric; int mMinimum; diff --git a/src/gui/widgets/resizegrip.cpp b/src/gui/widgets/resizegrip.cpp index 4b8bb4da..fa264e37 100644 --- a/src/gui/widgets/resizegrip.cpp +++ b/src/gui/widgets/resizegrip.cpp @@ -23,6 +23,7 @@ #include "resizegrip.h" +#include "../../configuration.h" #include "../../graphics.h" #include "../../resources/image.h" @@ -30,6 +31,7 @@ Image *ResizeGrip::gripImage = 0; int ResizeGrip::mInstances = 0; +float ResizeGrip::mAlpha = config.getValue("guialpha", 0.8); ResizeGrip::ResizeGrip(std::string image) { @@ -38,6 +40,7 @@ ResizeGrip::ResizeGrip(std::string image) // Load the grip image ResourceManager *resman = ResourceManager::getInstance(); gripImage = resman->getImage(image); + gripImage->setAlpha(mAlpha); } mInstances++; @@ -58,5 +61,11 @@ ResizeGrip::~ResizeGrip() void ResizeGrip::draw(gcn::Graphics *graphics) { + if (config.getValue("guialpha", 0.8) != mAlpha) + { + mAlpha = config.getValue("guialpha", 0.8); + gripImage->setAlpha(mAlpha); + } + static_cast(graphics)->drawImage(gripImage, 0, 0); } diff --git a/src/gui/widgets/resizegrip.h b/src/gui/widgets/resizegrip.h index 7f1329a2..198954f6 100644 --- a/src/gui/widgets/resizegrip.h +++ b/src/gui/widgets/resizegrip.h @@ -56,6 +56,7 @@ class ResizeGrip : public gcn::Widget private: static Image *gripImage; /**< Resize grip image */ static int mInstances; /**< Number of resize grip instances */ + static float mAlpha; }; #endif diff --git a/src/gui/widgets/tab.cpp b/src/gui/widgets/tab.cpp index c54b2390..6f7f497a 100644 --- a/src/gui/widgets/tab.cpp +++ b/src/gui/widgets/tab.cpp @@ -25,6 +25,7 @@ #include "tabbedarea.h" +#include "../../configuration.h" #include "../../graphics.h" #include "../../resources/image.h" @@ -33,6 +34,7 @@ #include "../../utils/dtor.h" int Tab::mInstances = 0; +float Tab::mAlpha = config.getValue("guialpha", 0.8); enum{ TAB_STANDARD, // 0 @@ -98,6 +100,7 @@ void Tab::init() data[x].gridX, data[y].gridY, data[x + 1].gridX - data[x].gridX + 1, data[y + 1].gridY - data[y].gridY + 1); + tabImg[mode].grid[a]->setAlpha(mAlpha); a++; } } @@ -121,6 +124,16 @@ void Tab::draw(gcn::Graphics *graphics) mode = TAB_STANDARD; } + if (config.getValue("guialpha", 0.8) != mAlpha) + { + mAlpha = config.getValue("guialpha", 0.8); + for (int a = 0; a < 9; a++) + { + tabImg[TAB_SELECTED].grid[a]->setAlpha(mAlpha); + tabImg[TAB_STANDARD].grid[a]->setAlpha(mAlpha); + } + } + // draw tab static_cast(graphics)-> drawImageRect(0, 0, getWidth(), getHeight(), tabImg[mode]); diff --git a/src/gui/widgets/tab.h b/src/gui/widgets/tab.h index 8382df83..23987cac 100644 --- a/src/gui/widgets/tab.h +++ b/src/gui/widgets/tab.h @@ -53,6 +53,7 @@ class Tab : public gcn::Tab static ImageRect tabImg[4]; /**< Tab state graphics */ static int mInstances; /**< Number of tab instances */ + static float mAlpha; }; #endif diff --git a/src/gui/window.cpp b/src/gui/window.cpp index 66f38aa8..35d47082 100644 --- a/src/gui/window.cpp +++ b/src/gui/window.cpp @@ -199,6 +199,7 @@ void Window::draw(gcn::Graphics *graphics) for_each(border.grid, border.grid + 9, std::bind2nd(std::mem_fun(&Image::setAlpha), config.getValue("guialpha", 0.8))); + closeImage->setAlpha(config.getValue("guialpha", 0.8)); } drawChildren(graphics); } -- cgit v1.2.3-60-g2f50 From 3cd6930d1417ae9cf087de8d3a9f40f053e75bf0 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 11:25:46 -0700 Subject: Applied alphas to the progress bar fill and text overlays as well. Signed-off-by: Ira Rice --- src/gui/progressbar.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/gui/progressbar.cpp b/src/gui/progressbar.cpp index d9db0c3c..5e8e6655 100644 --- a/src/gui/progressbar.cpp +++ b/src/gui/progressbar.cpp @@ -113,9 +113,12 @@ void ProgressBar::draw(gcn::Graphics *graphics) static_cast(graphics)-> drawImageRect(0, 0, getWidth(), getHeight(), mBorder); + const int alpha = mAlpha * 255; + // The bar if (mProgress > 0) { - graphics->setColor(gcn::Color(mRed, mGreen, mBlue, 200)); + + graphics->setColor(gcn::Color(mRed, mGreen, mBlue, alpha)); graphics->fillRectangle(gcn::Rectangle(4, 4, (int) (mProgress * (getWidth() - 8)), getHeight() - 8)); @@ -129,14 +132,16 @@ void ProgressBar::draw(gcn::Graphics *graphics) graphics->setFont(f); - graphics->setColor(gcn::Color(0, 0, 0)); + graphics->setColor(gcn::Color(0, 0, 0, alpha)); graphics->drawText(mText, textX + 1, textY, gcn::Graphics::CENTER); graphics->drawText(mText, textX, textY - 1, gcn::Graphics::CENTER); graphics->drawText(mText, textX, textY + 1, gcn::Graphics::CENTER); graphics->drawText(mText, textX - 1, textY, gcn::Graphics::CENTER); - graphics->setColor(gcn::Color(255, 255, 255)); + graphics->setColor(gcn::Color(255, 255, 255, alpha)); graphics->drawText(mText, textX, textY, gcn::Graphics::CENTER); + + graphics->setColor(gcn::Color(0, 0, 0)); } } -- cgit v1.2.3-60-g2f50 From e2e23a5889c6b4a9a94e27c04ad8e5f60c7137b9 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 12:32:48 -0700 Subject: Found a few more gui elements that didn't get exposed to transparency updating. Signed-off-by: Ira Rice --- src/gui/listbox.cpp | 18 +++++++++++++----- src/gui/listbox.h | 3 +++ src/gui/radiobutton.cpp | 39 +++++++++++++++++++++++++-------------- src/gui/radiobutton.h | 1 + 4 files changed, 42 insertions(+), 19 deletions(-) diff --git a/src/gui/listbox.cpp b/src/gui/listbox.cpp index 990a0ade..1de57593 100644 --- a/src/gui/listbox.cpp +++ b/src/gui/listbox.cpp @@ -26,6 +26,10 @@ #include "listbox.h" +#include "../configuration.h" + +float ListBox::mAlpha = config.getValue("guialpha", 0.8); + ListBox::ListBox(gcn::ListModel *listModel): gcn::ListBox(listModel) { @@ -36,19 +40,23 @@ void ListBox::draw(gcn::Graphics *graphics) if (!mListModel) return; - graphics->setColor(gcn::Color(235, 200, 115)); + if (config.getValue("guialpha", 0.8) != mAlpha) + mAlpha = config.getValue("guialpha", 0.8); + + const int alpha = mAlpha * 255; + + graphics->setColor(gcn::Color(235, 200, 115, alpha)); graphics->setFont(getFont()); - int fontHeight = getFont()->getHeight(); + const int fontHeight = getFont()->getHeight(); // Draw rectangle below the selected list element - if (mSelected >= 0) { + if (mSelected >= 0) graphics->fillRectangle(gcn::Rectangle(0, fontHeight * mSelected, getWidth(), fontHeight)); - } // Draw the list elements - graphics->setColor(gcn::Color(0, 0, 0)); + graphics->setColor(gcn::Color(0, 0, 0, 255)); for (int i = 0, y = 0; i < mListModel->getNumberOfElements(); ++i, y += fontHeight) diff --git a/src/gui/listbox.h b/src/gui/listbox.h index 3d0062bc..15f7afb4 100644 --- a/src/gui/listbox.h +++ b/src/gui/listbox.h @@ -49,6 +49,9 @@ class ListBox : public gcn::ListBox void draw(gcn::Graphics *graphics); void mouseDragged(gcn::MouseEvent &event); + + private: + static float mAlpha; }; #endif diff --git a/src/gui/radiobutton.cpp b/src/gui/radiobutton.cpp index 245112a7..de8d4d9d 100644 --- a/src/gui/radiobutton.cpp +++ b/src/gui/radiobutton.cpp @@ -21,12 +21,14 @@ #include "radiobutton.h" +#include "../configuration.h" #include "../graphics.h" #include "../resources/image.h" #include "../resources/resourcemanager.h" int RadioButton::instances = 0; +float RadioButton::mAlpha = config.getValue("guialpha", 0.8); Image *RadioButton::radioNormal; Image *RadioButton::radioChecked; Image *RadioButton::radioDisabled; @@ -43,6 +45,10 @@ RadioButton::RadioButton(const std::string& caption, const std::string& group, radioChecked = resman->getImage("graphics/gui/radioin.png"); radioDisabled = resman->getImage("graphics/gui/radioout.png"); radioDisabledChecked = resman->getImage("graphics/gui/radioin.png"); + radioNormal->setAlpha(mAlpha); + radioChecked->setAlpha(mAlpha); + radioDisabled->setAlpha(mAlpha); + radioDisabledChecked->setAlpha(mAlpha); } instances++; @@ -63,32 +69,37 @@ RadioButton::~RadioButton() void RadioButton::drawBox(gcn::Graphics* graphics) { + if (config.getValue("guialpha", 0.8) != mAlpha) + { + mAlpha = config.getValue("guialpha", 0.8); + radioNormal->setAlpha(mAlpha); + radioChecked->setAlpha(mAlpha); + radioDisabled->setAlpha(mAlpha); + radioDisabledChecked->setAlpha(mAlpha); + } + Image *box = NULL; - if (isSelected()) { - if (isEnabled()) { + if (isSelected()) + { + if (isEnabled()) box = radioChecked; - } else { + else box = radioDisabledChecked; - } - } else if (isEnabled()) { + } + else if (isEnabled()) box = radioNormal; - } else { + else box = radioDisabled; - } - if (box != NULL) { + if (box != NULL) static_cast(graphics)->drawImage(box, 2, 2); - } } void RadioButton::draw(gcn::Graphics* graphics) { - - graphics->pushClipArea(gcn::Rectangle(1, - 1, - getWidth() - 1, - getHeight() - 1)); + graphics->pushClipArea(gcn::Rectangle(1, 1, getWidth() - 1, + getHeight() - 1)); drawBox(graphics); diff --git a/src/gui/radiobutton.h b/src/gui/radiobutton.h index dcd62802..6ead9da0 100644 --- a/src/gui/radiobutton.h +++ b/src/gui/radiobutton.h @@ -57,6 +57,7 @@ class RadioButton : public gcn::RadioButton { private: static int instances; + static float mAlpha; static Image *radioNormal; static Image *radioChecked; static Image *radioDisabled; -- cgit v1.2.3-60-g2f50 From 7859699944d51056966c2f2415d1ade230c375a9 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 12:54:38 -0700 Subject: Some style cleanups to the image class. TODO: Find a way to fix the subimage class so that when OpenGL isn't enabled, GUI opacities can still be applied. Signed-off-by: Ira Rice --- src/resources/image.cpp | 43 ++++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/src/resources/image.cpp b/src/resources/image.cpp index c3310849..7a7e6ac8 100644 --- a/src/resources/image.cpp +++ b/src/resources/image.cpp @@ -167,7 +167,8 @@ Image *Image::load(SDL_Surface *tmpImage) tmpImage = SDL_CreateRGBSurface(SDL_SWSURFACE, realWidth, realHeight, 32, rmask, gmask, bmask, amask); - if (!tmpImage) { + if (!tmpImage) + { logger->log("Error, image convert failed: out of memory"); return NULL; } @@ -178,9 +179,8 @@ Image *Image::load(SDL_Surface *tmpImage) glGenTextures(1, &texture); glBindTexture(mTextureType, texture); - if (SDL_MUSTLOCK(tmpImage)) { + if (SDL_MUSTLOCK(tmpImage)) SDL_LockSurface(tmpImage); - } glTexImage2D( mTextureType, 0, 4, @@ -255,14 +255,13 @@ Image *Image::load(SDL_Surface *tmpImage) SDL_Surface *image; // Convert the surface to the current display format - if (hasAlpha) { + if (hasAlpha) image = SDL_DisplayFormatAlpha(tmpImage); - } - else { + else image = SDL_DisplayFormat(tmpImage); - } - if (!image) { + if (!image) + { logger->log("Error: Image convert failed."); return NULL; } @@ -274,14 +273,16 @@ void Image::unload() { mLoaded = false; - if (mImage) { + if (mImage) + { // Free the image surface. SDL_FreeSurface(mImage); mImage = NULL; } #ifdef USE_OPENGL - if (mGLImage) { + if (mGLImage) + { glDeleteTextures(1, &mGLImage); mGLImage = 0; } @@ -292,10 +293,9 @@ Image *Image::getSubImage(int x, int y, int width, int height) { // Create a new clipped sub-image #ifdef USE_OPENGL - if (mUseOpenGL) { + if (mUseOpenGL) return new SubImage(this, mGLImage, x, y, width, height, mTexWidth, mTexHeight); - } #endif return new SubImage(this, mImage, x, y, width, height); @@ -303,13 +303,13 @@ Image *Image::getSubImage(int x, int y, int width, int height) void Image::setAlpha(float a) { - if (mAlpha == a) { + if (mAlpha == a) return; - } mAlpha = a; - if (mImage) { + if (mImage) + { // Set the alpha value this image is drawn at SDL_SetAlpha(mImage, SDL_SRCALPHA, (int) (255 * mAlpha)); } @@ -321,14 +321,12 @@ float Image::getAlpha() } #ifdef USE_OPENGL -void -Image::setLoadAsOpenGL(bool useOpenGL) +void Image::setLoadAsOpenGL(bool useOpenGL) { Image::mUseOpenGL = useOpenGL; } -int -Image::powerOfTwo(int input) +int Image::powerOfTwo(int input) { int value; if (mTextureType == GL_TEXTURE_2D) @@ -353,7 +351,8 @@ Image::powerOfTwo(int input) SubImage::SubImage(Image *parent, SDL_Surface *image, int x, int y, int width, int height): - Image(image), mParent(parent) + Image(image), + mParent(parent) { mParent->incRef(); @@ -368,7 +367,8 @@ SubImage::SubImage(Image *parent, SDL_Surface *image, SubImage::SubImage(Image *parent, GLuint image, int x, int y, int width, int height, int texWidth, int texHeight): - Image(image, width, height, texWidth, texHeight), mParent(parent) + Image(image, width, height, texWidth, texHeight), + mParent(parent) { mParent->incRef(); @@ -394,3 +394,4 @@ Image *SubImage::getSubImage(int x, int y, int w, int h) { return mParent->getSubImage(mBounds.x + x, mBounds.y + y, w, h); } + -- cgit v1.2.3-60-g2f50 From 85a02d69af733b327e4f3bb8011472de95bbba07 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 13:23:25 -0700 Subject: Moved weight and slots back to the top of the inventory window. Signed-off-by: Ira Rice --- src/gui/inventorywindow.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index 58c13910..d7cd7ccd 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -91,16 +91,16 @@ InventoryWindow::InventoryWindow(int invSize): setMinHeight(130); setMinWidth(mWeightLabel->getWidth() + mSlotsLabel->getWidth() + 310); - place(0, 0, mInvenScroll, 7, 4); - place(0, 4, mWeightLabel).setPadding(3); - place(1, 4, mWeightBar, 2); - place(3, 4, mSlotsLabel).setPadding(3); - place(4, 4, mSlotsBar, 2); + place(0, 0, mWeightLabel).setPadding(3); + place(1, 0, mWeightBar, 2); + place(3, 0, mSlotsLabel).setPadding(3); + place(4, 0, mSlotsBar, 2); + place(0, 1, mInvenScroll, 7, 4); place(5, 5, mDropButton); place(6, 5, mUseButton); Layout &layout = getLayout(); - layout.setRowHeight(0, Layout::AUTO_SET); + layout.setRowHeight(0, mDropButton->getHeight()); loadWindowState(); setLocationRelativeTo(getParent()); -- cgit v1.2.3-60-g2f50 From 296b5ce5cf2316dad9b3ebc3328ec1f3a1375a2e Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 13:27:21 -0700 Subject: Fixed the item container so that it displays all item captions with the default font. Signed-off-by: Ira Rice --- src/gui/itemcontainer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/itemcontainer.cpp b/src/gui/itemcontainer.cpp index ab3da9f6..caae3dca 100644 --- a/src/gui/itemcontainer.cpp +++ b/src/gui/itemcontainer.cpp @@ -123,6 +123,7 @@ void ItemContainer::draw(gcn::Graphics *graphics) } // Draw item caption + graphics->setFont(getFont()); graphics->setColor(0x000000); graphics->drawText( (item->isEquipped() ? "Eq." : toString(item->getQuantity())), -- cgit v1.2.3-60-g2f50 From 678009add727cc34f9c157f2cf41c4c0ac8f7f30 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 14:58:27 -0700 Subject: Reflowed status window using the layout class. Signed-off-by: Ira Rice --- src/gui/status.cpp | 216 +++++++++++++++-------------------------------------- src/gui/status.h | 6 +- 2 files changed, 62 insertions(+), 160 deletions(-) diff --git a/src/gui/status.cpp b/src/gui/status.cpp index bd6048f3..86d3f0d0 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -26,6 +26,8 @@ #include "status.h" #include "windowcontainer.h" +#include "widgets/layout.h" + #include "../localplayer.h" #include "../utils/gettext.h" @@ -39,8 +41,7 @@ StatusWindow::StatusWindow(LocalPlayer *player): setWindowName(_("Status")); setCloseButton(true); setDefaultSize((windowContainer->getWidth() - 365) / 2, - (windowContainer->getHeight() - 255) / 2, 400, 275); - loadWindowState(); + (windowContainer->getHeight() - 255) / 2, 400, 335); // ---------------------- // Status Part @@ -52,70 +53,15 @@ StatusWindow::StatusWindow(LocalPlayer *player): mHpLabel = new gcn::Label(_("HP:")); mHpBar = new ProgressBar(1.0f, 80, 15, 0, 171, 34); - mHpValueLabel = new gcn::Label; mXpLabel = new gcn::Label(_("Exp:")); mXpBar = new ProgressBar(1.0f, 80, 15, 143, 192, 211); - mXpValueLabel = new gcn::Label; mMpLabel = new gcn::Label(_("MP:")); mMpBar = new ProgressBar(1.0f, 80, 15, 26, 102, 230); - mMpValueLabel = new gcn::Label; - - mJobXpLabel = new gcn::Label(_("Job:")); - mJobXpBar = new ProgressBar(1.0f, 80, 15, 220, 135, 203); - mJobValueLabel = new gcn::Label; - - int y = 3; - int x = 5; - - mLvlLabel->setPosition(x, y); - x += mLvlLabel->getWidth() + 40; - mJobLvlLabel->setPosition(x, y); - x += mJobLvlLabel->getWidth() + 40; - mGpLabel->setPosition(x, y); - - y += mLvlLabel->getHeight() + 5; // Next Row - x = 5; - - mHpLabel->setPosition(x, y); - x += mHpLabel->getWidth() + 5; - mHpBar->setPosition(x, y); - x += mHpBar->getWidth() + 5; - mHpValueLabel->setPosition(x, y); - - mXpLabel->setPosition(175, y); - mXpBar->setPosition(205, y); - mXpValueLabel->setPosition(290, y); - - y += mHpLabel->getHeight() + 5; // Next Row - x = 5; - - mMpLabel->setPosition(x, y); - x += mMpLabel->getWidth() + 5; - mMpBar->setPosition(x, y); - x += mMpBar->getWidth() + 5; - mMpValueLabel->setPosition(x, y); - - mJobXpLabel->setPosition(175, y); - mJobXpBar->setPosition(205, y); - mJobValueLabel->setPosition(290, y); - - add(mLvlLabel); - add(mJobLvlLabel); - add(mGpLabel); - add(mHpLabel); - add(mHpValueLabel); - add(mMpLabel); - add(mMpValueLabel); - add(mXpLabel); - add(mXpValueLabel); - add(mJobXpLabel); - add(mJobValueLabel); - add(mHpBar); - add(mMpBar); - add(mXpBar); - add(mJobXpBar); + + mJobLabel = new gcn::Label(_("Job:")); + mJobBar = new ProgressBar(1.0f, 80, 15, 220, 135, 203); // ---------------------- // Stats Part @@ -144,7 +90,8 @@ StatusWindow::StatusWindow(LocalPlayer *player): mStatsReflexPoints = new gcn::Label; // New labels - for (int i = 0; i < 6; i++) { + for (int i = 0; i < 6; i++) + { mStatsLabel[i] = new gcn::Label; mStatsDisplayLabel[i] = new gcn::Label; mPointsLabel[i] = new gcn::Label("0"); @@ -159,68 +106,53 @@ StatusWindow::StatusWindow(LocalPlayer *player): mStatsButton[4] = new Button("+", "DEX", this); mStatsButton[5] = new Button("+", "LUK", this); - - // Set position - mStatsTitleLabel->setPosition(mMpLabel->getX(), mMpLabel->getY() + 23 ); - mStatsTotalLabel->setPosition(110, mStatsTitleLabel->getY() + 15); - int totalLabelY = mStatsTotalLabel->getY(); - mStatsCostLabel->setPosition(170, totalLabelY); - - for (int i = 0; i < 6; i++) - { - mStatsLabel[i]->setPosition(5, mStatsTotalLabel->getY() + (i * 23) + 15); - mStatsDisplayLabel[i]->setPosition(115, - totalLabelY + (i * 23) + 15); - mStatsButton[i]->setPosition(145, totalLabelY + (i * 23) + 10); - mPointsLabel[i]->setPosition(175, totalLabelY + (i * 23) + 15); - } - - mRemainingStatsPointsLabel->setPosition(5, mPointsLabel[5]->getY() + 25); - - mStatsAttackLabel->setPosition(220, mStatsLabel[0]->getY()); - mStatsDefenseLabel->setPosition(220, mStatsLabel[1]->getY()); - mStatsMagicAttackLabel->setPosition(220, mStatsLabel[2]->getY()); - mStatsMagicDefenseLabel->setPosition(220, mStatsLabel[3]->getY()); - mStatsAccuracyLabel->setPosition(220, mStatsLabel[4]->getY()); - mStatsEvadeLabel->setPosition(220, mStatsLabel[5]->getY()); - mStatsReflexLabel->setPosition(220, mRemainingStatsPointsLabel->getY()); - - mStatsAttackPoints->setPosition(310, mStatsLabel[0]->getY()); - mStatsDefensePoints->setPosition(310, mStatsLabel[1]->getY()); - mStatsMagicAttackPoints->setPosition(310, mStatsLabel[2]->getY()); - mStatsMagicDefensePoints->setPosition(310, mStatsLabel[3]->getY()); - mStatsAccuracyPoints->setPosition(310, mStatsLabel[4]->getY()); - mStatsEvadePoints->setPosition(310, mStatsLabel[5]->getY()); - mStatsReflexPoints->setPosition(310, mRemainingStatsPointsLabel->getY()); - // Assemble - add(mStatsTitleLabel); - add(mStatsTotalLabel); - add(mStatsCostLabel); + ContainerPlacer place; + place = getPlacer(0, 0); + + place(0, 0, mLvlLabel, 3); + place(5, 0, mJobLvlLabel, 3); + place(8, 0, mGpLabel, 3); + place(1, 1, mHpLabel); + place(2, 1, mHpBar, 3); + place(6, 1, mXpLabel); + place(7, 1, mXpBar, 3); + place(1, 2, mMpLabel); + place(2, 2, mMpBar, 3); + place(6, 2, mJobLabel); + place(7, 2, mJobBar, 3); + place.getCell().matchColWidth(0, 1); + place = getPlacer(0, 3); + place(0, 0, mStatsTitleLabel, 3); + place(4, 1, mStatsTotalLabel, 2); + place(7, 1, mStatsCostLabel, 2); for(int i = 0; i < 6; i++) { - add(mStatsLabel[i]); - add(mStatsDisplayLabel[i]); - add(mStatsButton[i]); - add(mPointsLabel[i]); + place(0, 2 + i, mStatsLabel[i], 3).setPadding(5); + place(4, 2 + i, mStatsDisplayLabel[i]).setPadding(5); + place(6, 2 + i, mStatsButton[i]); + place(7, 2 + i, mPointsLabel[i]).setPadding(5); } - add(mStatsAttackLabel); - add(mStatsDefenseLabel); - add(mStatsMagicAttackLabel); - add(mStatsMagicDefenseLabel); - add(mStatsAccuracyLabel); - add(mStatsEvadeLabel); - add(mStatsReflexLabel); - - add(mStatsAttackPoints); - add(mStatsDefensePoints); - add(mStatsMagicAttackPoints); - add(mStatsMagicDefensePoints); - add(mStatsAccuracyPoints); - add(mStatsEvadePoints); - add(mStatsReflexPoints); - - add(mRemainingStatsPointsLabel); + place(10, 2, mStatsAttackLabel, 3).setPadding(5); + place(10, 3, mStatsDefenseLabel, 3).setPadding(5); + place(10, 4, mStatsMagicAttackLabel, 3).setPadding(5); + place(10, 5, mStatsMagicDefenseLabel, 3).setPadding(5); + place(10, 6, mStatsAccuracyLabel, 3).setPadding(5); + place(10, 7, mStatsEvadeLabel, 3).setPadding(5); + place(10, 8, mStatsReflexLabel, 3).setPadding(5); + place(13, 2, mStatsAttackPoints, 3).setPadding(5); + place(13, 3, mStatsDefensePoints, 3).setPadding(5); + place(13, 4, mStatsMagicAttackPoints, 3).setPadding(5); + place(13, 5, mStatsMagicDefensePoints, 3).setPadding(5); + place(13, 6, mStatsAccuracyPoints, 3).setPadding(5); + place(13, 7, mStatsEvadePoints, 3).setPadding(5); + place(13, 8, mStatsReflexPoints, 3).setPadding(5); + place(0, 8, mRemainingStatsPointsLabel, 3).setPadding(5); + + Layout &layout = getLayout(); + layout.setRowHeight(0, Layout::AUTO_SET); + + loadWindowState(); } void StatusWindow::update() @@ -236,21 +168,17 @@ void StatusWindow::update() mGpLabel->setCaption(strprintf(_("Money: %d GP"), mPlayer->mGp)); mGpLabel->adjustSize(); - mHpValueLabel->setCaption(toString(mPlayer->mHp) + - "/" + toString(mPlayer->mMaxHp)); - mHpValueLabel->adjustSize(); + mHpBar->setText(toString(mPlayer->mHp) + + "/" + toString(mPlayer->mMaxHp)); - mMpValueLabel->setCaption(toString(mPlayer->mMp) + - "/" + toString(mPlayer->mMaxMp)); - mMpValueLabel->adjustSize(); + mMpBar->setText(toString(mPlayer->mMp) + + "/" + toString(mPlayer->mMaxMp)); - mXpValueLabel->setCaption(toString(mPlayer->getXp()) + - "/" + toString(mPlayer->mXpForNextLevel)); - mXpValueLabel->adjustSize(); + mXpBar->setText(toString(mPlayer->getXp()) + + "/" + toString(mPlayer->mXpForNextLevel)); - mJobValueLabel->setCaption(toString(mPlayer->mJobXp) + - "/" + toString(mPlayer->mJobXpForNextLevel)); - mJobValueLabel->adjustSize(); + mJobBar->setText(toString(mPlayer->mJobXp) + + "/" + toString(mPlayer->mJobXpForNextLevel)); // HP Bar coloration if (mPlayer->mHp < int(mPlayer->mMaxHp / 3)) @@ -271,7 +199,7 @@ void StatusWindow::update() mXpBar->setProgress( (float) mPlayer->getXp() / (float) mPlayer->mXpForNextLevel); - mJobXpBar->setProgress( + mJobBar->setProgress( (float) mPlayer->mJobXp / (float) mPlayer->mJobXpForNextLevel); // Stats Part @@ -336,30 +264,6 @@ void StatusWindow::update() // Reflex % mStatsReflexPoints->setCaption(toString(mPlayer->DEX / 4)); // + counter mStatsReflexPoints->adjustSize(); - - // Update Second column widgets position - mJobLvlLabel->setPosition(mLvlLabel->getX() + mLvlLabel->getWidth() + 20, - mLvlLabel->getY()); - mGpLabel->setPosition(mJobLvlLabel->getX() + mJobLvlLabel->getWidth() + 20, - mJobLvlLabel->getY()); - - mXpLabel->setPosition( - mHpValueLabel->getX() + mHpValueLabel->getWidth() + 10, - mHpLabel->getY()); - mXpBar->setPosition( - mXpLabel->getX() + mXpLabel->getWidth() + 5, - mXpLabel->getY()); - mXpValueLabel->setPosition( - mXpBar->getX() + mXpBar->getWidth() + 5, - mXpLabel->getY()); - - mJobXpLabel->setPosition(mXpBar->getX() - mJobXpLabel->getWidth() - 5, - mMpLabel->getY()); - mJobXpBar->setPosition( - mJobXpLabel->getX() + mJobXpLabel->getWidth() + 5, - mJobXpLabel->getY()); - mJobValueLabel->setPosition(mJobXpBar->getX() + mJobXpBar->getWidth() + 5, - mJobXpLabel->getY()); } void StatusWindow::draw(gcn::Graphics *g) diff --git a/src/gui/status.h b/src/gui/status.h index 14a7617e..1e1c4e98 100644 --- a/src/gui/status.h +++ b/src/gui/status.h @@ -69,11 +69,9 @@ class StatusWindow : public Window, public gcn::ActionListener */ gcn::Label *mLvlLabel, *mJobLvlLabel; gcn::Label *mGpLabel; - gcn::Label *mHpLabel, *mHpValueLabel; - gcn::Label *mMpLabel, *mMpValueLabel; - gcn::Label *mXpLabel, *mXpValueLabel, *mJobXpLabel, *mJobValueLabel; + gcn::Label *mHpLabel, *mMpLabel, *mXpLabel, *mJobLabel; ProgressBar *mHpBar, *mMpBar; - ProgressBar *mXpBar, *mJobXpBar; + ProgressBar *mXpBar, *mJobBar; /** * Derived Statistics captions -- cgit v1.2.3-60-g2f50 From ff6cd3ac0855cf516e364382153a77f61521ccdb Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 16:08:19 -0700 Subject: Swapped the default settings for two labels, which had been mixed up. Signed-off-by: Ira Rice --- src/gui/status.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/status.cpp b/src/gui/status.cpp index 86d3f0d0..8b760427 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -48,8 +48,8 @@ StatusWindow::StatusWindow(LocalPlayer *player): // ---------------------- mLvlLabel = new gcn::Label(strprintf(_("Level: %d"), 0)); - mGpLabel = new gcn::Label(strprintf(_("Job: %d"), 0)); - mJobLvlLabel = new gcn::Label(strprintf(_("Money: %d GP"), 0)); + mJobLvlLabel = new gcn::Label(strprintf(_("Job: %d"), 0)); + mGpLabel = new gcn::Label(strprintf(_("Money: %d GP"), 0)); mHpLabel = new gcn::Label(_("HP:")); mHpBar = new ProgressBar(1.0f, 80, 15, 0, 171, 34); -- cgit v1.2.3-60-g2f50 From 202280724138614924e473a693dc974929ef5836 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 17:49:31 -0700 Subject: Made the recorder class messages translatable, as well as moved the recorder over to the layout code (not that it helps much at the moment). Signed-off-by: Ira Rice --- po/POTFILES.in | 1 + src/gui/recorder.cpp | 31 +++++++++++++++++++++++-------- 2 files changed, 24 insertions(+), 8 deletions(-) diff --git a/po/POTFILES.in b/po/POTFILES.in index 051ffeaa..fa3b2f9f 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -25,6 +25,7 @@ src/gui/npcstringdialog.cpp src/gui/npc_text.cpp src/gui/ok_dialog.cpp src/gui/popupmenu.cpp +src/gui/recorder.cpp src/gui/recorder.h src/gui/register.cpp src/gui/sell.cpp diff --git a/src/gui/recorder.cpp b/src/gui/recorder.cpp index 02eddbe5..9db1df2a 100644 --- a/src/gui/recorder.cpp +++ b/src/gui/recorder.cpp @@ -24,18 +24,33 @@ #include "button.h" #include "chat.h" #include "recorder.h" +#include "windowcontainer.h" +#include "widgets/layout.h" + +#include "../utils/gettext.h" #include "../utils/trim.h" Recorder::Recorder(ChatWindow *chat, const std::string &title, const std::string &buttonTxt) : Window(title) { + setWindowName(_("Recorder")); + const int offsetX = 2 * getPadding() + 10; + const int offsetY = getTitleBarHeight() + getPadding() + 10; + mChat = chat; Button *button = new Button(buttonTxt, "activate", this); - setContentSize(button->getWidth() + 10, button->getHeight() + 10); - button->setPosition(5, 5); - add(button); + setDefaultSize(0, windowContainer->getHeight() - 123 - button->getHeight() - + offsetY, button->getWidth() + offsetX, button->getHeight() + + offsetY); + + place(0, 0, button); + + Layout &layout = getLayout(); + layout.setRowHeight(0, Layout::AUTO_SET); + + loadWindowState(); } void Recorder::record(const std::string &msg) @@ -62,16 +77,16 @@ void Recorder::changeRecordingStatus(const std::string &msg) * Message should go after mStream is closed so that it isn't * recorded. */ - mChat->chatLog("Finishing recording.", BY_SERVER); + mChat->chatLog(_("Finishing recording."), BY_SERVER); } else { - mChat->chatLog("Not currently recording.", BY_SERVER); + mChat->chatLog(_("Not currently recording."), BY_SERVER); } } else if (mStream.is_open()) { - mChat->chatLog("Already recording.", BY_SERVER); + mChat->chatLog(_("Already recording."), BY_SERVER); } else { @@ -79,7 +94,7 @@ void Recorder::changeRecordingStatus(const std::string &msg) * Message should go before mStream is opened so that it isn't * recorded. */ - mChat->chatLog("Starting to record...", BY_SERVER); + mChat->chatLog(_("Starting to record..."), BY_SERVER); std::string file = std::string(PHYSFS_getUserDir()) + "/.aethyra/" + msgCopy; mStream.open(file.c_str(), std::ios_base::trunc); @@ -87,7 +102,7 @@ void Recorder::changeRecordingStatus(const std::string &msg) if (mStream.is_open()) setVisible(true); else - mChat->chatLog("Failed to start recording.", BY_SERVER); + mChat->chatLog(_("Failed to start recording."), BY_SERVER); } } -- cgit v1.2.3-60-g2f50 From 5b47d0933dcfb6e898ccfa56efe53eb53b7d30cb Mon Sep 17 00:00:00 2001 From: David Athay Date: Wed, 28 Jan 2009 11:47:05 +0000 Subject: Added highlighting ability to tabs. --- src/gui/widgets/tab.cpp | 30 ++++++++++++++++++++++-------- src/gui/widgets/tab.h | 7 +++++++ 2 files changed, 29 insertions(+), 8 deletions(-) diff --git a/src/gui/widgets/tab.cpp b/src/gui/widgets/tab.cpp index 6f7f497a..5465b431 100644 --- a/src/gui/widgets/tab.cpp +++ b/src/gui/widgets/tab.cpp @@ -21,8 +21,9 @@ #include -#include "tab.h" +#include +#include "tab.h" #include "tabbedarea.h" #include "../../configuration.h" @@ -81,6 +82,7 @@ Tab::~Tab() void Tab::init() { setFrameSize(0); + mHighlighted = false; if (mInstances == 0) { @@ -112,16 +114,23 @@ void Tab::init() void Tab::draw(gcn::Graphics *graphics) { - int mode; + int mode = TAB_STANDARD; // check which type of tab to draw - if (mTabbedArea && mTabbedArea->isTabSelected(this)) - { - mode = TAB_SELECTED; - } - else + if (mTabbedArea) { - mode = TAB_STANDARD; + if(mTabbedArea->isTabSelected(this)) + { + mode = TAB_SELECTED; + // if tab is selected, it doesnt need to highlight activity + mLabel->setForegroundColor(gcn::Color(0, 0, 0)); + mHighlighted = false; + } + else if (mHighlighted) + { + mode = TAB_HIGHLIGHTED; + mLabel->setForegroundColor(gcn::Color(255, 0, 0)); + } } if (config.getValue("guialpha", 0.8) != mAlpha) @@ -141,3 +150,8 @@ void Tab::draw(gcn::Graphics *graphics) // draw label drawChildren(graphics); } + +void Tab::setHighlighted(bool high) +{ + mHighlighted = high; +} diff --git a/src/gui/widgets/tab.h b/src/gui/widgets/tab.h index 23987cac..3af4e2bf 100644 --- a/src/gui/widgets/tab.h +++ b/src/gui/widgets/tab.h @@ -47,6 +47,11 @@ class Tab : public gcn::Tab */ void draw(gcn::Graphics *graphics); + /** + * Set tab highlighted + */ + void setHighlighted(bool high); + private: /** Load images if no other instances exist yet */ void init(); @@ -54,6 +59,8 @@ class Tab : public gcn::Tab static ImageRect tabImg[4]; /**< Tab state graphics */ static int mInstances; /**< Number of tab instances */ static float mAlpha; + + bool mHighlighted; }; #endif -- cgit v1.2.3-60-g2f50 From 0cf29b14232b08c7db9259bce26e96b59dac750c Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 30 Jan 2009 22:13:38 -0700 Subject: Made the shoplist box alpha blend. Signed-off-by: Ira Rice --- src/gui/shoplistbox.cpp | 14 +++++++++++--- src/gui/shoplistbox.h | 2 ++ 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp index 765b9f08..9db33ac6 100644 --- a/src/gui/shoplistbox.cpp +++ b/src/gui/shoplistbox.cpp @@ -28,10 +28,13 @@ #include "shoplistbox.h" +#include "../configuration.h" #include "../graphics.h" const int ITEM_ICON_SIZE = 32; +float ShopListBox::mAlpha = config.getValue("guialpha", 0.8); + ShopListBox::ShopListBox(gcn::ListModel *listModel): ListBox(listModel), mPlayerMoney(0) @@ -59,6 +62,11 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics) if (!mListModel) return; + if (config.getValue("guialpha", 0.8) != mAlpha) + mAlpha = config.getValue("guialpha", 0.8); + + const int alpha = mAlpha * 255; + Graphics *graphics = static_cast(gcnGraphics); graphics->setFont(getFont()); @@ -68,16 +76,16 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics) i < mListModel->getNumberOfElements(); ++i, y += mRowHeight) { - gcn::Color backgroundColor = gcn::Color(0xffffff); + gcn::Color backgroundColor = gcn::Color(255, 255, 255, alpha); if (i == mSelected) { - backgroundColor = gcn::Color(235, 200, 115); + backgroundColor = gcn::Color(235, 200, 115, alpha); } else if (mShopItems && mPlayerMoney < mShopItems->at(i)->getPrice() && mPriceCheck) { - backgroundColor = gcn::Color(0x919191); + backgroundColor = gcn::Color(145, 145, 145, alpha); } graphics->setColor(backgroundColor); diff --git a/src/gui/shoplistbox.h b/src/gui/shoplistbox.h index 733af4eb..12413585 100644 --- a/src/gui/shoplistbox.h +++ b/src/gui/shoplistbox.h @@ -86,6 +86,8 @@ class ShopListBox : public ListBox unsigned int mRowHeight; /**< Row Height */ + static float mAlpha; + bool mPriceCheck; }; -- cgit v1.2.3-60-g2f50 From 269e05e71f09cac3d181f2042cde01e5541658f3 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Tue, 3 Feb 2009 12:13:16 -0700 Subject: Made highlights configurable through the color dialog. Signed-off-by: Ira Rice --- src/gui/browserbox.cpp | 17 ++++++++++++++--- src/gui/colour.cpp | 1 + src/gui/listbox.cpp | 7 ++++++- src/gui/shoplistbox.cpp | 7 ++++++- 4 files changed, 27 insertions(+), 5 deletions(-) diff --git a/src/gui/browserbox.cpp b/src/gui/browserbox.cpp index 6fd0482a..cd5479c8 100644 --- a/src/gui/browserbox.cpp +++ b/src/gui/browserbox.cpp @@ -122,7 +122,18 @@ void BrowserBox::addRow(const std::string &row) //discard older rows when a row limit has been set if (mMaxRows > 0) { - while (mTextRows.size() > mMaxRows) mTextRows.pop_front(); + while (mTextRows.size() > mMaxRows) + { + mTextRows.pop_front(); + for (unsigned int i = 0; i < mLinks.size(); i++) + { + mLinks[i].y1 -= font->getHeight(); + mLinks[i].y2 -= font->getHeight(); + + if (mLinks[i].y1 < 0) + mLinks.erase(mLinks.begin() + i); + } + } } // Auto size mode @@ -238,9 +249,10 @@ void BrowserBox::draw(gcn::Graphics *graphics) if (mSelectedLink >= 0) { + bool valid; if ((mHighMode & BACKGROUND)) { - graphics->setColor(gcn::Color(HIGHLIGHT)); + graphics->setColor(gcn::Color(textColour->getColour('H', valid))); graphics->fillRectangle(gcn::Rectangle( mLinks[mSelectedLink].x1, mLinks[mSelectedLink].y1, @@ -251,7 +263,6 @@ void BrowserBox::draw(gcn::Graphics *graphics) if ((mHighMode & UNDERLINE)) { - bool valid; graphics->setColor(gcn::Color(textColour->getColour('<', valid))); graphics->drawLine( mLinks[mSelectedLink].x1, diff --git a/src/gui/colour.cpp b/src/gui/colour.cpp index e6ceeaca..075e9861 100644 --- a/src/gui/colour.cpp +++ b/src/gui/colour.cpp @@ -32,6 +32,7 @@ Colour::Colour() { addColour('C', 0x000000, _("Chat")); addColour('G', 0xff0000, _("GM")); + addColour('H', 0xebc873, _("Highlight")); addColour('Y', 0x1fa052, _("Player")); addColour('W', 0x0000ff, _("Whisper")); addColour('I', 0xf1dc27, _("Is")); diff --git a/src/gui/listbox.cpp b/src/gui/listbox.cpp index 1de57593..643d234e 100644 --- a/src/gui/listbox.cpp +++ b/src/gui/listbox.cpp @@ -24,6 +24,7 @@ #include #include +#include "colour.h" #include "listbox.h" #include "../configuration.h" @@ -43,9 +44,13 @@ void ListBox::draw(gcn::Graphics *graphics) if (config.getValue("guialpha", 0.8) != mAlpha) mAlpha = config.getValue("guialpha", 0.8); + bool valid; + const int red = (textColour->getColour('H', valid) >> 16) & 0xFF; + const int green = (textColour->getColour('H', valid) >> 8) & 0xFF; + const int blue = textColour->getColour('H', valid) & 0xFF; const int alpha = mAlpha * 255; - graphics->setColor(gcn::Color(235, 200, 115, alpha)); + graphics->setColor(gcn::Color(red, green, blue, alpha)); graphics->setFont(getFont()); const int fontHeight = getFont()->getHeight(); diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp index 9db33ac6..3d17fd55 100644 --- a/src/gui/shoplistbox.cpp +++ b/src/gui/shoplistbox.cpp @@ -26,6 +26,7 @@ #include #include +#include "colour.h" #include "shoplistbox.h" #include "../configuration.h" @@ -65,6 +66,10 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics) if (config.getValue("guialpha", 0.8) != mAlpha) mAlpha = config.getValue("guialpha", 0.8); + bool valid; + const int red = (textColour->getColour('H', valid) >> 16) & 0xFF; + const int green = (textColour->getColour('H', valid) >> 8) & 0xFF; + const int blue = textColour->getColour('H', valid) & 0xFF; const int alpha = mAlpha * 255; Graphics *graphics = static_cast(gcnGraphics); @@ -80,7 +85,7 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics) if (i == mSelected) { - backgroundColor = gcn::Color(235, 200, 115, alpha); + backgroundColor = gcn::Color(red, green, blue, alpha); } else if (mShopItems && mPlayerMoney < mShopItems->at(i)->getPrice() && mPriceCheck) -- cgit v1.2.3-60-g2f50 From 6c5d9cd16b750ae9404407171a5641b5e0ee78b5 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Tue, 3 Feb 2009 13:00:05 -0700 Subject: Changed the listbox in the color setup pane to use the customized listbox. Signed-off-by: Ira Rice --- src/gui/setup_colours.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/setup_colours.cpp b/src/gui/setup_colours.cpp index c08c94ef..95e6fff0 100644 --- a/src/gui/setup_colours.cpp +++ b/src/gui/setup_colours.cpp @@ -26,6 +26,7 @@ #include #include "colour.h" +#include "listbox.h" #include "scrollarea.h" #include "setup_colours.h" #include "slider.h" @@ -42,7 +43,7 @@ Setup_Colours::Setup_Colours() : { setOpaque(false); - mColourBox = new gcn::ListBox(textColour); + mColourBox = new ListBox(textColour); mColourBox->setActionEventId("colour_box"); mColourBox->addActionListener(this); -- cgit v1.2.3-60-g2f50 From 8857a59c3818c1ce6eeb6c054cb5543bfc35c087 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Tue, 3 Feb 2009 14:38:40 -0700 Subject: Fixed up table class to allow for different background colors, as well as defining whether the given table is opaque or not. Signed-off-by: Ira Rice --- src/gui/setup_players.cpp | 3 +- src/gui/skill.cpp | 11 ++-- src/gui/skill.h | 1 - src/gui/table.cpp | 139 +++++++++++++++++++++++++++++++--------------- src/gui/table.h | 28 +++++++++- src/gui/table_model.cpp | 28 +--------- src/gui/table_model.h | 33 +---------- 7 files changed, 128 insertions(+), 115 deletions(-) diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index a4582b48..c8546b4b 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -223,12 +223,13 @@ Setup_Players::Setup_Players(): mIgnoreActionChoicesBox(new gcn::DropDown(new IgnoreChoicesListModel())) { setOpaque(false); + mPlayerTable->setOpaque(false); int table_width = NAME_COLUMN_WIDTH + RELATION_CHOICE_COLUMN_WIDTH; mPlayerTableTitleModel->fixColumnWidth(NAME_COLUMN, NAME_COLUMN_WIDTH); mPlayerTableTitleModel->fixColumnWidth(RELATION_CHOICE_COLUMN, RELATION_CHOICE_COLUMN_WIDTH); - mPlayerTitleTable->setDimension(gcn::Rectangle(10, 10, table_width, 10)); + mPlayerTitleTable->setDimension(gcn::Rectangle(10, 10, table_width - 1, 10)); mPlayerTitleTable->setBackgroundColor(gcn::Color(0xbf, 0xbf, 0xbf)); for (int i = 0; i < COLUMNS_NR; i++) diff --git a/src/gui/skill.cpp b/src/gui/skill.cpp index 9d23cc3c..60f8ee65 100644 --- a/src/gui/skill.cpp +++ b/src/gui/skill.cpp @@ -53,7 +53,7 @@ class SkillGuiTableModel : public StaticTableModel { public: SkillGuiTableModel(SkillDialog *dialog) : - StaticTableModel(0, 3, 0xbdb5aa) + StaticTableModel(0, 3) { mEntriesNr = 0; mDialog = dialog; @@ -125,6 +125,7 @@ SkillDialog::SkillDialog(): initSkillinfo(); mTableModel = new SkillGuiTableModel(this); mTable.setModel(mTableModel); + mTable.setOpaque(false); mTable.setLinewiseSelection(true); setWindowName(_("Skills")); @@ -134,14 +135,12 @@ SkillDialog::SkillDialog(): setMinHeight(50 + mTableModel->getHeight()); setMinWidth(200); -// mSkillListBox = new ListBox(this); ScrollArea *skillScrollArea = new ScrollArea(&mTable); mPointsLabel = new gcn::Label(strprintf(_("Skill points: %d"), 0)); mIncButton = new Button(_("Up"), _("inc"), this); mUseButton = new Button(_("Use"), _("use"), this); mUseButton->setEnabled(false); -// mSkillListBox->setActionEventId("skill"); mTable.setActionEventId("skill"); skillScrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); @@ -155,7 +154,6 @@ SkillDialog::SkillDialog(): Layout &layout = getLayout(); layout.setRowHeight(0, Layout::AUTO_SET); -// mSkillListBox->addActionListener(this); mTable.addActionListener(this); setLocationRelativeTo(getParent()); @@ -171,7 +169,7 @@ void SkillDialog::action(const gcn::ActionEvent &event) if (event.getId() == "inc") { // Increment skill - int selectedSkill = mTable.getSelectedRow();//mSkillListBox->getSelected(); + int selectedSkill = mTable.getSelectedRow(); if (selectedSkill >= 0) player_node->raiseSkill(mSkillList[selectedSkill]->id); } @@ -278,7 +276,8 @@ static void initSkillinfo(void) std::string name = XML::getProperty(node, "name", ""); bool modifiable = !atoi(XML::getProperty(node, "fixed", "0").c_str()); - if (index >= 0) { + if (index >= 0) + { skill_db.resize(index + 1, emptySkillInfo); skill_db[index].name = name; skill_db[index].modifiable = modifiable; diff --git a/src/gui/skill.h b/src/gui/skill.h index 955666d9..45cfd059 100644 --- a/src/gui/skill.h +++ b/src/gui/skill.h @@ -30,7 +30,6 @@ #include "scrollarea.h" #include "table.h" #include "window.h" -#include "table.h" #include "../guichanfwd.h" diff --git a/src/gui/table.cpp b/src/gui/table.cpp index c4265097..bccdc900 100644 --- a/src/gui/table.cpp +++ b/src/gui/table.cpp @@ -24,8 +24,13 @@ #include #include +#include "colour.h" #include "table.h" +#include "../configuration.h" + +float GuiTable::mAlpha = config.getValue("guialpha", 0.8); + class GuiTableActionListener : public gcn::ActionListener { public: @@ -49,7 +54,8 @@ GuiTableActionListener::GuiTableActionListener(GuiTable *table, gcn::Widget *wid mColumn(column), mWidget(widget) { - if (widget) { + if (widget) + { widget->addActionListener(this); widget->_setParent(table); } @@ -57,7 +63,8 @@ GuiTableActionListener::GuiTableActionListener(GuiTable *table, gcn::Widget *wid GuiTableActionListener::~GuiTableActionListener(void) { - if (mWidget) { + if (mWidget) + { mWidget->removeActionListener(this); mWidget->_setParent(NULL); } @@ -70,8 +77,11 @@ void GuiTableActionListener::action(const gcn::ActionEvent& actionEvent) } -GuiTable::GuiTable(TableModel *initial_model) : +GuiTable::GuiTable(TableModel *initial_model, gcn::Color background, + bool opacity) : mLinewiseMode(false), + mOpaque(opacity), + mBackgroundColor(background), mModel(NULL), mSelectedRow(0), mSelectedColumn(0), @@ -94,16 +104,17 @@ TableModel* GuiTable::getModel(void) const void GuiTable::setModel(TableModel *new_model) { - if (mModel) { + if (mModel) + { uninstallActionListeners(); mModel->removeListener(this); } - mModel = new_model; installActionListeners(); - if (new_model) { + if (new_model) + { new_model->installListener(this); recomputeDimensions(); } @@ -184,10 +195,11 @@ void GuiTable::installActionListeners(void) int columns = mModel->getColumns(); for (int row = 0; row < rows; ++row) - for (int column = 0; column < columns; ++column) { + for (int column = 0; column < columns; ++column) + { gcn::Widget *widget = mModel->getElementAt(row, column); action_listeners.push_back(new GuiTableActionListener(this, widget, - row, column)); + row, column)); } _setFocusHandler(_getFocusHandler()); // propagate focus handler to widgets @@ -196,12 +208,22 @@ void GuiTable::installActionListeners(void) // -- widget ops void GuiTable::draw(gcn::Graphics* graphics) { - graphics->setColor(getBackgroundColor()); - graphics->fillRectangle(gcn::Rectangle(0, 0, getWidth(), getHeight())); - if (!mModel) return; + if (config.getValue("guialpha", 0.8) != mAlpha) + mAlpha = config.getValue("guialpha", 0.8); + + if (mOpaque) + { + const int red = getBackgroundColor().r; + const int green = getBackgroundColor().g; + const int blue = getBackgroundColor().b; + const int alpha = mAlpha * 255; + graphics->setColor(gcn::Color(red, green, blue, alpha)); + graphics->fillRectangle(gcn::Rectangle(0, 0, getWidth(), getHeight())); + } + // First, determine how many rows we need to draw, and where we should start. int first_row = -(getY() / getRowHeight()); @@ -223,44 +245,68 @@ void GuiTable::draw(gcn::Graphics* graphics) int height = getRowHeight(); int y_offset = first_row * height; - for (int r = first_row; r < first_row + rows_nr; ++r) { + for (int r = first_row; r < first_row + rows_nr; ++r) + { int x_offset = 0; - for (int c = first_column; c <= last_column; ++c) { + for (int c = first_column; c <= last_column; ++c) + { gcn::Widget *widget = mModel->getElementAt(r, c); int width = getColumnWidth(c); - if (widget) { + if (widget) + { gcn::Rectangle bounds(x_offset, y_offset, width, height); - if (widget == mTopWidget) { + if (widget == mTopWidget) + { bounds.height = widget->getHeight(); bounds.width = widget->getWidth(); } widget->setDimension(bounds); + if (!mLinewiseMode && c == mSelectedColumn && r == mSelectedRow) + { + bool valid; + const int red = + (textColour->getColour('H', valid) >> 16) & 0xFF; + const int green = + (textColour->getColour('H', valid) >> 8) & 0xFF; + const int blue = textColour->getColour('H', valid) & 0xFF; + const int alpha = mAlpha * 127; + + graphics->setColor(gcn::Color(red, green, blue, alpha)); + graphics->fillRectangle(bounds); + } + graphics->pushClipArea(bounds); widget->draw(graphics); graphics->popClipArea(); - - if (!mLinewiseMode - && c == mSelectedColumn - && r == mSelectedRow) - graphics->drawRectangle(bounds); } x_offset += width; } - if (mLinewiseMode - && r == mSelectedRow) - graphics->drawRectangle(gcn::Rectangle(0, y_offset, + if (mLinewiseMode && r == mSelectedRow) + { + bool valid; + const int red = + (textColour->getColour('H', valid) >> 16) & 0xFF; + const int green = + (textColour->getColour('H', valid) >> 8) & 0xFF; + const int blue = textColour->getColour('H', valid) & 0xFF; + const int alpha = mAlpha * 127; + + graphics->setColor(gcn::Color(red, green, blue, alpha)); + graphics->fillRectangle(gcn::Rectangle(0, y_offset, x_offset, height)); + } y_offset += height; } - if (mTopWidget) { + if (mTopWidget) + { gcn::Rectangle bounds = mTopWidget->getDimension(); graphics->pushClipArea(bounds); mTopWidget->draw(graphics); @@ -268,21 +314,17 @@ void GuiTable::draw(gcn::Graphics* graphics) } } -void GuiTable::logic(void) -{ -} - void GuiTable::moveToTop(gcn::Widget *widget) { gcn::Widget::moveToTop(widget); - this->mTopWidget = widget; + mTopWidget = widget; } void GuiTable::moveToBottom(gcn::Widget *widget) { gcn::Widget::moveToBottom(widget); - if (widget == this->mTopWidget) - this->mTopWidget = NULL; + if (widget == mTopWidget) + mTopWidget = NULL; } gcn::Rectangle GuiTable::getChildrenArea(void) @@ -298,11 +340,13 @@ void GuiTable::keyPressed(gcn::KeyEvent& keyEvent) // -- MouseListener notifications void GuiTable::mousePressed(gcn::MouseEvent& mouseEvent) { - if (mouseEvent.getButton() == gcn::MouseEvent::LEFT) { + if (mouseEvent.getButton() == gcn::MouseEvent::LEFT) + { int row = getRowForY(mouseEvent.getY()); int column = getColumnForX(mouseEvent.getX()); - if (row > -1 && column > -1) { + if (row > -1 && column > -1) + { mSelectedColumn = column; mSelectedRow = row; } @@ -326,10 +370,13 @@ void GuiTable::mouseDragged(gcn::MouseEvent& mouseEvent) // -- TableModelListener notifications void GuiTable::modelUpdated(bool completed) { - if (completed) { + if (completed) + { recomputeDimensions(); installActionListeners(); - } else { // before the update? + } + else + { // before the update? mTopWidget = NULL; // No longer valid in general uninstallActionListeners(); } @@ -340,18 +387,18 @@ gcn::Widget* GuiTable::getWidgetAt(int x, int y) int row = getRowForY(y); int column = getColumnForX(x); - if (mTopWidget - && mTopWidget->getDimension().isPointInRect(x, y)) + if (mTopWidget && mTopWidget->getDimension().isPointInRect(x, y)) return mTopWidget; - if (row > -1 - && column > -1) { + if (row > -1 && column > -1) + { gcn::Widget *w = mModel->getElementAt(row, column); if (w && w->isFocusable()) return w; else return NULL; // Grab the event locally - } else + } + else return NULL; } @@ -359,8 +406,7 @@ int GuiTable::getRowForY(int y) { int row = y / getRowHeight(); - if (row < 0 - || row >= mModel->getRows()) + if (row < 0 || row >= mModel->getRows()) return -1; else return row; @@ -371,14 +417,14 @@ int GuiTable::getColumnForX(int x) int column; int delta = 0; - for (column = 0; column < mModel->getColumns(); column++) { + for (column = 0; column < mModel->getColumns(); column++) + { delta += getColumnWidth(column); if (x <= delta) break; } - if (column < 0 - || column >= mModel->getColumns()) + if (column < 0 || column >= mModel->getColumns()) return -1; else return column; @@ -390,7 +436,8 @@ void GuiTable::_setFocusHandler(gcn::FocusHandler* focusHandler) if (mModel) for (int r = 0; r < mModel->getRows(); ++r) - for (int c = 0; c < mModel->getColumns(); ++c) { + for (int c = 0; c < mModel->getColumns(); ++c) + { gcn::Widget *w = mModel->getElementAt(r, c); if (w) w->_setFocusHandler(focusHandler); diff --git a/src/gui/table.h b/src/gui/table.h index e3fd8cf6..bdb41e90 100644 --- a/src/gui/table.h +++ b/src/gui/table.h @@ -51,7 +51,8 @@ class GuiTable : public gcn::Widget, { friend class GuiTableActionListener; // so that the action listener can call distributeActionEvent public: - GuiTable(TableModel * initial_model = NULL); + GuiTable(TableModel * initial_model = NULL, gcn::Color background = 0xffffff, + bool opacity = true); virtual ~GuiTable(void); @@ -94,8 +95,6 @@ public: // Inherited from Widget virtual void draw(gcn::Graphics* graphics); - virtual void logic(void); - virtual gcn::Widget *getWidgetAt(int x, int y); virtual void moveToTop(gcn::Widget *child); @@ -107,6 +106,21 @@ public: // Inherited from KeyListener virtual void keyPressed(gcn::KeyEvent& keyEvent); + /** + * Sets the table to be opaque, that is sets the table + * to display its background. + * + * @param opaque True if the table should be opaque, false otherwise. + */ + virtual void setOpaque(bool opaque) {mOpaque = opaque;} + + /** + * Checks if the table is opaque, that is if the table area displays its + * background. + * + * @return True if the table is opaque, false otherwise. + */ + virtual bool isOpaque() const {return mOpaque;} // Inherited from MouseListener virtual void mousePressed(gcn::MouseEvent& mouseEvent); @@ -134,6 +148,14 @@ private: int getColumnForX(int x); // -1 on error void recomputeDimensions(void); bool mLinewiseMode; + bool mOpaque; + + static float mAlpha; + + /** + * Holds the background color of the table. + */ + gcn::Color mBackgroundColor; TableModel *mModel; diff --git a/src/gui/table_model.cpp b/src/gui/table_model.cpp index 0b31369f..5ee7e9ab 100644 --- a/src/gui/table_model.cpp +++ b/src/gui/table_model.cpp @@ -54,13 +54,10 @@ void TableModel::signalAfterUpdate(void) #define WIDGET_AT(row, column) (((row) * mColumns) + (column)) #define DYN_SIZE(h) ((h) >= 0) // determines whether this size is tagged for auto-detection -StaticTableModel::StaticTableModel(int row, int column, - gcn::Color backgroundColor, bool opacity) : +StaticTableModel::StaticTableModel(int row, int column) : mRows(row), mColumns(column), - mHeight(1), - mOpaque(opacity), - mBackgroundColor(backgroundColor) + mHeight(1) { mTableModel.resize(row * column, NULL); mWidths.resize(column, 1); @@ -165,24 +162,3 @@ int StaticTableModel::getHeight(void) return (mColumns * mHeight); } -void StaticTableModel::drawBackground(gcn::Graphics *graphics) -{ - if (isOpaque()) - { - for (unsigned int i = 0; i < mTableModel.size(); i++) - { - mTableModel[i]->setBackgroundColor(mBackgroundColor); - } - } -} - -void StaticTableModel::setOpaque(bool opaque) -{ - mOpaque = opaque; -} - -bool StaticTableModel::isOpaque() const -{ - return mOpaque; -} - diff --git a/src/gui/table_model.h b/src/gui/table_model.h index 1c36ca46..a2a93887 100644 --- a/src/gui/table_model.h +++ b/src/gui/table_model.h @@ -100,8 +100,7 @@ private: class StaticTableModel : public TableModel { public: - StaticTableModel(int width, int height, gcn::Color background = 0xffffff, - bool opacity = true); + StaticTableModel(int width, int height); virtual ~StaticTableModel(void); /** @@ -130,22 +129,6 @@ public: */ virtual void resize(void); - /** - * Sets the table to be opaque, that is sets the table - * to display its background. - * - * @param opaque True if the table should be opaque, false otherwise. - */ - virtual void setOpaque(bool opaque); - - /** - * Checks if the scroll area is opaque, that is if the scroll area - * displays its background. - * - * @return True if the scroll area is opaque, false otherwise. - */ - virtual bool isOpaque() const; - virtual int getRows(void); virtual int getColumns(void); virtual int getRowHeight(void); @@ -158,22 +141,8 @@ public: protected: int mRows, mColumns; int mHeight; - bool mOpaque; std::vector mTableModel; std::vector mWidths; - - /** - * Holds the background color of the table. - */ - gcn::Color mBackgroundColor; - - /** - * Draws the background of the table, that is - * the area behind the content. - * - * @param graphics a Graphics object to draw with. - */ - virtual void drawBackground(gcn::Graphics *graphics); }; #endif /* !defined(TABLE_MODEL_H) */ -- cgit v1.2.3-60-g2f50 From 7d45452187b1c2911b688bbed5fb8981a67b1934 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Tue, 3 Feb 2009 16:33:18 -0700 Subject: Modified the dropdown class to handle opacity. Signed-off-by: Ira Rice --- src/gui/login.cpp | 3 ++- src/gui/setup_players.cpp | 17 +++++++++---- src/gui/widgets/dropdown.cpp | 58 +++++++++++++++++++++++++++++++++++--------- src/gui/widgets/dropdown.h | 22 ++++++++++++++++- 4 files changed, 81 insertions(+), 19 deletions(-) diff --git a/src/gui/login.cpp b/src/gui/login.cpp index 84e10e97..408456ef 100644 --- a/src/gui/login.cpp +++ b/src/gui/login.cpp @@ -63,7 +63,7 @@ LoginDialog::LoginDialog(LoginData *loginData): dfltPort.push_back("21001"); mServerList = new DropDownList("MostRecent00", dfltServer, dfltPort, MAX_SERVER_LIST_SIZE); - mServerListBox = new gcn::ListBox(mServerList); + mServerListBox = new ListBox(mServerList); mServerScrollArea = new ScrollArea(); mUserField = new TextField(mLoginData->username); @@ -73,6 +73,7 @@ LoginDialog::LoginDialog(LoginData *loginData): mServerDropDown = new DropDown(mServerList, mServerScrollArea, mServerListBox); + mServerDropDown->setOpaque(false); mKeepCheck = new CheckBox(_("Keep"), mLoginData->remember); mOkButton = new Button(_("OK"), "ok", this); diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index c8546b4b..932acee7 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -21,20 +21,20 @@ #include -#include #include #include "button.h" #include "checkbox.h" +#include "listbox.h" #include "ok_dialog.h" #include "setup_players.h" +#include "widgets/dropdown.h" #include "widgets/layouthelper.h" #include "../configuration.h" #include "../log.h" #include "../player_relations.h" -#include "../sound.h" #include "../utils/gettext.h" @@ -135,8 +135,12 @@ public: std::string name = (*player_names)[r]; gcn::Widget *widget = new gcn::Label(name); mWidgets.push_back(widget); + gcn::ListModel *playerRelation = new PlayerRelationListModel(); - gcn::DropDown *choicebox = new gcn::DropDown(new PlayerRelationListModel()); + gcn::DropDown *choicebox = new DropDown(playerRelation, + new ScrollArea(), + new ListBox(playerRelation), + false); choicebox->setSelected(player_relations.getRelation(name)); mWidgets.push_back(choicebox); } @@ -219,8 +223,7 @@ Setup_Players::Setup_Players(): player_relations.getDefault() & PlayerRelation::TRADE)), mDefaultWhisper(new CheckBox(_("Allow whispers"), player_relations.getDefault() & PlayerRelation::WHISPER)), - mDeleteButton(new Button(_("Delete"), ACTION_DELETE, this)), - mIgnoreActionChoicesBox(new gcn::DropDown(new IgnoreChoicesListModel())) + mDeleteButton(new Button(_("Delete"), ACTION_DELETE, this)) { setOpaque(false); mPlayerTable->setOpaque(false); @@ -232,6 +235,10 @@ Setup_Players::Setup_Players(): mPlayerTitleTable->setDimension(gcn::Rectangle(10, 10, table_width - 1, 10)); mPlayerTitleTable->setBackgroundColor(gcn::Color(0xbf, 0xbf, 0xbf)); + gcn::ListModel *ignoreChoices = new IgnoreChoicesListModel(); + mIgnoreActionChoicesBox = new DropDown(ignoreChoices, new ScrollArea(), + new ListBox(ignoreChoices), false); + for (int i = 0; i < COLUMNS_NR; i++) { mPlayerTableTitleModel->set(0, i, diff --git a/src/gui/widgets/dropdown.cpp b/src/gui/widgets/dropdown.cpp index 88a12d68..ac5cbaa2 100644 --- a/src/gui/widgets/dropdown.cpp +++ b/src/gui/widgets/dropdown.cpp @@ -23,6 +23,9 @@ #include "dropdown.h" +#include "../colour.h" + +#include "../../configuration.h" #include "../../graphics.h" #include "../../resources/image.h" @@ -33,12 +36,12 @@ int DropDown::instances = 0; Image *DropDown::buttons[2][2]; ImageRect DropDown::skin; +float DropDown::mAlpha = config.getValue("guialpha", 0.8); -DropDown::DropDown(gcn::ListModel *listModel, - gcn::ScrollArea *scrollArea, - gcn::ListBox *listBox): - gcn::DropDown::DropDown(listModel, - scrollArea, listBox) +DropDown::DropDown(gcn::ListModel *listModel, gcn::ScrollArea *scrollArea, + gcn::ListBox *listBox, bool opacity): + gcn::DropDown::DropDown(listModel, scrollArea, listBox), + mOpaque(opacity) { setFrameSize(2); @@ -58,6 +61,11 @@ DropDown::DropDown(gcn::ListModel *listModel, buttons[0][1] = resman->getImage("graphics/gui/vscroll_down_pressed.png"); + buttons[0][0]->setAlpha(mAlpha); + buttons[0][1]->setAlpha(mAlpha); + buttons[1][0]->setAlpha(mAlpha); + buttons[1][1]->setAlpha(mAlpha); + // get the border skin Image *boxBorder = resman->getImage("graphics/gui/deepbox.png"); int gridx[4] = {0, 3, 28, 31}; @@ -70,6 +78,7 @@ DropDown::DropDown(gcn::ListModel *listModel, gridx[x], gridy[y], gridx[x + 1] - gridx[x] + 1, gridy[y + 1] - gridy[y] + 1); + skin.grid[a]->setAlpha(mAlpha); a++; } } @@ -108,19 +117,44 @@ void DropDown::draw(gcn::Graphics* graphics) h = getHeight(); } - int alpha = getBaseColor().a; + if (config.getValue("guialpha", 0.8) != mAlpha) + { + mAlpha = config.getValue("guialpha", 0.8); + + buttons[0][0]->setAlpha(mAlpha); + buttons[0][1]->setAlpha(mAlpha); + buttons[1][0]->setAlpha(mAlpha); + buttons[1][1]->setAlpha(mAlpha); + + for (int a = 0; a < 9; a++) + { + skin.grid[a]->setAlpha(mAlpha); + } + } + + bool valid; + const int alpha = mAlpha * 255; gcn::Color faceColor = getBaseColor(); faceColor.a = alpha; - gcn::Color highlightColor = faceColor + 0x303030; + gcn::Color highlightColor = textColour->getColour('H', valid); highlightColor.a = alpha; gcn::Color shadowColor = faceColor - 0x303030; shadowColor.a = alpha; + if (mOpaque) + { + int red = getBackgroundColor().r; + int green = getBackgroundColor().g; + int blue = getBackgroundColor().b; + graphics->setColor(gcn::Color(red, green, blue, alpha)); + graphics->fillRectangle(gcn::Rectangle(0, 0, getWidth(), h)); + + red = getForegroundColor().r; + green = getForegroundColor().g; + blue = getForegroundColor().b; + graphics->setColor(gcn::Color(red, green, blue, alpha)); + } - graphics->setColor(getBackgroundColor()); - graphics->fillRectangle(gcn::Rectangle(0, 0, getWidth(), h)); - - graphics->setColor(getForegroundColor()); graphics->setFont(getFont()); if (mListBox->getListModel() && mListBox->getSelected() >= 0) @@ -140,7 +174,7 @@ void DropDown::draw(gcn::Graphics* graphics) { drawChildren(graphics); - // Draw two lines separating the ListBox with se selected + // Draw two lines separating the ListBox with selected // element view. graphics->setColor(highlightColor); graphics->drawLine(0, h, getWidth(), h); diff --git a/src/gui/widgets/dropdown.h b/src/gui/widgets/dropdown.h index 25ae05f8..bff8bd1e 100644 --- a/src/gui/widgets/dropdown.h +++ b/src/gui/widgets/dropdown.h @@ -56,7 +56,8 @@ class DropDown : public gcn::DropDown */ DropDown(gcn::ListModel *listModel = NULL, gcn::ScrollArea *scrollArea = NULL, - gcn::ListBox *listBox = NULL); + gcn::ListBox *listBox = NULL, + bool opacity = true); /** * Destructor. @@ -67,6 +68,22 @@ class DropDown : public gcn::DropDown void drawFrame(gcn::Graphics* graphics); + /** + * Sets the widget to be opaque, that is sets the widget to display its + * background. + * + * @param opaque True if the widget should be opaque, false otherwise. + */ + void setOpaque(bool opaque) {mOpaque = opaque;} + + /** + * Checks if the widget is opaque, that is if the widget area displays + * its background. + * + * @return True if the widget is opaque, false otherwise. + */ + bool isOpaque() const {return mOpaque;} + protected: /** @@ -80,6 +97,9 @@ class DropDown : public gcn::DropDown static int instances; static Image *buttons[2][2]; static ImageRect skin; + static float mAlpha; + + bool mOpaque; }; #endif // end DROPDOWN_H -- cgit v1.2.3-60-g2f50 From c6cf9a6a9c03f17362171aeed1a22244d99b7530 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Tue, 3 Feb 2009 17:33:47 -0700 Subject: Disable alpha values affecting two widgets which would otherwise take alpha values under SDL. Signed-off-by: Ira Rice --- src/gui/checkbox.cpp | 14 +++++++++----- src/gui/progressbar.cpp | 5 ++++- src/resources/image.h | 14 +++++++++++++- 3 files changed, 26 insertions(+), 7 deletions(-) diff --git a/src/gui/checkbox.cpp b/src/gui/checkbox.cpp index 7fa4fa81..511ed34c 100644 --- a/src/gui/checkbox.cpp +++ b/src/gui/checkbox.cpp @@ -45,10 +45,13 @@ CheckBox::CheckBox(const std::string& caption, bool selected): checkBoxChecked = checkBox->getSubImage(9, 0, 9, 10); checkBoxDisabled = checkBox->getSubImage(18, 0, 9, 10); checkBoxDisabledChecked = checkBox->getSubImage(27, 0, 9, 10); - checkBoxNormal->setAlpha(mAlpha); - checkBoxChecked->setAlpha(mAlpha); - checkBoxDisabled->setAlpha(mAlpha); - checkBoxDisabledChecked->setAlpha(mAlpha); + if (config.getValue("opengl", 0)) + { + checkBoxNormal->setAlpha(mAlpha); + checkBoxChecked->setAlpha(mAlpha); + checkBoxDisabled->setAlpha(mAlpha); + checkBoxDisabledChecked->setAlpha(mAlpha); + } checkBox->decRef(); } @@ -84,7 +87,8 @@ void CheckBox::drawBox(gcn::Graphics* graphics) else box = checkBoxDisabled; - if (config.getValue("guialpha", 0.8) != mAlpha) + if (config.getValue("guialpha", 0.8) != mAlpha && + config.getValue("opengl", 0)) { mAlpha = config.getValue("guialpha", 0.8); checkBoxNormal->setAlpha(mAlpha); diff --git a/src/gui/progressbar.cpp b/src/gui/progressbar.cpp index 5e8e6655..a1b847c8 100644 --- a/src/gui/progressbar.cpp +++ b/src/gui/progressbar.cpp @@ -103,7 +103,10 @@ void ProgressBar::draw(gcn::Graphics *graphics) { if (config.getValue("guialpha", 0.8) != mAlpha) { - mAlpha = config.getValue("guialpha", 0.8); + if (config.getValue("opengl", 0)) + mAlpha = config.getValue("guialpha", 0.8); + else + mAlpha = 1.0f; for (int i = 0; i < 9; i++) { mBorder.grid[i]->setAlpha(mAlpha); diff --git a/src/resources/image.h b/src/resources/image.h index a4048803..5b376053 100644 --- a/src/resources/image.h +++ b/src/resources/image.h @@ -91,6 +91,12 @@ class Image : public Resource */ virtual void unload(); + /** + * Returns the image. + */ + virtual const Image* getImage() const + { return this; } + /** * Returns the width of the image. */ @@ -114,7 +120,7 @@ class Image : public Resource /** * Sets the alpha value of this image. */ - void setAlpha(float alpha); + virtual void setAlpha(float alpha); /** * Returns the alpha value of this image. @@ -180,6 +186,12 @@ class SubImage : public Image */ ~SubImage(); + /** + * Returns the image. + */ + virtual const Image* getImage() const + { return mParent; } + /** * Creates a new image with the desired clipping rectangle. * -- cgit v1.2.3-60-g2f50 From 12cd527f8e554547a0e56d1240c912918db880cb Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Tue, 3 Feb 2009 17:37:25 -0700 Subject: Modified video mode selection to not test the resolution clicked on, and to trust that the resolutions presented are legal resolutions to try. This shouldn't be an issue, as the resolutions listed are pulled straight from SDL, and it avoids showing the user a visual artifact. Signed-off-by: Ira Rice --- src/gui/setup_video.cpp | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index 2ba8b6e8..faf72c68 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -393,23 +393,6 @@ void Setup_Video::action(const gcn::ActionEvent &event) const std::string mode = mModeListModel->getElementAt(mModeList->getSelected()); const int width = atoi(mode.substr(0, mode.find("x")).c_str()); const int height = atoi(mode.substr(mode.find("x") + 1).c_str()); - const int bpp = 0; - const bool fullscreen = ((int) config.getValue("screen", 0) == 1); - const bool hwaccel = ((int) config.getValue("hwaccel", 0) == 1); - - // Try to set the desired video mode - if (!graphics->setVideoMode(width, height, bpp, fullscreen, hwaccel)) - { - std::cerr << _("Couldn't set ") - << width << "x" << height << "x" << bpp << _(" video mode: ") - << SDL_GetError() << std::endl; - exit(1); - } - - // Initialize for drawing - graphics->_endDraw(); - graphics->_beginDraw(); - graphics->updateScreen(); // TODO: Find out why the drawing area doesn't resize without a restart. new OkDialog(_("Screen resolution changed"), -- cgit v1.2.3-60-g2f50 From 769a34317f100d2d62af57a61f1bb88d876c3c08 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Tue, 3 Feb 2009 17:54:01 -0700 Subject: Show the scroll area again for the skill dialog. While this commit isn't needed so much, I think that now that opacity actually works in tables now, it looks a bit bettwe with the scroll area visible. Signed-off-by: Ira Rice --- src/gui/skill.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gui/skill.cpp b/src/gui/skill.cpp index 60f8ee65..732aaa12 100644 --- a/src/gui/skill.cpp +++ b/src/gui/skill.cpp @@ -144,7 +144,6 @@ SkillDialog::SkillDialog(): mTable.setActionEventId("skill"); skillScrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); - skillScrollArea->setOpaque(false); place(0, 0, skillScrollArea, 5).setPadding(3); place(0, 1, mPointsLabel, 2); -- cgit v1.2.3-60-g2f50 From 6110801764f588d0696e75645624be4869b99ee0 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Tue, 3 Feb 2009 20:41:02 -0700 Subject: Applied a minimum height and width to the help window. Signed-off-by: Ira Rice --- src/gui/help.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/help.cpp b/src/gui/help.cpp index 6b14f6d8..ece2dce4 100644 --- a/src/gui/help.cpp +++ b/src/gui/help.cpp @@ -33,6 +33,8 @@ HelpWindow::HelpWindow(): Window(_("Help")) { + setMinWidth(300); + setMinHeight(250); setContentSize(455, 350); setWindowName(_("Help")); setResizable(true); -- cgit v1.2.3-60-g2f50 From 555e68e24f2bb7d38f7ce52ce9a43198c0ccedec Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 11:46:03 -0700 Subject: Went through the gui folder and revised the include statements to not include anything not needed by that specific widget or window. This appears to have cleaned up system performance a bit on my current setup, where it went from idling on 45% in game with opengl down to 30% now. Also moved iptostring to the tostring header, as importing all of network.h is a little overkill to use that function, and it goes along with the basic functions that are in that header file anyways. TODO: find out a way to get rid of warnings when a class doesn't use this function. Signed-off-by: Ira Rice --- aethyra.cbp | 1 - src/CMakeLists.txt | 1 - src/Makefile.am | 1 - src/extensions.h | 34 ------------------------------- src/gui/browserbox.h | 5 +---- src/gui/button.cpp | 12 +++++------ src/gui/button.h | 4 ---- src/gui/buy.h | 6 +++--- src/gui/buysell.h | 2 -- src/gui/char_select.cpp | 1 + src/gui/char_select.h | 9 +++------ src/gui/char_server.cpp | 17 +++++++--------- src/gui/char_server.h | 2 -- src/gui/chat.cpp | 43 +++++++++++++++++----------------------- src/gui/chat.h | 3 --- src/gui/chatinput.h | 2 -- src/gui/checkbox.h | 7 ++----- src/gui/colour.cpp | 2 -- src/gui/colour.h | 3 --- src/gui/confirm_dialog.cpp | 3 +++ src/gui/confirm_dialog.h | 9 ++++----- src/gui/connection.cpp | 7 ++++--- src/gui/debugwindow.cpp | 1 - src/gui/debugwindow.h | 4 ---- src/gui/emotecontainer.h | 2 -- src/gui/emoteshortcutcontainer.h | 4 ---- src/gui/emotewindow.cpp | 5 ----- src/gui/emotewindow.h | 2 -- src/gui/focushandler.h | 2 -- src/gui/gccontainer.h | 2 -- src/gui/gui.cpp | 25 +++++++++++++---------- src/gui/help.h | 2 -- src/gui/inttextfield.h | 2 -- src/gui/inventorywindow.cpp | 1 - src/gui/inventorywindow.h | 1 - src/gui/item_amount.cpp | 3 ++- src/gui/item_amount.h | 4 ---- src/gui/itemcontainer.cpp | 1 - src/gui/itemcontainer.h | 2 -- src/gui/itemlinkhandler.cpp | 6 +++--- src/gui/itempopup.cpp | 8 ++------ src/gui/itempopup.h | 7 +++---- src/gui/itemshortcutcontainer.h | 2 -- src/gui/listbox.cpp | 3 +-- src/gui/listbox.h | 2 -- src/gui/login.cpp | 1 + src/gui/login.h | 1 - src/gui/menuwindow.h | 2 -- src/gui/minimap.h | 2 -- src/gui/ministatus.h | 4 ---- src/gui/npc_text.cpp | 4 +--- src/gui/npc_text.h | 3 +-- src/gui/npcintegerdialog.cpp | 11 +++------- src/gui/npcintegerdialog.h | 5 ----- src/gui/npclistdialog.cpp | 2 ++ src/gui/npclistdialog.h | 5 ----- src/gui/npcstringdialog.cpp | 7 +------ src/gui/npcstringdialog.h | 5 ----- src/gui/ok_dialog.cpp | 7 +++++-- src/gui/ok_dialog.h | 6 ++---- src/gui/passwordfield.cpp | 2 -- src/gui/passwordfield.h | 4 ++-- src/gui/playerbox.cpp | 2 -- src/gui/playerbox.h | 2 -- src/gui/popupmenu.cpp | 4 ---- src/gui/progressbar.cpp | 4 ++-- src/gui/progressbar.h | 5 ++--- src/gui/radiobutton.h | 5 ++--- src/gui/recorder.cpp | 1 - src/gui/recorder.h | 2 -- src/gui/register.cpp | 8 ++------ src/gui/register.h | 4 +--- src/gui/scrollarea.cpp | 2 -- src/gui/scrollarea.h | 2 -- src/gui/sell.cpp | 8 +------- src/gui/sell.h | 4 ++-- src/gui/setup.cpp | 3 --- src/gui/setup_audio.h | 2 -- src/gui/setup_colours.cpp | 2 -- src/gui/setup_colours.h | 2 +- src/gui/setup_joystick.h | 2 -- src/gui/setup_keyboard.h | 1 - src/gui/setup_players.cpp | 4 +++- src/gui/setup_players.h | 11 +++++----- src/gui/setup_video.h | 2 -- src/gui/shop.h | 3 +-- src/gui/shoplistbox.cpp | 4 +--- src/gui/shoplistbox.h | 3 +-- src/gui/shortcutcontainer.cpp | 7 ------- src/gui/shortcutcontainer.h | 8 +++----- src/gui/shortcutwindow.cpp | 2 +- src/gui/shortcutwindow.h | 4 +--- src/gui/skill.cpp | 28 ++++++++++++-------------- src/gui/skill.h | 8 ++------ src/gui/slider.h | 2 -- src/gui/speechbubble.cpp | 13 ++---------- src/gui/speechbubble.h | 9 +++++---- src/gui/status.h | 4 ---- src/gui/table.cpp | 2 -- src/gui/table.h | 4 ---- src/gui/table_model.cpp | 3 --- src/gui/table_model.h | 5 ----- src/gui/textbox.cpp | 1 - src/gui/textbox.h | 5 ++--- src/gui/textfield.cpp | 4 ---- src/gui/textfield.h | 2 -- src/gui/trade.cpp | 2 -- src/gui/updatewindow.cpp | 6 +++--- src/gui/updatewindow.h | 2 -- src/gui/viewport.cpp | 5 ----- src/gui/viewport.h | 2 -- src/gui/widgets/dropdown.cpp | 2 ++ src/gui/widgets/dropdown.h | 7 ------- src/gui/widgets/resizegrip.h | 2 -- src/gui/widgets/tab.cpp | 2 -- src/gui/window.cpp | 2 -- src/gui/windowcontainer.h | 5 ++--- src/main.cpp | 1 + src/net/charserverhandler.cpp | 3 ++- src/net/loginhandler.cpp | 3 ++- src/net/network.cpp | 14 +------------ src/net/network.h | 3 --- src/utils/tostring.h | 15 ++++++++++++++ 123 files changed, 177 insertions(+), 438 deletions(-) delete mode 100644 src/extensions.h diff --git a/aethyra.cbp b/aethyra.cbp index 2ee2501b..c383dff3 100644 --- a/aethyra.cbp +++ b/aethyra.cbp @@ -106,7 +106,6 @@ - diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8cd062c9..86deec0c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -323,7 +323,6 @@ SET(SRCS engine.h equipment.cpp equipment.h - extensions.h floor_item.cpp floor_item.h flooritemmanager.cpp diff --git a/src/Makefile.am b/src/Makefile.am index 3aeecc02..c6a9a9c4 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -272,7 +272,6 @@ aethyra_SOURCES = gui/widgets/dropdown.cpp \ engine.h \ equipment.cpp \ equipment.h \ - extensions.h \ floor_item.cpp \ floor_item.h \ flooritemmanager.cpp \ diff --git a/src/extensions.h b/src/extensions.h deleted file mode 100644 index 5b95afc8..00000000 --- a/src/extensions.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Aethyra - * Copyright 2008 Lloyd Bryant - * - * This file is part of the Aethyra project. - * - * Aethyra is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * any later version. - * - * Aethyra is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with The Mana World; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - */ - -#ifndef _EXTENSIONS_ -#define _EXTENSIONS_ - -struct EXTENSIONS -{ - bool aethyra_inventory; - bool aethyra_spells; - bool aethyra_misc; -}; - -extern struct EXTENSIONS extensions; -#endif diff --git a/src/gui/browserbox.h b/src/gui/browserbox.h index 4bdf224b..15c2ab89 100644 --- a/src/gui/browserbox.h +++ b/src/gui/browserbox.h @@ -22,15 +22,12 @@ #ifndef BROWSERBOX_H #define BROWSERBOX_H -#include +#include #include #include #include -#include "../guichanfwd.h" -#include "../main.h" - class LinkHandler; struct BROWSER_LINK { diff --git a/src/gui/button.cpp b/src/gui/button.cpp index d578202e..2e6bed0a 100644 --- a/src/gui/button.cpp +++ b/src/gui/button.cpp @@ -19,6 +19,12 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include + +#include +#include +#include + #include "button.h" #include "../configuration.h" @@ -29,12 +35,6 @@ #include "../utils/dtor.h" -#include -#include -#include - -#include - int Button::mInstances = 0; float Button::mAlpha = config.getValue("guialpha", 0.8); diff --git a/src/gui/button.h b/src/gui/button.h index 1faf2455..abaf5c43 100644 --- a/src/gui/button.h +++ b/src/gui/button.h @@ -22,12 +22,8 @@ #ifndef BUTTON_H #define BUTTON_H -#include - #include -#include "../guichanfwd.h" - class ImageRect; /** diff --git a/src/gui/buy.h b/src/gui/buy.h index 423918ce..0f1cfede 100644 --- a/src/gui/buy.h +++ b/src/gui/buy.h @@ -25,9 +25,9 @@ #include #include -#include "window.h" +#include -#include "../guichanfwd.h" +#include "window.h" class Network; class ShopItems; @@ -40,7 +40,7 @@ class ListBox; * \ingroup Interface */ class BuyDialog : public Window, public gcn::ActionListener, - gcn::SelectionListener + public gcn::SelectionListener { public: /** diff --git a/src/gui/buysell.h b/src/gui/buysell.h index 60a6398d..e3cdc52a 100644 --- a/src/gui/buysell.h +++ b/src/gui/buysell.h @@ -26,8 +26,6 @@ #include "window.h" -#include "../guichanfwd.h" - /** * A dialog to choose between buying or selling at a shop. * diff --git a/src/gui/char_select.cpp b/src/gui/char_select.cpp index e556dfa0..4433b646 100644 --- a/src/gui/char_select.cpp +++ b/src/gui/char_select.cpp @@ -22,6 +22,7 @@ #include #include + #include #include "button.h" diff --git a/src/gui/char_select.h b/src/gui/char_select.h index 5d4ecfa8..23de061d 100644 --- a/src/gui/char_select.h +++ b/src/gui/char_select.h @@ -26,9 +26,8 @@ #include "window.h" -#include "../guichanfwd.h" -#include "../lockedarray.h" #include "../being.h" +#include "../lockedarray.h" class LocalPlayer; class Network; @@ -109,14 +108,12 @@ class CharCreateDialog : public Window, public gcn::ActionListener */ ~CharCreateDialog(); - void - action(const gcn::ActionEvent &event); + void action(const gcn::ActionEvent &event); /** * Unlocks the dialog, enabling the create character button again. */ - void - unlock(); + void unlock(); private: /** diff --git a/src/gui/char_server.cpp b/src/gui/char_server.cpp index 2e823b60..bc096379 100644 --- a/src/gui/char_server.cpp +++ b/src/gui/char_server.cpp @@ -28,10 +28,7 @@ #include "../main.h" #include "../serverinfo.h" -#include "../net/network.h" // TODO this is just for iptostring, move that? - #include "../utils/gettext.h" -#include "../utils/strprintf.h" #include "../utils/tostring.h" extern SERVER_INFO **server_info; @@ -39,7 +36,8 @@ extern SERVER_INFO **server_info; /** * The list model for the server list. */ -class ServerListModel : public gcn::ListModel { +class ServerListModel : public gcn::ListModel +{ public: virtual ~ServerListModel() {}; @@ -80,13 +78,12 @@ ServerSelectDialog::ServerSelectDialog(LoginData *loginData, int nextState): add(mOkButton); add(mCancelButton); - if (n_server == 0) { + if (n_server == 0) // Disable Ok button mOkButton->setEnabled(false); - } else { + else // Select first server mServerList->setSelected(1); - } setLocationRelativeTo(getParent()); setVisible(true); @@ -100,7 +97,8 @@ ServerSelectDialog::~ServerSelectDialog() void ServerSelectDialog::action(const gcn::ActionEvent &event) { - if (event.getId() == "ok") { + if (event.getId() == "ok") + { mOkButton->setEnabled(false); const SERVER_INFO *si = server_info[mServerList->getSelected()]; mLoginData->hostname = iptostring(si->address); @@ -108,9 +106,8 @@ void ServerSelectDialog::action(const gcn::ActionEvent &event) mLoginData->updateHost = si->updateHost; state = mNextState; } - else if (event.getId() == "cancel") { + else if (event.getId() == "cancel") state = LOGIN_STATE; - } } int ServerListModel::getNumberOfElements() diff --git a/src/gui/char_server.h b/src/gui/char_server.h index 9419c92d..49a5b47b 100644 --- a/src/gui/char_server.h +++ b/src/gui/char_server.h @@ -27,8 +27,6 @@ #include "window.h" -#include "../guichanfwd.h" - class LoginData; class ServerListModel; diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 36e33160..a58600a8 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -20,7 +20,6 @@ */ #include -#include #include @@ -37,7 +36,6 @@ #include "../beingmanager.h" #include "../configuration.h" -#include "../extensions.h" #include "../game.h" #include "../localplayer.h" #include "../party.h" @@ -538,32 +536,27 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) * This will eventually be replaced by a GUI, so * we don't need to get too sophisticated */ - if (extensions.aethyra_spells) + MessageOut outMsg(mNetwork); + if (msg == "heal") { - MessageOut outMsg(mNetwork); - if (msg == "heal") - { - outMsg.writeInt16(0x03f3); - outMsg.writeInt16(0x01); - outMsg.writeInt32(0); - outMsg.writeInt8(0); - outMsg.writeInt8(0); - outMsg.writeString("", 24); - } - else if (msg == "gather") - { - outMsg.writeInt16(0x03f3); - outMsg.writeInt16(0x02); - outMsg.writeInt32(0); - outMsg.writeInt8(0); - outMsg.writeInt8(0); - outMsg.writeString("", 24); - } - else - chatLog(_("No such spell!"), BY_SERVER); + outMsg.writeInt16(0x03f3); + outMsg.writeInt16(0x01); + outMsg.writeInt32(0); + outMsg.writeInt8(0); + outMsg.writeInt8(0); + outMsg.writeString("", 24); + } + else if (msg == "gather") + { + outMsg.writeInt16(0x03f3); + outMsg.writeInt16(0x02); + outMsg.writeInt32(0); + outMsg.writeInt8(0); + outMsg.writeInt8(0); + outMsg.writeString("", 24); } else - chatLog(_("The current server doesn't support spells"), BY_SERVER); + chatLog(_("No such spell!"), BY_SERVER); } else if (command == "present") { diff --git a/src/gui/chat.h b/src/gui/chat.h index 176fccb7..872c0041 100644 --- a/src/gui/chat.h +++ b/src/gui/chat.h @@ -22,7 +22,6 @@ #ifndef CHAT_H #define CHAT_H -#include #include #include @@ -31,8 +30,6 @@ #include "window.h" -#include "../guichanfwd.h" - class BrowserBox; class Network; class Recorder; diff --git a/src/gui/chatinput.h b/src/gui/chatinput.h index d98e120b..a4a50502 100644 --- a/src/gui/chatinput.h +++ b/src/gui/chatinput.h @@ -26,8 +26,6 @@ #include "textfield.h" -#include "../guichanfwd.h" - /** * The chat input hides when it loses focus. It is also invisible by default. */ diff --git a/src/gui/checkbox.h b/src/gui/checkbox.h index 2e52fd0a..20adb43c 100644 --- a/src/gui/checkbox.h +++ b/src/gui/checkbox.h @@ -22,12 +22,8 @@ #ifndef CHECKBOX_H #define CHECKBOX_H -#include - #include -#include "../guichanfwd.h" - class Image; /** @@ -35,7 +31,8 @@ class Image; * * \ingroup GUI */ -class CheckBox : public gcn::CheckBox { +class CheckBox : public gcn::CheckBox +{ public: /** * Constructor. diff --git a/src/gui/colour.cpp b/src/gui/colour.cpp index 075e9861..58d9d1c6 100644 --- a/src/gui/colour.cpp +++ b/src/gui/colour.cpp @@ -19,8 +19,6 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include - #include "colour.h" #include "../configuration.h" diff --git a/src/gui/colour.h b/src/gui/colour.h index 1e8ba3db..1648e1e8 100644 --- a/src/gui/colour.h +++ b/src/gui/colour.h @@ -22,14 +22,11 @@ #ifndef _COLOUR_H #define _COLOUR_H -#include #include #include #include -#include "../guichanfwd.h" - class Colour : public gcn::ListModel { public: diff --git a/src/gui/confirm_dialog.cpp b/src/gui/confirm_dialog.cpp index 643d5d7a..8bb9c578 100644 --- a/src/gui/confirm_dialog.cpp +++ b/src/gui/confirm_dialog.cpp @@ -21,7 +21,10 @@ #include +#include "button.h" #include "confirm_dialog.h" +#include "scrollarea.h" +#include "textbox.h" #include "../utils/gettext.h" diff --git a/src/gui/confirm_dialog.h b/src/gui/confirm_dialog.h index fb8290c8..3fa2b90d 100644 --- a/src/gui/confirm_dialog.h +++ b/src/gui/confirm_dialog.h @@ -24,19 +24,18 @@ #include -#include "button.h" -#include "scrollarea.h" -#include "textbox.h" #include "window.h" -#include "../guichanfwd.h" +class ScrollArea; +class TextBox; /** * An option dialog. * * \ingroup GUI */ -class ConfirmDialog : public Window, public gcn::ActionListener { +class ConfirmDialog : public Window, public gcn::ActionListener +{ public: /** * Constructor. diff --git a/src/gui/connection.cpp b/src/gui/connection.cpp index 15d85bbc..a69698e9 100644 --- a/src/gui/connection.cpp +++ b/src/gui/connection.cpp @@ -31,7 +31,8 @@ #include "../utils/gettext.h" -namespace { +namespace +{ struct ConnectionActionListener : public gcn::ActionListener { void action(const gcn::ActionEvent &event) { state = EXIT_STATE; } @@ -62,10 +63,10 @@ ConnectionDialog::ConnectionDialog(): void ConnectionDialog::logic() { mProgress += 0.005f; + if (mProgress > 1.0f) - { mProgress = 0.0f; - } + mProgressBar->setProgress(mProgress); Window::logic(); } diff --git a/src/gui/debugwindow.cpp b/src/gui/debugwindow.cpp index 223b7fbd..055d9963 100644 --- a/src/gui/debugwindow.cpp +++ b/src/gui/debugwindow.cpp @@ -23,7 +23,6 @@ #include -#include "button.h" #include "debugwindow.h" #include "gui.h" #include "viewport.h" diff --git a/src/gui/debugwindow.h b/src/gui/debugwindow.h index 00119d15..e089de27 100644 --- a/src/gui/debugwindow.h +++ b/src/gui/debugwindow.h @@ -22,14 +22,10 @@ #ifndef DEBUGWINDOW_H #define DEBUGWINDOW_H -#include - #include #include "window.h" -#include "../guichanfwd.h" - /** * The debug window. * diff --git a/src/gui/emotecontainer.h b/src/gui/emotecontainer.h index 8e52a206..5a2b8c2e 100644 --- a/src/gui/emotecontainer.h +++ b/src/gui/emotecontainer.h @@ -29,8 +29,6 @@ #include #include -#include "../guichanfwd.h" - class AnimatedSprite; class Image; diff --git a/src/gui/emoteshortcutcontainer.h b/src/gui/emoteshortcutcontainer.h index cffaee6f..e8d87b60 100644 --- a/src/gui/emoteshortcutcontainer.h +++ b/src/gui/emoteshortcutcontainer.h @@ -24,12 +24,8 @@ #include -#include - #include "shortcutcontainer.h" -#include "../guichanfwd.h" - class AnimatedSprite; class Image; diff --git a/src/gui/emotewindow.cpp b/src/gui/emotewindow.cpp index b4e9c735..3fa96a6d 100644 --- a/src/gui/emotewindow.cpp +++ b/src/gui/emotewindow.cpp @@ -19,16 +19,11 @@ * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - -#include - #include "button.h" #include "gui.h" #include "emotewindow.h" #include "emotecontainer.h" #include "scrollarea.h" -#include "textbox.h" #include "widgets/layout.h" diff --git a/src/gui/emotewindow.h b/src/gui/emotewindow.h index 8e36e5ce..c642ff6f 100644 --- a/src/gui/emotewindow.h +++ b/src/gui/emotewindow.h @@ -27,8 +27,6 @@ #include "window.h" -#include "../guichanfwd.h" - class EmoteContainer; class TextBox; diff --git a/src/gui/focushandler.h b/src/gui/focushandler.h index 124b5472..b0639bd8 100644 --- a/src/gui/focushandler.h +++ b/src/gui/focushandler.h @@ -26,8 +26,6 @@ #include -#include "../guichanfwd.h" - /** * The focus handler. This focus handler does exactly the same as the Guichan * focus handler, but keeps a stack of modal widgets to be able to handle diff --git a/src/gui/gccontainer.h b/src/gui/gccontainer.h index 0a573645..da584a42 100644 --- a/src/gui/gccontainer.h +++ b/src/gui/gccontainer.h @@ -26,8 +26,6 @@ #include -#include "../guichanfwd.h" - /** * A garbage collecting container. Childs added to this container are * automatically deleted when the container is deleted. diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 642e916b..7779a503 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -63,7 +63,8 @@ class GuiConfigListener : public ConfigListener void optionChanged(const std::string &name) { - if (name == "customcursor") { + if (name == "customcursor") + { bool bCustomCursor = config.getValue("customcursor", 1) == 1; mGui->setUseCustomCursor(bCustomCursor); } @@ -107,7 +108,8 @@ Gui::Gui(Graphics *graphics): // Set global font std::string path = resman->getPath("fonts/dejavusans.ttf"); - try { + try + { const int fontSize = config.getValue("fontSize", 11); mGuiFont = new TrueTypeFont(path, fontSize); } @@ -119,7 +121,8 @@ Gui::Gui(Graphics *graphics): // Set bold font path = resman->getPath("fonts/dejavusans-bold.ttf"); - try { + try + { const int fontSize = config.getValue("fontSize", 11); boldFont = new TrueTypeFont(path, fontSize); } @@ -132,7 +135,8 @@ Gui::Gui(Graphics *graphics): gcn::Widget::setGlobalFont(mGuiFont); // Load hits' colourful fonts - try { + try + { hitRedFont = new gcn::ImageFont("graphics/gui/hits_red.png", "0123456789crit! "); hitBlueFont = new gcn::ImageFont("graphics/gui/hits_blue.png", @@ -182,12 +186,13 @@ Gui::~Gui() void Gui::logic() { // Fade out mouse cursor after extended inactivity - if (mMouseInactivityTimer < 100 * 15) { + if (mMouseInactivityTimer < 100 * 15) + { ++mMouseInactivityTimer; mMouseCursorAlpha = std::min(1.0f, mMouseCursorAlpha + 0.05f); - } else { - mMouseCursorAlpha = std::max(0.0f, mMouseCursorAlpha - 0.005f); } + else + mMouseCursorAlpha = std::max(0.0f, mMouseCursorAlpha - 0.005f); gcn::Gui::logic(); } @@ -232,9 +237,8 @@ void Gui::setUseCustomCursor(bool customCursor) mMouseCursors = resman->getImageSet("graphics/gui/mouse.png", 40, 40); - if (!mMouseCursors) { + if (!mMouseCursors) logger->error("Unable to load mouse cursors."); - } } else { @@ -242,7 +246,8 @@ void Gui::setUseCustomCursor(bool customCursor) SDL_ShowCursor(SDL_ENABLE); // Unload the mouse cursor - if (mMouseCursors) { + if (mMouseCursors) + { mMouseCursors->decRef(); mMouseCursors = NULL; } diff --git a/src/gui/help.h b/src/gui/help.h index 2ba74c0a..98e3aa67 100644 --- a/src/gui/help.h +++ b/src/gui/help.h @@ -27,8 +27,6 @@ #include "linkhandler.h" #include "window.h" -#include "../guichanfwd.h" - class BrowserBox; /** diff --git a/src/gui/inttextfield.h b/src/gui/inttextfield.h index 2a913ef6..add78084 100644 --- a/src/gui/inttextfield.h +++ b/src/gui/inttextfield.h @@ -24,8 +24,6 @@ #include "textfield.h" -#include "../guichanfwd.h" - /** * TextBox which only accepts numbers as input. */ diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index d7cd7ccd..246219f4 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -33,7 +33,6 @@ #include "itemcontainer.h" #include "progressbar.h" #include "scrollarea.h" -#include "textbox.h" #include "viewport.h" #include "widgets/layout.h" diff --git a/src/gui/inventorywindow.h b/src/gui/inventorywindow.h index 2c19ce26..2694e90b 100644 --- a/src/gui/inventorywindow.h +++ b/src/gui/inventorywindow.h @@ -27,7 +27,6 @@ #include "window.h" -#include "../guichanfwd.h" #include "../localplayer.h" class Item; diff --git a/src/gui/item_amount.cpp b/src/gui/item_amount.cpp index d8682c95..92be3d6e 100644 --- a/src/gui/item_amount.cpp +++ b/src/gui/item_amount.cpp @@ -70,7 +70,8 @@ ItemAmountWindow::ItemAmountWindow(int usage, Window *parent, Item *item): resetAmount(); - switch (usage) { + switch (usage) + { case AMOUNT_TRADE_ADD: setCaption(_("Select amount of items to trade.")); okButton->setActionEventId("AddTrade"); diff --git a/src/gui/item_amount.h b/src/gui/item_amount.h index d8eedadb..618d7d51 100644 --- a/src/gui/item_amount.h +++ b/src/gui/item_amount.h @@ -22,14 +22,10 @@ #ifndef ITEM_AMOUNT_WINDOW_H #define ITEM_AMOUNT_WINDOW_H -#include - #include #include "window.h" -#include "../guichanfwd.h" - class IntTextField; class Item; diff --git a/src/gui/itemcontainer.cpp b/src/gui/itemcontainer.cpp index caae3dca..e655d3fc 100644 --- a/src/gui/itemcontainer.cpp +++ b/src/gui/itemcontainer.cpp @@ -35,7 +35,6 @@ #include "../log.h" #include "../resources/image.h" -#include "../resources/iteminfo.h" #include "../resources/resourcemanager.h" #include "../utils/tostring.h" diff --git a/src/gui/itemcontainer.h b/src/gui/itemcontainer.h index 5513faa7..f027de19 100644 --- a/src/gui/itemcontainer.h +++ b/src/gui/itemcontainer.h @@ -28,8 +28,6 @@ #include #include -#include "../guichanfwd.h" - class Image; class Inventory; class Item; diff --git a/src/gui/itemlinkhandler.cpp b/src/gui/itemlinkhandler.cpp index 34c12a0c..97c0b94f 100644 --- a/src/gui/itemlinkhandler.cpp +++ b/src/gui/itemlinkhandler.cpp @@ -19,6 +19,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include +#include + #include #include "itemlinkhandler.h" @@ -27,9 +30,6 @@ #include "../resources/iteminfo.h" #include "../resources/itemdb.h" -#include -#include - ItemLinkHandler::ItemLinkHandler() { mItemPopup = new ItemPopup; diff --git a/src/gui/itempopup.cpp b/src/gui/itempopup.cpp index 80edd354..39a5ecf1 100644 --- a/src/gui/itempopup.cpp +++ b/src/gui/itempopup.cpp @@ -26,16 +26,15 @@ #include "gui.h" #include "itempopup.h" +#include "scrollarea.h" +#include "textbox.h" #include "windowcontainer.h" #include "widgets/layout.h" -#include "../resources/image.h" #include "../resources/iteminfo.h" -#include "../resources/resourcemanager.h" #include "../utils/gettext.h" -#include "../utils/strprintf.h" #include "../utils/tostring.h" ItemPopup::ItemPopup(): @@ -89,9 +88,6 @@ ItemPopup::ItemPopup(): add(mItemWeightScroll); setLocationRelativeTo(getParent()); - - // LEEOR / TODO: This causes an exception error. - //moveToBottom(getParent()); } void ItemPopup::setItem(const ItemInfo &item) diff --git a/src/gui/itempopup.h b/src/gui/itempopup.h index 3c8f575d..d9d37264 100644 --- a/src/gui/itempopup.h +++ b/src/gui/itempopup.h @@ -23,12 +23,11 @@ #ifndef ITEMPOPUP_H__ #define ITEMPOPUP_H__ -#include "scrollarea.h" -#include "textbox.h" #include "window.h" -#include "../guichanfwd.h" -#include "../item.h" +class ItemInfo; +class ScrollArea; +class TextBox; class ItemPopup : public Window { diff --git a/src/gui/itemshortcutcontainer.h b/src/gui/itemshortcutcontainer.h index d6a04d7b..22d94ec2 100644 --- a/src/gui/itemshortcutcontainer.h +++ b/src/gui/itemshortcutcontainer.h @@ -26,8 +26,6 @@ #include "shortcutcontainer.h" -#include "../guichanfwd.h" - class Image; class Item; class ItemPopup; diff --git a/src/gui/listbox.cpp b/src/gui/listbox.cpp index 643d234e..e56ddeeb 100644 --- a/src/gui/listbox.cpp +++ b/src/gui/listbox.cpp @@ -62,8 +62,7 @@ void ListBox::draw(gcn::Graphics *graphics) // Draw the list elements graphics->setColor(gcn::Color(0, 0, 0, 255)); - for (int i = 0, y = 0; - i < mListModel->getNumberOfElements(); + for (int i = 0, y = 0; i < mListModel->getNumberOfElements(); ++i, y += fontHeight) { graphics->drawText(mListModel->getElementAt(i), 1, y); diff --git a/src/gui/listbox.h b/src/gui/listbox.h index 15f7afb4..12fcb955 100644 --- a/src/gui/listbox.h +++ b/src/gui/listbox.h @@ -24,8 +24,6 @@ #include -#include "../guichanfwd.h" - class SelectionListener; /** diff --git a/src/gui/login.cpp b/src/gui/login.cpp index 408456ef..2e9ca57e 100644 --- a/src/gui/login.cpp +++ b/src/gui/login.cpp @@ -26,6 +26,7 @@ #include "button.h" #include "checkbox.h" +#include "listbox.h" #include "login.h" #include "ok_dialog.h" #include "passwordfield.h" diff --git a/src/gui/login.h b/src/gui/login.h index b85e5ae1..70f30d5c 100644 --- a/src/gui/login.h +++ b/src/gui/login.h @@ -22,7 +22,6 @@ #ifndef LOGIN_H #define LOGIN_H -#include #include #include diff --git a/src/gui/menuwindow.h b/src/gui/menuwindow.h index 9b784c35..9bb54e29 100644 --- a/src/gui/menuwindow.h +++ b/src/gui/menuwindow.h @@ -24,8 +24,6 @@ #include "window.h" -#include "../guichanfwd.h" - /** * The Button Menu. * diff --git a/src/gui/minimap.h b/src/gui/minimap.h index b4574ad5..3ce0aacd 100644 --- a/src/gui/minimap.h +++ b/src/gui/minimap.h @@ -24,8 +24,6 @@ #include "window.h" -#include "../guichanfwd.h" - class Image; /** diff --git a/src/gui/ministatus.h b/src/gui/ministatus.h index d2bcef1c..832475f1 100644 --- a/src/gui/ministatus.h +++ b/src/gui/ministatus.h @@ -22,12 +22,8 @@ #ifndef MINISTATUS_H #define MINISTATUS_H -#include - #include "window.h" -#include "../guichanfwd.h" - class ProgressBar; /** diff --git a/src/gui/npc_text.cpp b/src/gui/npc_text.cpp index 1e29b793..b4313b70 100644 --- a/src/gui/npc_text.cpp +++ b/src/gui/npc_text.cpp @@ -19,10 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - -#include "npc_text.h" #include "button.h" +#include "npc_text.h" #include "scrollarea.h" #include "textbox.h" diff --git a/src/gui/npc_text.h b/src/gui/npc_text.h index 4e0d33aa..a07aa04f 100644 --- a/src/gui/npc_text.h +++ b/src/gui/npc_text.h @@ -22,11 +22,10 @@ #ifndef NPC_TEXT_H #define NPC_TEXT_H -#include +#include #include -#include "scrollarea.h" #include "window.h" class TextBox; diff --git a/src/gui/npcintegerdialog.cpp b/src/gui/npcintegerdialog.cpp index 65a1a7f1..4444e04b 100644 --- a/src/gui/npcintegerdialog.cpp +++ b/src/gui/npcintegerdialog.cpp @@ -19,20 +19,15 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "npcintegerdialog.h" - -#include -#include - #include "button.h" #include "inttextfield.h" +#include "npcintegerdialog.h" + +#include "widgets/layout.h" #include "../npc.h" #include "../utils/gettext.h" -#include "../utils/tostring.h" - -#include "widgets/layout.h" NpcIntegerDialog::NpcIntegerDialog(): Window(_("NPC Number Request")) diff --git a/src/gui/npcintegerdialog.h b/src/gui/npcintegerdialog.h index 983c46fe..b9ce70be 100644 --- a/src/gui/npcintegerdialog.h +++ b/src/gui/npcintegerdialog.h @@ -22,16 +22,11 @@ #ifndef GUI_NPCINTEGERDIALOG_H #define GUI_NPCINTEGERDIALOG_H -#include -#include - #include #include #include "window.h" -#include "../guichanfwd.h" - class IntTextField; /** diff --git a/src/gui/npclistdialog.cpp b/src/gui/npclistdialog.cpp index bb815680..e6406422 100644 --- a/src/gui/npclistdialog.cpp +++ b/src/gui/npclistdialog.cpp @@ -21,8 +21,10 @@ #include +#include "button.h" #include "listbox.h" #include "npclistdialog.h" +#include "scrollarea.h" #include "widgets/layout.h" diff --git a/src/gui/npclistdialog.h b/src/gui/npclistdialog.h index ffeced3d..30167a5e 100644 --- a/src/gui/npclistdialog.h +++ b/src/gui/npclistdialog.h @@ -22,18 +22,13 @@ #ifndef GUI_NPCLISTDIALOG_H #define GUI_NPCLISTDIALOG_H -#include #include #include #include -#include "button.h" -#include "scrollarea.h" #include "window.h" -#include "../guichanfwd.h" - /** * The npc list dialog. * diff --git a/src/gui/npcstringdialog.cpp b/src/gui/npcstringdialog.cpp index ccb3c411..468326d6 100644 --- a/src/gui/npcstringdialog.cpp +++ b/src/gui/npcstringdialog.cpp @@ -19,18 +19,13 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "npcstringdialog.h" - -#include -#include - #include "button.h" +#include "npcstringdialog.h" #include "textfield.h" #include "../npc.h" #include "../utils/gettext.h" -#include "../utils/tostring.h" #include "widgets/layout.h" diff --git a/src/gui/npcstringdialog.h b/src/gui/npcstringdialog.h index 5aea2de0..aa39764d 100644 --- a/src/gui/npcstringdialog.h +++ b/src/gui/npcstringdialog.h @@ -22,16 +22,11 @@ #ifndef GUI_NPCSTRINGDIALOG_H #define GUI_NPCSTRINGDIALOG_H -#include -#include - #include #include #include "window.h" -#include "../guichanfwd.h" - /** * The npc integer input dialog. * diff --git a/src/gui/ok_dialog.cpp b/src/gui/ok_dialog.cpp index 7f63b152..0d1f658f 100644 --- a/src/gui/ok_dialog.cpp +++ b/src/gui/ok_dialog.cpp @@ -19,10 +19,13 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "ok_dialog.h" - #include +#include "button.h" +#include "ok_dialog.h" +#include "scrollarea.h" +#include "textbox.h" + #include "../utils/gettext.h" OkDialog::OkDialog(const std::string &title, const std::string &msg, diff --git a/src/gui/ok_dialog.h b/src/gui/ok_dialog.h index 78b3d44f..3a438513 100644 --- a/src/gui/ok_dialog.h +++ b/src/gui/ok_dialog.h @@ -24,12 +24,10 @@ #include -#include "button.h" -#include "scrollarea.h" -#include "textbox.h" #include "window.h" -#include "../guichanfwd.h" +class ScrollArea; +class TextBox; /** * An 'Ok' button dialog. diff --git a/src/gui/passwordfield.cpp b/src/gui/passwordfield.cpp index 09b6abda..345ee1c3 100644 --- a/src/gui/passwordfield.cpp +++ b/src/gui/passwordfield.cpp @@ -21,8 +21,6 @@ #include "passwordfield.h" -#include - PasswordField::PasswordField(const std::string& text): TextField(text) { diff --git a/src/gui/passwordfield.h b/src/gui/passwordfield.h index e01bedbd..89293b05 100644 --- a/src/gui/passwordfield.h +++ b/src/gui/passwordfield.h @@ -22,9 +22,9 @@ #ifndef PASSWORDFIELD_H #define PASSWORDFIELD_H -#include "textfield.h" +#include -#include "../guichanfwd.h" +#include "textfield.h" /** * A password field. diff --git a/src/gui/playerbox.cpp b/src/gui/playerbox.cpp index 20ed17f8..60003fb5 100644 --- a/src/gui/playerbox.cpp +++ b/src/gui/playerbox.cpp @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include "playerbox.h" #include "../animatedsprite.h" diff --git a/src/gui/playerbox.h b/src/gui/playerbox.h index 70c41644..7c08defd 100644 --- a/src/gui/playerbox.h +++ b/src/gui/playerbox.h @@ -24,8 +24,6 @@ #include -#include "../guichanfwd.h" - class ImageRect; class Player; diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp index bf7c803a..cf6a7188 100644 --- a/src/gui/popupmenu.cpp +++ b/src/gui/popupmenu.cpp @@ -20,9 +20,6 @@ */ #include -#include - -#include #include "browserbox.h" #include "chat.h" @@ -42,7 +39,6 @@ #include "../net/protocol.h" #include "../resources/itemdb.h" -#include "../resources/iteminfo.h" #include "../utils/gettext.h" #include "../utils/strprintf.h" diff --git a/src/gui/progressbar.cpp b/src/gui/progressbar.cpp index a1b847c8..867477e0 100644 --- a/src/gui/progressbar.cpp +++ b/src/gui/progressbar.cpp @@ -19,6 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include + #include "gui.h" #include "progressbar.h" @@ -28,8 +30,6 @@ #include "../resources/image.h" #include "../resources/resourcemanager.h" -#include - ImageRect ProgressBar::mBorder; int ProgressBar::mInstances = 0; float ProgressBar::mAlpha = config.getValue("guialpha", 0.8); diff --git a/src/gui/progressbar.h b/src/gui/progressbar.h index dd9cc896..2c1b22da 100644 --- a/src/gui/progressbar.h +++ b/src/gui/progressbar.h @@ -22,12 +22,11 @@ #ifndef PROGRESSBAR_H #define PROGRESSBAR_H +#include + #include #include -#include - -#include "../guichanfwd.h" class ImageRect; diff --git a/src/gui/radiobutton.h b/src/gui/radiobutton.h index 6ead9da0..3d952b3f 100644 --- a/src/gui/radiobutton.h +++ b/src/gui/radiobutton.h @@ -24,14 +24,13 @@ #include -#include "../guichanfwd.h" - class Image; /* * Guichan based RadioButton with custom look */ -class RadioButton : public gcn::RadioButton { +class RadioButton : public gcn::RadioButton +{ public: /* * Constructor. diff --git a/src/gui/recorder.cpp b/src/gui/recorder.cpp index 9db1df2a..1e7d8e13 100644 --- a/src/gui/recorder.cpp +++ b/src/gui/recorder.cpp @@ -28,7 +28,6 @@ #include "widgets/layout.h" -#include "../utils/gettext.h" #include "../utils/trim.h" Recorder::Recorder(ChatWindow *chat, const std::string &title, diff --git a/src/gui/recorder.h b/src/gui/recorder.h index 420c4a2b..707f08ab 100644 --- a/src/gui/recorder.h +++ b/src/gui/recorder.h @@ -29,8 +29,6 @@ #include "window.h" -#include "../guichanfwd.h" - #include "../utils/gettext.h" class ChatWindow; diff --git a/src/gui/register.cpp b/src/gui/register.cpp index 9c337d9e..cbf87e5b 100644 --- a/src/gui/register.cpp +++ b/src/gui/register.cpp @@ -19,15 +19,12 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include -#include - #include -#include "../main.h" #include "../configuration.h" #include "../log.h" #include "../logindata.h" +#include "../main.h" #include "button.h" #include "checkbox.h" @@ -38,12 +35,11 @@ #include "register.h" #include "textfield.h" -#include "../utils/tostring.h" - #include "widgets/layout.h" #include "../utils/gettext.h" #include "../utils/strprintf.h" +#include "../utils/tostring.h" /** * Listener used while dealing with wrong data. It is used to direct the focus diff --git a/src/gui/register.h b/src/gui/register.h index 4b95a07b..e58ac9db 100644 --- a/src/gui/register.h +++ b/src/gui/register.h @@ -22,15 +22,13 @@ #ifndef REGISTER_H #define REGISTER_H -#include +#include #include #include #include "window.h" -#include "../guichanfwd.h" - class LoginData; class OkDialog; class WrongDataNoticeListener; diff --git a/src/gui/scrollarea.cpp b/src/gui/scrollarea.cpp index a892f2d0..e69b681c 100644 --- a/src/gui/scrollarea.cpp +++ b/src/gui/scrollarea.cpp @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include "scrollarea.h" #include "../configuration.h" diff --git a/src/gui/scrollarea.h b/src/gui/scrollarea.h index 4324deff..ccc1e178 100644 --- a/src/gui/scrollarea.h +++ b/src/gui/scrollarea.h @@ -24,8 +24,6 @@ #include -#include "../guichanfwd.h" - class Image; class ImageRect; diff --git a/src/gui/sell.cpp b/src/gui/sell.cpp index 7976e32e..e4be7921 100644 --- a/src/gui/sell.cpp +++ b/src/gui/sell.cpp @@ -19,30 +19,24 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include #include "button.h" -#include "shoplistbox.h" #include "scrollarea.h" #include "sell.h" #include "shop.h" +#include "shoplistbox.h" #include "slider.h" #include "widgets/layout.h" -#include "../item.h" #include "../npc.h" #include "../net/messageout.h" #include "../net/protocol.h" -#include "../resources/iteminfo.h" - #include "../utils/gettext.h" #include "../utils/strprintf.h" -#include "../utils/tostring.h" SellDialog::SellDialog(Network *network): Window(_("Sell")), diff --git a/src/gui/sell.h b/src/gui/sell.h index 8e639a3d..c11a7b7c 100644 --- a/src/gui/sell.h +++ b/src/gui/sell.h @@ -25,9 +25,9 @@ #include #include -#include "window.h" +#include -#include "../guichanfwd.h" +#include "window.h" class Item; class Network; diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp index d18f365c..19575cfb 100644 --- a/src/gui/setup.cpp +++ b/src/gui/setup.cpp @@ -19,9 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include -#include - #include "button.h" #include "setup.h" #include "setup_audio.h" diff --git a/src/gui/setup_audio.h b/src/gui/setup_audio.h index 2f5cd736..9e951895 100644 --- a/src/gui/setup_audio.h +++ b/src/gui/setup_audio.h @@ -26,8 +26,6 @@ #include "setuptab.h" -#include "../guichanfwd.h" - class Setup_Audio : public SetupTab, public gcn::ActionListener { public: diff --git a/src/gui/setup_colours.cpp b/src/gui/setup_colours.cpp index 95e6fff0..07ec9086 100644 --- a/src/gui/setup_colours.cpp +++ b/src/gui/setup_colours.cpp @@ -19,8 +19,6 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include - #include #include #include diff --git a/src/gui/setup_colours.h b/src/gui/setup_colours.h index 628efb43..f7984dd5 100644 --- a/src/gui/setup_colours.h +++ b/src/gui/setup_colours.h @@ -23,9 +23,9 @@ #define _SETUP_COLOURS_H #include -#include #include + #include #include diff --git a/src/gui/setup_joystick.h b/src/gui/setup_joystick.h index 2dc56439..eba8a2cc 100644 --- a/src/gui/setup_joystick.h +++ b/src/gui/setup_joystick.h @@ -26,8 +26,6 @@ #include "setuptab.h" -#include "../guichanfwd.h" - class Setup_Joystick : public SetupTab, public gcn::ActionListener { public: diff --git a/src/gui/setup_keyboard.h b/src/gui/setup_keyboard.h index d4966053..082fa84d 100644 --- a/src/gui/setup_keyboard.h +++ b/src/gui/setup_keyboard.h @@ -26,7 +26,6 @@ #include -#include "button.h" #include "setuptab.h" #include "../guichanfwd.h" diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index 932acee7..7e76055a 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -19,6 +19,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include #include #include @@ -27,14 +28,15 @@ #include "checkbox.h" #include "listbox.h" #include "ok_dialog.h" +#include "scrollarea.h" #include "setup_players.h" +#include "table.h" #include "widgets/dropdown.h" #include "widgets/layouthelper.h" #include "../configuration.h" #include "../log.h" -#include "../player_relations.h" #include "../utils/gettext.h" diff --git a/src/gui/setup_players.h b/src/gui/setup_players.h index 22c8a9b6..393fc6aa 100644 --- a/src/gui/setup_players.h +++ b/src/gui/setup_players.h @@ -24,17 +24,16 @@ #include -#include "button.h" -#include "scrollarea.h" #include "setuptab.h" -#include "table.h" -#include "../guichanfwd.h" #include "../player_relations.h" +class GuiTable; class PlayerTableModel; +class StaticTableModel; -class Setup_Players : public SetupTab, public gcn::ActionListener, public PlayerRelationsListener +class Setup_Players : public SetupTab, + public gcn::ActionListener, public PlayerRelationsListener { public: Setup_Players(); @@ -60,7 +59,7 @@ private: gcn::CheckBox *mDefaultTrading; gcn::CheckBox *mDefaultWhisper; - Button *mDeleteButton; + gcn::Button *mDeleteButton; gcn::DropDown *mIgnoreActionChoicesBox; }; diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h index d863fb64..303b5bfc 100644 --- a/src/gui/setup_video.h +++ b/src/gui/setup_video.h @@ -27,8 +27,6 @@ #include "setuptab.h" -#include "../guichanfwd.h" - class Setup_Video : public SetupTab, public gcn::ActionListener, public gcn::KeyListener { diff --git a/src/gui/shop.h b/src/gui/shop.h index 22b649d0..e0db4c59 100644 --- a/src/gui/shop.h +++ b/src/gui/shop.h @@ -27,10 +27,9 @@ #include -#include "../guichanfwd.h" #include "../shopitem.h" -#include "../resources/image.h" +class ShopItem; class ShopItems : public gcn::ListModel { diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp index 3d17fd55..ba636112 100644 --- a/src/gui/shoplistbox.cpp +++ b/src/gui/shoplistbox.cpp @@ -19,14 +19,12 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include #include #include -#include #include -#include #include "colour.h" +#include "shop.h" #include "shoplistbox.h" #include "../configuration.h" diff --git a/src/gui/shoplistbox.h b/src/gui/shoplistbox.h index 12413585..cde4786e 100644 --- a/src/gui/shoplistbox.h +++ b/src/gui/shoplistbox.h @@ -23,9 +23,8 @@ #define SHOPLISTBOX_H #include "listbox.h" -#include "shop.h" -#include "../guichanfwd.h" +class ShopItems; /** * A list box, meant to be used inside a scroll area. Same as the Guichan list diff --git a/src/gui/shortcutcontainer.cpp b/src/gui/shortcutcontainer.cpp index 62b2d382..eae24785 100644 --- a/src/gui/shortcutcontainer.cpp +++ b/src/gui/shortcutcontainer.cpp @@ -22,15 +22,8 @@ #include "shortcutcontainer.h" #include "../configuration.h" -#include "../graphics.h" -#include "../inventory.h" -#include "../item.h" -#include "../itemshortcut.h" -#include "../keyboardconfig.h" -#include "../localplayer.h" #include "../resources/image.h" -#include "../resources/resourcemanager.h" #include "../utils/tostring.h" diff --git a/src/gui/shortcutcontainer.h b/src/gui/shortcutcontainer.h index b2d0cc78..f5f06163 100644 --- a/src/gui/shortcutcontainer.h +++ b/src/gui/shortcutcontainer.h @@ -26,12 +26,10 @@ #include #include -#include "../guichanfwd.h" - class Image; /** - * An item shortcut container. Used to quickly use items. + * A generic shortcut container. * * \ingroup GUI */ @@ -41,7 +39,7 @@ class ShortcutContainer : public gcn::Widget, { public: /** - * Constructor. Initializes the graphic. + * Constructor. Initializes the shortcut container. */ ShortcutContainer(); @@ -51,7 +49,7 @@ class ShortcutContainer : public gcn::Widget, ~ShortcutContainer(){} /** - * Draws the items. + * Draws the shortcuts */ virtual void draw(gcn::Graphics *graphics) = 0; diff --git a/src/gui/shortcutwindow.cpp b/src/gui/shortcutwindow.cpp index 3a7cf0e0..91b33b72 100644 --- a/src/gui/shortcutwindow.cpp +++ b/src/gui/shortcutwindow.cpp @@ -19,9 +19,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include "scrollarea.h" #include "shortcutcontainer.h" #include "shortcutwindow.h" -#include "scrollarea.h" #include "../configuration.h" diff --git a/src/gui/shortcutwindow.h b/src/gui/shortcutwindow.h index 0168669e..2711ced5 100644 --- a/src/gui/shortcutwindow.h +++ b/src/gui/shortcutwindow.h @@ -24,10 +24,8 @@ #include "window.h" -#include "../guichanfwd.h" - -class ShortcutContainer; class ScrollArea; +class ShortcutContainer; /** * A window around the ItemShortcutContainer. diff --git a/src/gui/skill.cpp b/src/gui/skill.cpp index 732aaa12..4587e75a 100644 --- a/src/gui/skill.cpp +++ b/src/gui/skill.cpp @@ -19,13 +19,13 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include #include "button.h" #include "listbox.h" +#include "scrollarea.h" #include "skill.h" +#include "table.h" #include "windowcontainer.h" #include "widgets/layout.h" @@ -124,9 +124,11 @@ SkillDialog::SkillDialog(): { initSkillinfo(); mTableModel = new SkillGuiTableModel(this); - mTable.setModel(mTableModel); - mTable.setOpaque(false); - mTable.setLinewiseSelection(true); + mTable = new GuiTable(mTableModel); + mTable->setOpaque(false); + mTable->setLinewiseSelection(true); + mTable->setActionEventId("skill"); + mTable->addActionListener(this); setWindowName(_("Skills")); setCloseButton(true); @@ -135,14 +137,12 @@ SkillDialog::SkillDialog(): setMinHeight(50 + mTableModel->getHeight()); setMinWidth(200); - ScrollArea *skillScrollArea = new ScrollArea(&mTable); + ScrollArea *skillScrollArea = new ScrollArea(mTable); mPointsLabel = new gcn::Label(strprintf(_("Skill points: %d"), 0)); mIncButton = new Button(_("Up"), _("inc"), this); mUseButton = new Button(_("Use"), _("use"), this); mUseButton->setEnabled(false); - mTable.setActionEventId("skill"); - skillScrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); place(0, 0, skillScrollArea, 5).setPadding(3); @@ -153,14 +153,13 @@ SkillDialog::SkillDialog(): Layout &layout = getLayout(); layout.setRowHeight(0, Layout::AUTO_SET); - mTable.addActionListener(this); - setLocationRelativeTo(getParent()); loadWindowState(); } SkillDialog::~SkillDialog() { + delete mTable; } void SkillDialog::action(const gcn::ActionEvent &event) @@ -168,15 +167,14 @@ void SkillDialog::action(const gcn::ActionEvent &event) if (event.getId() == "inc") { // Increment skill - int selectedSkill = mTable.getSelectedRow(); + int selectedSkill = mTable->getSelectedRow(); if (selectedSkill >= 0) player_node->raiseSkill(mSkillList[selectedSkill]->id); } else if (event.getId() == "skill") { - mIncButton->setEnabled( - mTable.getSelectedRow() > -1 && - player_node->mSkillPoint > 0); + mIncButton->setEnabled(mTable->getSelectedRow() > -1 && + player_node->mSkillPoint > 0); } else if (event.getId() == "close") setVisible(false); @@ -187,7 +185,7 @@ void SkillDialog::update() mPointsLabel->setCaption(strprintf(_("Skill points: %d"), player_node->mSkillPoint)); - int selectedSkill = mTable.getSelectedRow(); + int selectedSkill = mTable->getSelectedRow(); if (selectedSkill >= 0) { diff --git a/src/gui/skill.h b/src/gui/skill.h index 45cfd059..91c2b640 100644 --- a/src/gui/skill.h +++ b/src/gui/skill.h @@ -25,19 +25,15 @@ #include #include -#include -#include "scrollarea.h" -#include "table.h" #include "window.h" -#include "../guichanfwd.h" - struct SKILL { short id; /**< Index into "skill_db" array */ short lv, sp; }; +class GuiTable; class SkillGuiTableModel; /** @@ -72,7 +68,7 @@ class SkillDialog : public Window, public gcn::ActionListener const std::vector& getSkills(void) const { return mSkillList; } private: - GuiTable mTable;//gcn::ListBox *mSkillListBox; + GuiTable *mTable; ScrollArea *skillScrollArea; SkillGuiTableModel *mTableModel; gcn::Label *mPointsLabel; diff --git a/src/gui/slider.h b/src/gui/slider.h index 12004f55..56ea334a 100644 --- a/src/gui/slider.h +++ b/src/gui/slider.h @@ -24,8 +24,6 @@ #include -#include "../guichanfwd.h" - class Image; /** diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp index 7eedce1c..8e3fe3c7 100644 --- a/src/gui/speechbubble.cpp +++ b/src/gui/speechbubble.cpp @@ -25,19 +25,15 @@ #include #include "gui.h" +#include "scrollarea.h" #include "speechbubble.h" - -#include "../resources/image.h" -#include "../resources/resourcemanager.h" +#include "textbox.h" #include "../utils/gettext.h" -// TODO: Fix windows so that they can each load their own skins without the -// other windows overriding another window's skin. SpeechBubble::SpeechBubble(): Window(_("Speech"), false, NULL, "graphics/gui/speechbubble.xml") { - // Height == Top Graphic (14px) + 1 Row of Text (15px) + Bottom Graphic (17px) setContentSize(140, 46); setShowTitle(false); setTitleBarHeight(0); @@ -62,9 +58,6 @@ SpeechBubble::SpeechBubble(): add(mSpeechArea); setLocationRelativeTo(getParent()); - - // LEEOR / TODO: This causes an exception error. - //moveToBottom(getParent()); } void SpeechBubble::setCaption(const std::string &name, const gcn::Color &color) @@ -83,8 +76,6 @@ void SpeechBubble::setText(std::string mText) if (numRows > 2) { - // 15 == height of each line of text (based on font heights) - // 14 == speechbubble Top + Bottom graphic pixel heights setContentSize(mSpeechBox->getMinWidth() + fontHeight, (numRows * fontHeight) + 6); mSpeechArea->setDimension(gcn::Rectangle(4, fontHeight + 3, diff --git a/src/gui/speechbubble.h b/src/gui/speechbubble.h index 23733813..323e5cbb 100644 --- a/src/gui/speechbubble.h +++ b/src/gui/speechbubble.h @@ -20,13 +20,14 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef _LOM_SPEECHBUBBLE_H__ -#define _LOM_SPEECHBUBBLE_H__ +#ifndef SPEECHBUBBLE_H__ +#define SPEECHBUBBLE_H__ -#include "scrollarea.h" -#include "textbox.h" #include "window.h" +class ScrollArea; +class TextBox; + class SpeechBubble : public Window { public: diff --git a/src/gui/status.h b/src/gui/status.h index 1e1c4e98..00a48f4e 100644 --- a/src/gui/status.h +++ b/src/gui/status.h @@ -22,14 +22,10 @@ #ifndef STATUS_H #define STATUS_H -#include - #include #include "window.h" -#include "../guichanfwd.h" - class LocalPlayer; class ProgressBar; diff --git a/src/gui/table.cpp b/src/gui/table.cpp index bccdc900..9a5c0591 100644 --- a/src/gui/table.cpp +++ b/src/gui/table.cpp @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include #include diff --git a/src/gui/table.h b/src/gui/table.h index bdb41e90..d63b1fb9 100644 --- a/src/gui/table.h +++ b/src/gui/table.h @@ -24,16 +24,12 @@ #include -#include #include #include -#include #include #include "table_model.h" -#include "../guichanfwd.h" - class GuiTableActionListener; /** diff --git a/src/gui/table_model.cpp b/src/gui/table_model.cpp index 5ee7e9ab..19e780f3 100644 --- a/src/gui/table_model.cpp +++ b/src/gui/table_model.cpp @@ -19,9 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - -#include #include #include "table_model.h" diff --git a/src/gui/table_model.h b/src/gui/table_model.h index a2a93887..1d966e8b 100644 --- a/src/gui/table_model.h +++ b/src/gui/table_model.h @@ -25,11 +25,6 @@ #include #include -#include -#include - -#include "../guichanfwd.h" - class TableModelListener { public: diff --git a/src/gui/textbox.cpp b/src/gui/textbox.cpp index e7986244..2a86d549 100644 --- a/src/gui/textbox.cpp +++ b/src/gui/textbox.cpp @@ -21,7 +21,6 @@ #include -#include #include #include "textbox.h" diff --git a/src/gui/textbox.h b/src/gui/textbox.h index 84dd6268..10a81fc0 100644 --- a/src/gui/textbox.h +++ b/src/gui/textbox.h @@ -24,8 +24,6 @@ #include -#include "../guichanfwd.h" - /** * A text box, meant to be used inside a scroll area. Same as the Guichan text * box except this one doesn't have a background or border, instead completely @@ -33,7 +31,8 @@ * * \ingroup GUI */ -class TextBox : public gcn::TextBox { +class TextBox : public gcn::TextBox +{ public: /** * Constructor. diff --git a/src/gui/textfield.cpp b/src/gui/textfield.cpp index 7e5004cc..99a95a2e 100644 --- a/src/gui/textfield.cpp +++ b/src/gui/textfield.cpp @@ -19,12 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include -#include - #include "sdlinput.h" #include "textfield.h" diff --git a/src/gui/textfield.h b/src/gui/textfield.h index 11a58824..73824615 100644 --- a/src/gui/textfield.h +++ b/src/gui/textfield.h @@ -24,8 +24,6 @@ #include -#include "../guichanfwd.h" - class ImageRect; class TextField; diff --git a/src/gui/trade.cpp b/src/gui/trade.cpp index c89e55a2..f901be5e 100644 --- a/src/gui/trade.cpp +++ b/src/gui/trade.cpp @@ -41,8 +41,6 @@ #include "../net/messageout.h" #include "../net/protocol.h" -#include "../resources/iteminfo.h" - #include "../utils/gettext.h" #include "../utils/strprintf.h" #include "../utils/tostring.h" diff --git a/src/gui/updatewindow.cpp b/src/gui/updatewindow.cpp index 67e05bbd..1f62bd2d 100644 --- a/src/gui/updatewindow.cpp +++ b/src/gui/updatewindow.cpp @@ -26,6 +26,9 @@ #include +// Curl should be included after Guichan to avoid Windows redefinitions +#include + #include "browserbox.h" #include "button.h" #include "progressbar.h" @@ -34,9 +37,6 @@ #include "widgets/layout.h" -// Curl should be included after Guichan to avoid Windows redefinitions -#include - #include "../configuration.h" #include "../log.h" #include "../main.h" diff --git a/src/gui/updatewindow.h b/src/gui/updatewindow.h index 6450ece2..4ada3c3a 100644 --- a/src/gui/updatewindow.h +++ b/src/gui/updatewindow.h @@ -29,8 +29,6 @@ #include "window.h" -#include "../guichanfwd.h" - #include "../utils/mutex.h" class BrowserBox; diff --git a/src/gui/viewport.cpp b/src/gui/viewport.cpp index f258aba8..11a0004b 100644 --- a/src/gui/viewport.cpp +++ b/src/gui/viewport.cpp @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include "gui.h" #include "popupmenu.h" #include "viewport.h" @@ -36,9 +34,6 @@ #include "../npc.h" #include "../textmanager.h" -#include "../resources/animation.h" -#include "../resources/image.h" -#include "../resources/imageset.h" #include "../resources/monsterinfo.h" #include "../resources/resourcemanager.h" diff --git a/src/gui/viewport.h b/src/gui/viewport.h index 5ed40166..e352f765 100644 --- a/src/gui/viewport.h +++ b/src/gui/viewport.h @@ -26,9 +26,7 @@ #include "windowcontainer.h" -#include "../being.h" #include "../configlistener.h" -#include "../guichanfwd.h" class Map; class FloorItem; diff --git a/src/gui/widgets/dropdown.cpp b/src/gui/widgets/dropdown.cpp index ac5cbaa2..31d35cb0 100644 --- a/src/gui/widgets/dropdown.cpp +++ b/src/gui/widgets/dropdown.cpp @@ -24,6 +24,8 @@ #include "dropdown.h" #include "../colour.h" +#include "../listbox.h" +#include "../scrollarea.h" #include "../../configuration.h" #include "../../graphics.h" diff --git a/src/gui/widgets/dropdown.h b/src/gui/widgets/dropdown.h index bff8bd1e..e5919dc7 100644 --- a/src/gui/widgets/dropdown.h +++ b/src/gui/widgets/dropdown.h @@ -22,15 +22,8 @@ #ifndef DROPDOWN_H #define DROPDOWN_H -#include - #include -#include "../listbox.h" -#include "../scrollarea.h" - -#include "../../guichanfwd.h" - class Image; class ImageRect; diff --git a/src/gui/widgets/resizegrip.h b/src/gui/widgets/resizegrip.h index 198954f6..620c133f 100644 --- a/src/gui/widgets/resizegrip.h +++ b/src/gui/widgets/resizegrip.h @@ -24,8 +24,6 @@ #include -#include "../../guichanfwd.h" - class Image; /** diff --git a/src/gui/widgets/tab.cpp b/src/gui/widgets/tab.cpp index 5465b431..22e952e7 100644 --- a/src/gui/widgets/tab.cpp +++ b/src/gui/widgets/tab.cpp @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include #include "tab.h" diff --git a/src/gui/window.cpp b/src/gui/window.cpp index 35d47082..36828194 100644 --- a/src/gui/window.cpp +++ b/src/gui/window.cpp @@ -28,7 +28,6 @@ #include #include "gui.h" -#include "gccontainer.h" #include "window.h" #include "windowcontainer.h" @@ -37,7 +36,6 @@ #include "../configlistener.h" #include "../configuration.h" -#include "../graphics.h" #include "../log.h" #include "../resources/image.h" diff --git a/src/gui/windowcontainer.h b/src/gui/windowcontainer.h index a3e80223..62704d1b 100644 --- a/src/gui/windowcontainer.h +++ b/src/gui/windowcontainer.h @@ -24,15 +24,14 @@ #include -#include "../guichanfwd.h" - /** * A window container. This container adds functionality for more convenient * widget (windows in particular) destruction. * * \ingroup GUI */ -class WindowContainer : public gcn::Container { +class WindowContainer : public gcn::Container +{ public: /** * Do GUI logic. This functions adds automatic deletion of objects that diff --git a/src/main.cpp b/src/main.cpp index b933742a..65b61de2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -54,6 +54,7 @@ #include "serverinfo.h" #include "sound.h" +#include "gui/button.h" #include "gui/char_server.h" #include "gui/char_select.h" #include "gui/colour.h" diff --git a/src/net/charserverhandler.cpp b/src/net/charserverhandler.cpp index b91a506a..bd3685f3 100644 --- a/src/net/charserverhandler.cpp +++ b/src/net/charserverhandler.cpp @@ -21,7 +21,6 @@ #include "charserverhandler.h" #include "messagein.h" -#include "network.h" #include "protocol.h" #include "../extensions.h" @@ -34,6 +33,8 @@ #include "../gui/char_select.h" #include "../gui/ok_dialog.h" +#include "../utils/tostring.h" + /* * Yeah, this is a global. Get over it. */ diff --git a/src/net/loginhandler.cpp b/src/net/loginhandler.cpp index db601214..6ad410ec 100644 --- a/src/net/loginhandler.cpp +++ b/src/net/loginhandler.cpp @@ -21,7 +21,6 @@ #include "loginhandler.h" #include "messagein.h" -#include "network.h" #include "protocol.h" #include "../log.h" @@ -29,6 +28,8 @@ #include "../main.h" #include "../serverinfo.h" +#include "../utils/tostring.h" + extern SERVER_INFO **server_info; LoginHandler::LoginHandler() diff --git a/src/net/network.cpp b/src/net/network.cpp index 941995c9..059da779 100644 --- a/src/net/network.cpp +++ b/src/net/network.cpp @@ -26,6 +26,7 @@ #include "network.h" #include "../log.h" +#include "../utils/tostring.h" /** Warning: buffers and other variables are shared, so there can be only one connection active at a time */ @@ -418,19 +419,6 @@ void Network::receive() SDLNet_FreeSocketSet(set); } -char *iptostring(int address) -{ - static char asciiIP[16]; - - sprintf(asciiIP, "%i.%i.%i.%i", - (unsigned char)(address), - (unsigned char)(address >> 8), - (unsigned char)(address >> 16), - (unsigned char)(address >> 24)); - - return asciiIP; -} - void Network::setError(const std::string& error) { logger->log("Network error: %s", error.c_str()); diff --git a/src/net/network.h b/src/net/network.h index c035f55c..02fe7538 100644 --- a/src/net/network.h +++ b/src/net/network.h @@ -115,7 +115,4 @@ class Network MessageHandlers mMessageHandlers; }; -/** Convert an address from int format to string */ -char *iptostring(int address); - #endif diff --git a/src/utils/tostring.h b/src/utils/tostring.h index 5ac1d3aa..eb86f99e 100644 --- a/src/utils/tostring.h +++ b/src/utils/tostring.h @@ -32,4 +32,19 @@ std::string toString(const T &arg) return ss.str(); } +// TODO: Is there a good way to suppress warnings from classes which don't use +// this function? +static char *iptostring(int address) +{ + static char asciiIP[16]; + + sprintf(asciiIP, "%i.%i.%i.%i", + (unsigned char)(address), + (unsigned char)(address >> 8), + (unsigned char)(address >> 16), + (unsigned char)(address >> 24)); + + return asciiIP; +} + #endif -- cgit v1.2.3-60-g2f50 From 9aae9a0b20f144859fc68e94b4fb9fdae6f15861 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 12:11:00 -0700 Subject: Few more unneeded headers that weren't noticed originally in the last commit. Also, while the overall performance improved a little, it doesn't appear to be as drastic as the last commit was suggesting. Signed-off-by: Ira Rice --- src/gui/browserbox.cpp | 2 ++ src/gui/button.cpp | 3 --- src/gui/chat.cpp | 2 -- src/gui/listbox.cpp | 1 - src/gui/shoplistbox.cpp | 1 - src/gui/table.cpp | 2 +- src/gui/truetypefont.h | 1 - src/gui/window.cpp | 2 -- 8 files changed, 3 insertions(+), 11 deletions(-) diff --git a/src/gui/browserbox.cpp b/src/gui/browserbox.cpp index cd5479c8..c51852bb 100644 --- a/src/gui/browserbox.cpp +++ b/src/gui/browserbox.cpp @@ -21,6 +21,8 @@ #include +#include + #include "browserbox.h" #include "colour.h" #include "linkhandler.h" diff --git a/src/gui/button.cpp b/src/gui/button.cpp index 2e6bed0a..1d3a04e4 100644 --- a/src/gui/button.cpp +++ b/src/gui/button.cpp @@ -19,11 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include #include -#include #include "button.h" diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index a58600a8..f4d9763b 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include #include "browserbox.h" diff --git a/src/gui/listbox.cpp b/src/gui/listbox.cpp index e56ddeeb..b63d6424 100644 --- a/src/gui/listbox.cpp +++ b/src/gui/listbox.cpp @@ -22,7 +22,6 @@ #include #include #include -#include #include "colour.h" #include "listbox.h" diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp index ba636112..b5761535 100644 --- a/src/gui/shoplistbox.cpp +++ b/src/gui/shoplistbox.cpp @@ -20,7 +20,6 @@ */ #include -#include #include #include "colour.h" diff --git a/src/gui/table.cpp b/src/gui/table.cpp index 9a5c0591..af42165a 100644 --- a/src/gui/table.cpp +++ b/src/gui/table.cpp @@ -19,8 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include #include +#include #include "colour.h" #include "table.h" diff --git a/src/gui/truetypefont.h b/src/gui/truetypefont.h index 288be49a..bd338d84 100644 --- a/src/gui/truetypefont.h +++ b/src/gui/truetypefont.h @@ -25,7 +25,6 @@ #include #include -#include #ifndef __APPLE__ #include #else diff --git a/src/gui/window.cpp b/src/gui/window.cpp index 36828194..934bd9b3 100644 --- a/src/gui/window.cpp +++ b/src/gui/window.cpp @@ -25,8 +25,6 @@ #include -#include - #include "gui.h" #include "window.h" #include "windowcontainer.h" -- cgit v1.2.3-60-g2f50 From 3d18b2830f00fc4bd85e504b54531bbc0d2c2ce0 Mon Sep 17 00:00:00 2001 From: Philipp Sehmisch Date: Wed, 4 Feb 2009 17:04:22 +0100 Subject: Fixed a bug in windows setup script which caused translations to be extracted to the wrong directory. --- packaging/windows/setup.nsi | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi index 731994b8..d5905c45 100644 --- a/packaging/windows/setup.nsi +++ b/packaging/windows/setup.nsi @@ -189,8 +189,7 @@ Section "Music" SecMusic SectionEnd Section "Translations" SecTrans - CreateDirectory "$INSTDIR\translations" - SetOutPath "$INSTDIR\translations" + SetOutPath "$INSTDIR" File /nonfatal /r "${SRCDIR}\translations" SectionEnd -- cgit v1.2.3-60-g2f50 From 98f8f12759fe0aaf05bc124e5682903503fe3fe6 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 13:24:05 -0700 Subject: Not sure how this happened in the first place, but this should ensure that speech bubbles are always at least as long as the name is. Signed-off-by: Ira Rice --- src/gui/speechbubble.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp index 8e3fe3c7..1137af4b 100644 --- a/src/gui/speechbubble.cpp +++ b/src/gui/speechbubble.cpp @@ -73,9 +73,12 @@ void SpeechBubble::setText(std::string mText) const int fontHeight = getFont()->getHeight(); const int numRows = mSpeechBox->getNumberOfRows() + 1; + int width = mCaption->getWidth() + 3; if (numRows > 2) { + if (width < mSpeechBox->getMinWidth()) + width = mSpeechBox->getMinWidth(); setContentSize(mSpeechBox->getMinWidth() + fontHeight, (numRows * fontHeight) + 6); mSpeechArea->setDimension(gcn::Rectangle(4, fontHeight + 3, @@ -84,7 +87,6 @@ void SpeechBubble::setText(std::string mText) } else { - int width = mCaption->getWidth() + 3; if (width < getFont()->getWidth(mText)) width = getFont()->getWidth(mText); setContentSize(width + fontHeight, (fontHeight * 2) + 6); -- cgit v1.2.3-60-g2f50 From ed6a1d2fb487580fe3aee5ed7e0cf3fe091032f8 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 13:26:52 -0700 Subject: Fix for the last commit, where I forgot to modify the set dimension and set content size functions to use the width variable. Signed-off-by: Ira Rice --- src/gui/speechbubble.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp index 1137af4b..0e58825c 100644 --- a/src/gui/speechbubble.cpp +++ b/src/gui/speechbubble.cpp @@ -79,10 +79,8 @@ void SpeechBubble::setText(std::string mText) { if (width < mSpeechBox->getMinWidth()) width = mSpeechBox->getMinWidth(); - setContentSize(mSpeechBox->getMinWidth() + fontHeight, - (numRows * fontHeight) + 6); - mSpeechArea->setDimension(gcn::Rectangle(4, fontHeight + 3, - mSpeechBox->getMinWidth() + 5, + setContentSize(width + fontHeight, (numRows * fontHeight) + 6); + mSpeechArea->setDimension(gcn::Rectangle(4, fontHeight + 3, width + 5, (numRows * fontHeight))); } else -- cgit v1.2.3-60-g2f50 From e72f04528e93273af138375a68b09b5907fce964 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 13:30:51 -0700 Subject: Since they're now doing the same thing, having a branch is a little bit silly. Condensed the sizing code for speech bubbles to do the same for speech bubbles of all sizes. Signed-off-by: Ira Rice --- src/gui/speechbubble.cpp | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp index 0e58825c..b2c66ff2 100644 --- a/src/gui/speechbubble.cpp +++ b/src/gui/speechbubble.cpp @@ -75,22 +75,12 @@ void SpeechBubble::setText(std::string mText) const int numRows = mSpeechBox->getNumberOfRows() + 1; int width = mCaption->getWidth() + 3; - if (numRows > 2) - { - if (width < mSpeechBox->getMinWidth()) - width = mSpeechBox->getMinWidth(); - setContentSize(width + fontHeight, (numRows * fontHeight) + 6); - mSpeechArea->setDimension(gcn::Rectangle(4, fontHeight + 3, width + 5, - (numRows * fontHeight))); - } - else - { - if (width < getFont()->getWidth(mText)) - width = getFont()->getWidth(mText); - setContentSize(width + fontHeight, (fontHeight * 2) + 6); - mSpeechArea->setDimension(gcn::Rectangle(4, fontHeight + 3, - width, fontHeight)); - } + if (width < mSpeechBox->getMinWidth()) + width = mSpeechBox->getMinWidth(); + + setContentSize(width + fontHeight, (numRows * fontHeight) + 6); + mSpeechArea->setDimension(gcn::Rectangle(4, fontHeight + 3, width + 5, + (numRows * fontHeight))); } unsigned int SpeechBubble::getNumRows() -- cgit v1.2.3-60-g2f50 From 15d15965978d5ce73252e840c3da8ac15b48d858 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 13:51:22 -0700 Subject: On the offchance that a player's name is longer than 130 pixels, set the mininum width for the text wrapping code to be the length of the player's name instead. Signed-off-by: Ira Rice --- src/gui/speechbubble.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp index b2c66ff2..f14dcd52 100644 --- a/src/gui/speechbubble.cpp +++ b/src/gui/speechbubble.cpp @@ -69,11 +69,11 @@ void SpeechBubble::setCaption(const std::string &name, const gcn::Color &color) void SpeechBubble::setText(std::string mText) { - mSpeechBox->setTextWrapped(mText, 130); + int width = mCaption->getWidth() + 3; + mSpeechBox->setTextWrapped(mText, 130 > width ? 130 : width); const int fontHeight = getFont()->getHeight(); const int numRows = mSpeechBox->getNumberOfRows() + 1; - int width = mCaption->getWidth() + 3; if (width < mSpeechBox->getMinWidth()) width = mSpeechBox->getMinWidth(); -- cgit v1.2.3-60-g2f50 From 35c4cb970f14989445828aefa4cf17f3260f9281 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 14:43:01 -0700 Subject: Added a right click popup menu, and item popups to the equipment window. Signed-off-by: Ira Rice --- src/gui/equipmentwindow.cpp | 79 +++++++++++++++++++++++++++++++++++++++------ src/gui/equipmentwindow.h | 9 ++++++ 2 files changed, 79 insertions(+), 9 deletions(-) diff --git a/src/gui/equipmentwindow.cpp b/src/gui/equipmentwindow.cpp index 1fb2b601..f5ab604e 100644 --- a/src/gui/equipmentwindow.cpp +++ b/src/gui/equipmentwindow.cpp @@ -26,7 +26,10 @@ #include "button.h" #include "equipmentwindow.h" +#include "gui.h" +#include "itempopup.h" #include "playerbox.h" +#include "viewport.h" #include "../equipment.h" #include "../graphics.h" @@ -59,8 +62,9 @@ EquipmentWindow::EquipmentWindow(Equipment *equipment): Window(_("Equipment")), mEquipment(equipment), mSelected(-1) - { + mItemPopup = new ItemPopup(); + // Control that shows the Player mPlayerBox = new PlayerBox; mPlayerBox->setDimension(gcn::Rectangle(50, 80, 74, 123)); @@ -153,6 +157,23 @@ void EquipmentWindow::action(const gcn::ActionEvent &event) } } +Item* EquipmentWindow::getItem(const int &x, const int &y) +{ + for (int i = EQUIP_LEGS_SLOT; i < EQUIP_VECTOREND; i++) + { + gcn::Rectangle tRect(mEquipBox[i].posX, mEquipBox[i].posY, + BOX_WIDTH, BOX_HEIGHT); + + if (tRect.isPointInRect(x, y)) + { + return (i != EQUIP_AMMO_SLOT) ? + mInventory->getItem(mEquipment->getEquipment(i)) : + mInventory->getItem(mEquipment->getArrows()); + } + } + return NULL; +} + void EquipmentWindow::mousePressed(gcn::MouseEvent& mouseEvent) { Window::mousePressed(mouseEvent); @@ -162,21 +183,61 @@ void EquipmentWindow::mousePressed(gcn::MouseEvent& mouseEvent) Item* item; - // Checks if any of the presses were in the equip boxes. - for (int i = EQUIP_LEGS_SLOT; i < EQUIP_VECTOREND; i++) + if (mouseEvent.getButton() == gcn::MouseEvent::LEFT) { - item = (i != EQUIP_AMMO_SLOT) ? - mInventory->getItem(mEquipment->getEquipment(i)) : - mInventory->getItem(mEquipment->getArrows()); - gcn::Rectangle tRect(mEquipBox[i].posX, mEquipBox[i].posY, - BOX_WIDTH, BOX_HEIGHT); - if (tRect.isPointInRect(x, y)) + // Checks if any of the presses were in the equip boxes. + for (int i = EQUIP_LEGS_SLOT; i < EQUIP_VECTOREND; i++) { + item = getItem(x, y); + if (item) { mSelected = i; + break; } } } + else if (mouseEvent.getButton() == gcn::MouseEvent::RIGHT) + { + item = getItem(x, y); + + if (!item) + return; + + /* Convert relative to the window coordinates to absolute screen + * coordinates. + */ + const int mx = x + getX(); + const int my = y + getY(); + viewport->showPopup(mx, my, item); + } } +// Show ItemTooltip +void EquipmentWindow::mouseMoved(gcn::MouseEvent &event) +{ + const int x = event.getX(); + const int y = event.getY(); + + Item* item = getItem(x, y); + + if (item) + { + int mouseX, mouseY; + SDL_GetMouseState(&mouseX, &mouseY); + + mItemPopup->setItem(item->getInfo()); + mItemPopup->setOpaque(false); + mItemPopup->view(x + getX(), y + getY()); + } + else + { + mItemPopup->setVisible(false); + } +} + +// Hide ItemTooltip +void EquipmentWindow::mouseExited(gcn::MouseEvent &event) +{ + mItemPopup->setVisible(false); +} diff --git a/src/gui/equipmentwindow.h b/src/gui/equipmentwindow.h index 8e9b22eb..b64c768b 100644 --- a/src/gui/equipmentwindow.h +++ b/src/gui/equipmentwindow.h @@ -28,6 +28,8 @@ class Equipment; class Inventory; +class Item; +class ItemPopup; class PlayerBox; /** @@ -66,6 +68,8 @@ class EquipmentWindow : public Window, public gcn::ActionListener void mousePressed(gcn::MouseEvent& mouseEvent); + Item* getItem(const int &x, const int &y); + enum { // Equipment rules: EQUIP_LEGS_SLOT = 0, @@ -84,11 +88,16 @@ class EquipmentWindow : public Window, public gcn::ActionListener private: + void mouseExited(gcn::MouseEvent &event); + void mouseMoved(gcn::MouseEvent &event); + Equipment *mEquipment; Inventory *mInventory; gcn::Button *mUnequip; /**< Button for unequipping. */ EquipBox mEquipBox[EQUIP_VECTOREND]; /**< Equipment Boxes. */ + ItemPopup *mItemPopup; + PlayerBox *mPlayerBox; int mSelected; /**< Index of selected item. */ -- cgit v1.2.3-60-g2f50 From 1e20fad127583d7832130ecf50ca90d190ede91b Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 14:45:20 -0700 Subject: Forgot to check left clicking, as I assumed that it wouldn't break using the same lookup code. This fixes left clicking on the last commit. Signed-off-by: Ira Rice --- src/gui/equipmentwindow.cpp | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/gui/equipmentwindow.cpp b/src/gui/equipmentwindow.cpp index f5ab604e..7630c53c 100644 --- a/src/gui/equipmentwindow.cpp +++ b/src/gui/equipmentwindow.cpp @@ -188,12 +188,18 @@ void EquipmentWindow::mousePressed(gcn::MouseEvent& mouseEvent) // Checks if any of the presses were in the equip boxes. for (int i = EQUIP_LEGS_SLOT; i < EQUIP_VECTOREND; i++) { - item = getItem(x, y); + item = (i != EQUIP_AMMO_SLOT) ? + mInventory->getItem(mEquipment->getEquipment(i)) : + mInventory->getItem(mEquipment->getArrows()); + gcn::Rectangle tRect(mEquipBox[i].posX, mEquipBox[i].posY, + BOX_WIDTH, BOX_HEIGHT); - if (item) + if (tRect.isPointInRect(x, y)) { - mSelected = i; - break; + if (item) + { + mSelected = i; + } } } } -- cgit v1.2.3-60-g2f50 From f025d7798f1b280c15f44919878c926d2b10c2b7 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 15:27:09 -0700 Subject: Got rid of a few dangling pointers. Signed-off-by: Ira Rice --- src/gui/equipmentwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/equipmentwindow.cpp b/src/gui/equipmentwindow.cpp index 7630c53c..8a7b23ae 100644 --- a/src/gui/equipmentwindow.cpp +++ b/src/gui/equipmentwindow.cpp @@ -95,6 +95,8 @@ EquipmentWindow::EquipmentWindow(Equipment *equipment): EquipmentWindow::~EquipmentWindow() { delete mUnequip; + delete mItemPopup; + delete mPlayerBox; } void EquipmentWindow::draw(gcn::Graphics *graphics) -- cgit v1.2.3-60-g2f50 From 0bc83fbba9c8b5f2677b8183f16dd95645f3e998 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 15:37:39 -0700 Subject: A few more pointers which weren't getting deleted. Signed-off-by: Ira Rice --- src/gui/inventorywindow.cpp | 12 ++++++++++++ src/gui/inventorywindow.h | 5 +++++ src/gui/itemcontainer.cpp | 1 + src/gui/itemshortcutcontainer.cpp | 1 + 4 files changed, 19 insertions(+) diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index 246219f4..a3572d4f 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -105,6 +105,18 @@ InventoryWindow::InventoryWindow(int invSize): setLocationRelativeTo(getParent()); } +InventoryWindow::~InventoryWindow() +{ + delete mWeightBar; + delete mSlotsBar; + delete mUseButton; + delete mDropButton; + delete mItems; + delete mWeightLabel; + delete mSlotsLabel; + delete mInvenScroll; +} + void InventoryWindow::logic() { Window::logic(); diff --git a/src/gui/inventorywindow.h b/src/gui/inventorywindow.h index 2694e90b..78d30461 100644 --- a/src/gui/inventorywindow.h +++ b/src/gui/inventorywindow.h @@ -48,6 +48,11 @@ class InventoryWindow : public Window, gcn::ActionListener, */ InventoryWindow(int invSize = (INVENTORY_SIZE - 2)); + /** + * Destructor. + */ + ~InventoryWindow(); + /** * Logic (updates buttons and weight information). */ diff --git a/src/gui/itemcontainer.cpp b/src/gui/itemcontainer.cpp index e655d3fc..5693d001 100644 --- a/src/gui/itemcontainer.cpp +++ b/src/gui/itemcontainer.cpp @@ -66,6 +66,7 @@ ItemContainer::ItemContainer(Inventory *inventory, int offset): ItemContainer::~ItemContainer() { mSelImg->decRef(); + delete mItemPopup; } void ItemContainer::logic() diff --git a/src/gui/itemshortcutcontainer.cpp b/src/gui/itemshortcutcontainer.cpp index ecadd0e4..e152b03d 100644 --- a/src/gui/itemshortcutcontainer.cpp +++ b/src/gui/itemshortcutcontainer.cpp @@ -62,6 +62,7 @@ ItemShortcutContainer::ItemShortcutContainer(): ItemShortcutContainer::~ItemShortcutContainer() { mBackgroundImg->decRef(); + delete mItemPopup; } void ItemShortcutContainer::logic() -- cgit v1.2.3-60-g2f50 From d05b238a3c100ed0b5b31093f3d15bb039dde8d6 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 16:03:18 -0700 Subject: Added destructors to some classes originally obtained from Legends of Mazzeroth. At the moment, I think this is the last of the missing pointer deletes, but if more are found, then I'll add them to the proper classes and delete them. Signed-off-by: Ira Rice --- src/gui/itempopup.cpp | 11 +++++++++++ src/gui/itempopup.h | 1 + src/gui/speechbubble.cpp | 7 +++++++ src/gui/speechbubble.h | 1 + 4 files changed, 20 insertions(+) diff --git a/src/gui/itempopup.cpp b/src/gui/itempopup.cpp index 39a5ecf1..8651ede6 100644 --- a/src/gui/itempopup.cpp +++ b/src/gui/itempopup.cpp @@ -90,6 +90,17 @@ ItemPopup::ItemPopup(): setLocationRelativeTo(getParent()); } +ItemPopup::~ItemPopup() +{ + delete mItemName; + delete mItemDesc; + delete mItemDescScroll; + delete mItemEffect; + delete mItemEffectScroll; + delete mItemWeight; + delete mItemWeightScroll; +} + void ItemPopup::setItem(const ItemInfo &item) { mItemName->setCaption(item.getName()); diff --git a/src/gui/itempopup.h b/src/gui/itempopup.h index d9d37264..95ab6ffa 100644 --- a/src/gui/itempopup.h +++ b/src/gui/itempopup.h @@ -33,6 +33,7 @@ class ItemPopup : public Window { public: ItemPopup(); + ~ItemPopup(); void setItem(const ItemInfo &item); unsigned int getNumRows(); diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp index f14dcd52..f8c69e87 100644 --- a/src/gui/speechbubble.cpp +++ b/src/gui/speechbubble.cpp @@ -60,6 +60,13 @@ SpeechBubble::SpeechBubble(): setLocationRelativeTo(getParent()); } +SpeechBubble::~SpeechBubble() +{ + delete mCaption; + delete mSpeechBox; + delete mSpeechArea; +} + void SpeechBubble::setCaption(const std::string &name, const gcn::Color &color) { mCaption->setCaption(name); diff --git a/src/gui/speechbubble.h b/src/gui/speechbubble.h index 323e5cbb..7f5818af 100644 --- a/src/gui/speechbubble.h +++ b/src/gui/speechbubble.h @@ -33,6 +33,7 @@ class SpeechBubble : public Window public: SpeechBubble(); + ~SpeechBubble(); void setCaption(const std::string &name, const gcn::Color &color = 0x000000); -- cgit v1.2.3-60-g2f50 From 3818b6db81341b840201996c186bdc8ad5e456e9 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 18:29:58 -0700 Subject: Moved mEquipment to the LocalPlayer class, since it's the only place that uses it anyways. Signed-off-by: Ira Rice --- src/being.cpp | 2 -- src/being.h | 3 --- src/localplayer.cpp | 1 + src/localplayer.h | 3 +++ 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/being.cpp b/src/being.cpp index dc36adc2..dc843e43 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -25,7 +25,6 @@ #include "animatedsprite.h" #include "being.h" #include "configuration.h" -#include "equipment.h" #include "game.h" #include "graphics.h" #include "localplayer.h" @@ -67,7 +66,6 @@ Being::Being(int id, int job, Map *map): mWalkTime(0), mEmotion(0), mEmotionTime(0), mAttackSpeed(350), - mEquipment(new Equipment()), mId(id), mWalkSpeed(150), mDirection(DOWN), diff --git a/src/being.h b/src/being.h index b4508661..812ffdd3 100644 --- a/src/being.h +++ b/src/being.h @@ -44,7 +44,6 @@ #define STATUS_EFFECTS 32 class AnimatedSprite; -class Equipment; class ItemInfo; class Item; class Map; @@ -362,8 +361,6 @@ class Being : public Sprite // Target cursor being used by the being Image *mTargetCursor; - const std::auto_ptr mEquipment; - static int getHairColorsNr(void); static int getHairStylesNr(void); diff --git a/src/localplayer.cpp b/src/localplayer.cpp index c6fde7a8..bc0b2b81 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -63,6 +63,7 @@ LocalPlayer::LocalPlayer(Uint32 id, Uint16 job, Map *map): ATK_BONUS(0), MATK_BONUS(0), DEF_BONUS(0), MDEF_BONUS(0), FLEE_BONUS(0), mStatPoint(0), mSkillPoint(0), mStatsPointsToAttribute(0), + mEquipment(new Equipment()), mXp(0), mNetwork(0), mTarget(NULL), mPickUpTarget(NULL), mTrading(false), mGoingToTarget(false), diff --git a/src/localplayer.h b/src/localplayer.h index 4e0b205f..7f5596e4 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -31,6 +31,7 @@ #define INVENTORY_SIZE 102 #define STORAGE_SIZE 301 +class Equipment; class FloorItem; class ImageSet; class Inventory; @@ -234,6 +235,8 @@ class LocalPlayer : public Player /** Animated out of range target cursor. */ SimpleAnimation *mTargetCursorOutRange[NUM_TC]; + const std::auto_ptr mEquipment; + protected: void walk(unsigned char dir); -- cgit v1.2.3-60-g2f50 From cd511bda4e07f5de49ef66eff9d2fe4d649c17b6 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 18:36:02 -0700 Subject: Simplified equipment window initialization, since only the local player has an inventory or an equipment. Signed-off-by: Ira Rice --- src/game.cpp | 2 +- src/gui/equipmentwindow.cpp | 4 ++-- src/gui/equipmentwindow.h | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/game.cpp b/src/game.cpp index 5b37d409..43b3e986 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -213,7 +213,7 @@ void createGuiWindows(Network *network) skillDialog = new SkillDialog(); setupWindow = new Setup(); minimap = new Minimap(); - equipmentWindow = new EquipmentWindow(player_node->mEquipment.get()); + equipmentWindow = new EquipmentWindow(); tradeWindow = new TradeWindow(network); helpWindow = new HelpWindow(); debugWindow = new DebugWindow(); diff --git a/src/gui/equipmentwindow.cpp b/src/gui/equipmentwindow.cpp index 8a7b23ae..5ba9501d 100644 --- a/src/gui/equipmentwindow.cpp +++ b/src/gui/equipmentwindow.cpp @@ -58,9 +58,8 @@ static const int boxPosition[][2] = { {129, 78} // EQUIP_AMMO_SLOT }; -EquipmentWindow::EquipmentWindow(Equipment *equipment): +EquipmentWindow::EquipmentWindow(): Window(_("Equipment")), - mEquipment(equipment), mSelected(-1) { mItemPopup = new ItemPopup(); @@ -89,6 +88,7 @@ EquipmentWindow::EquipmentWindow(Equipment *equipment): mEquipBox[i].posY = boxPosition[i][1] + getTitleBarHeight(); } + mEquipment = player_node->mEquipment.get(); mInventory = player_node->getInventory(); } diff --git a/src/gui/equipmentwindow.h b/src/gui/equipmentwindow.h index b64c768b..4ae3300f 100644 --- a/src/gui/equipmentwindow.h +++ b/src/gui/equipmentwindow.h @@ -52,7 +52,7 @@ class EquipmentWindow : public Window, public gcn::ActionListener /** * Constructor. */ - EquipmentWindow(Equipment *equipment); + EquipmentWindow(); /** * Destructor. @@ -68,8 +68,6 @@ class EquipmentWindow : public Window, public gcn::ActionListener void mousePressed(gcn::MouseEvent& mouseEvent); - Item* getItem(const int &x, const int &y); - enum { // Equipment rules: EQUIP_LEGS_SLOT = 0, @@ -91,6 +89,8 @@ class EquipmentWindow : public Window, public gcn::ActionListener void mouseExited(gcn::MouseEvent &event); void mouseMoved(gcn::MouseEvent &event); + Item* getItem(const int &x, const int &y); + Equipment *mEquipment; Inventory *mInventory; gcn::Button *mUnequip; /**< Button for unequipping. */ -- cgit v1.2.3-60-g2f50 From 9f0d62aa2fbc0ec822526b129070615696ac6881 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 20:56:13 -0700 Subject: Changed NPC list dialog to selection wrap. Signed-off-by: Ira Rice --- src/gui/npclistdialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/npclistdialog.cpp b/src/gui/npclistdialog.cpp index e6406422..7d8a362a 100644 --- a/src/gui/npclistdialog.cpp +++ b/src/gui/npclistdialog.cpp @@ -43,6 +43,7 @@ NpcListDialog::NpcListDialog(): setDefaultSize(0, 0, 260, 200); mItemList = new ListBox(this); + mItemList->setWrappingEnabled(true); scrollArea = new ScrollArea(mItemList); okButton = new Button(_("OK"), "ok", this); cancelButton = new Button(_("Cancel"), "cancel", this); -- cgit v1.2.3-60-g2f50 From 373f1aca8bb651332fec7031853d9a685ebc896e Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 20:57:04 -0700 Subject: Added key and mouse events to the table class. Signed-off-by: Ira Rice --- src/gui/skill.cpp | 1 + src/gui/table.cpp | 121 +++++++++++++++++++++++++++++++++++++++++++++++++++++- src/gui/table.h | 33 ++++++++++----- 3 files changed, 143 insertions(+), 12 deletions(-) diff --git a/src/gui/skill.cpp b/src/gui/skill.cpp index 4587e75a..dd7c3a4e 100644 --- a/src/gui/skill.cpp +++ b/src/gui/skill.cpp @@ -127,6 +127,7 @@ SkillDialog::SkillDialog(): mTable = new GuiTable(mTableModel); mTable->setOpaque(false); mTable->setLinewiseSelection(true); + mTable->setWrappingEnabled(true); mTable->setActionEventId("skill"); mTable->addActionListener(this); diff --git a/src/gui/table.cpp b/src/gui/table.cpp index af42165a..3bed48d8 100644 --- a/src/gui/table.cpp +++ b/src/gui/table.cpp @@ -21,12 +21,15 @@ #include #include +#include #include "colour.h" #include "table.h" #include "../configuration.h" +#include "../utils/dtor.h" + float GuiTable::mAlpha = config.getValue("guialpha", 0.8); class GuiTableActionListener : public gcn::ActionListener @@ -78,6 +81,7 @@ void GuiTableActionListener::action(const gcn::ActionEvent& actionEvent) GuiTable::GuiTable(TableModel *initial_model, gcn::Color background, bool opacity) : mLinewiseMode(false), + mWrappingEnabled(false), mOpaque(opacity), mBackgroundColor(background), mModel(NULL), @@ -86,6 +90,8 @@ GuiTable::GuiTable(TableModel *initial_model, gcn::Color background, mTopWidget(NULL) { setModel(initial_model); + setFocusable(true); + addMouseListener(this); addKeyListener(this); } @@ -177,10 +183,63 @@ int GuiTable::getColumnWidth(int i) return 0; } +void GuiTable::setSelectedRow(int selected) +{ + if (mModel == NULL) + { + mSelectedRow = -1; + } + else + { + if (selected < 0) + { + mSelectedRow = -1; + } + else if (selected >= mModel->getRows() && mWrappingEnabled) + { + mSelectedRow = 0; + } + else if (selected >= mModel->getRows() && !mWrappingEnabled) + { + mSelectedRow = mModel->getRows() - 1; + } + else + { + mSelectedRow = selected; + } + } +} + +void GuiTable::setSelectedColumn(int selected) +{ + if (mModel == NULL) + { + mSelectedColumn = -1; + } + else + { + if (selected < 0) + { + mSelectedColumn = -1; + } + else if (selected >= mModel->getColumns() && mWrappingEnabled) + { + mSelectedColumn = 0; + } + else if (selected >= mModel->getColumns() && !mWrappingEnabled) + { + mSelectedColumn = mModel->getColumns() - 1; + } + else + { + mSelectedColumn = selected; + } + } +} + void GuiTable::uninstallActionListeners(void) { - for (std::vector::const_iterator it = action_listeners.begin(); it != action_listeners.end(); it++) - delete *it; + delete_all(action_listeners); action_listeners.clear(); } @@ -333,6 +392,49 @@ gcn::Rectangle GuiTable::getChildrenArea(void) // -- KeyListener notifications void GuiTable::keyPressed(gcn::KeyEvent& keyEvent) { + gcn::Key key = keyEvent.getKey(); + + if (key.getValue() == gcn::Key::ENTER || key.getValue() == gcn::Key::SPACE) + { + distributeActionEvent(); + keyEvent.consume(); + } + else if (key.getValue() == gcn::Key::UP) + { + setSelectedRow(mSelectedRow - 1); + + keyEvent.consume(); + } + else if (key.getValue() == gcn::Key::DOWN) + { + setSelectedRow(mSelectedRow + 1); + + keyEvent.consume(); + } + else if (key.getValue() == gcn::Key::LEFT) + { + setSelectedColumn(mSelectedColumn - 1); + + keyEvent.consume(); + } + else if (key.getValue() == gcn::Key::RIGHT) + { + setSelectedColumn(mSelectedColumn + 1); + + keyEvent.consume(); + } + else if (key.getValue() == gcn::Key::HOME) + { + setSelectedRow(0); + setSelectedColumn(0); + keyEvent.consume(); + } + else if (key.getValue() == gcn::Key::END) + { + setSelectedRow(mModel->getRows() - 1); + setSelectedColumn(mModel->getColumns() - 1); + keyEvent.consume(); + } } // -- MouseListener notifications @@ -355,10 +457,25 @@ void GuiTable::mousePressed(gcn::MouseEvent& mouseEvent) void GuiTable::mouseWheelMovedUp(gcn::MouseEvent& mouseEvent) { + if (isFocused()) + { + if (getSelectedRow() > 0 ) + { + setSelectedRow(getSelectedRow() - 1); + } + + mouseEvent.consume(); + } } void GuiTable::mouseWheelMovedDown(gcn::MouseEvent& mouseEvent) { + if (isFocused()) + { + setSelectedRow(getSelectedRow() + 1); + + mouseEvent.consume(); + } } void GuiTable::mouseDragged(gcn::MouseEvent& mouseEvent) diff --git a/src/gui/table.h b/src/gui/table.h index d63b1fb9..912eb284 100644 --- a/src/gui/table.h +++ b/src/gui/table.h @@ -33,8 +33,9 @@ class GuiTableActionListener; /** - * A table, with rows and columns made out of sub-widgets. Largely inspired by (and can be thought of as a generalisation of) - * the guichan listbox implementation. + * A table, with rows and columns made out of sub-widgets. Largely inspired by + * (and can be thought of as a generalisation of) the guichan listbox + * implementation. * * Normally you want this within a ScrollArea. * @@ -60,27 +61,38 @@ public: /** * Sets the table model * - * Note that actions issued by widgets returned from the model will update the table - * selection, but only AFTER any event handlers installed within the widget have been - *triggered. To be notified after such an update, add an action listener to the table - * instead. + * Note that actions issued by widgets returned from the model will update + * the table selection, but only AFTER any event handlers installed within + * the widget have been triggered. To be notified after such an update, add + * an action listener to the table instead. */ void setModel(TableModel *m); + const TableModel* getModel() {return mModel;} + void setSelected(int row, int column); int getSelectedRow(void); int getSelectedColumn(void); + void setSelectedRow(int selected); + + void setSelectedColumn(int selected); + + bool isWrappingEnabled() const {return mWrappingEnabled;} + + void setWrappingEnabled(bool wrappingEnabled) + {mWrappingEnabled = wrappingEnabled;} + gcn::Rectangle getChildrenArea(void); /** - * Toggle whether to use linewise selection mode, in which the table selects an entire - * line at a time, rather than a single cell. + * Toggle whether to use linewise selection mode, in which the table selects + * an entire line at a time, rather than a single cell. * - * Note that column information is tracked even in linewise selection mode; this mode - * therefore only affects visualisation. + * Note that column information is tracked even in linewise selection mode; + * this mode therefore only affects visualisation. * * Disabled by default. * @@ -144,6 +156,7 @@ private: int getColumnForX(int x); // -1 on error void recomputeDimensions(void); bool mLinewiseMode; + bool mWrappingEnabled; bool mOpaque; static float mAlpha; -- cgit v1.2.3-60-g2f50 From b0a8b8607962081e87716ab0dfbca2439953f420 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 22:13:12 -0700 Subject: Modified the NPC string and integer classes to automatically take focus to the input fields. Now the only NPC dialog which isn't completely navigatable by the keyboard alone is the NPC list dialog (seems to have regressed slightly recently). Signed-off-by: Ira Rice --- src/gui/npcintegerdialog.cpp | 16 ++++++++++++---- src/gui/npcintegerdialog.h | 14 +++++++++++--- src/gui/npcstringdialog.cpp | 6 ++++++ src/gui/npcstringdialog.h | 6 +++++- src/net/npchandler.cpp | 2 ++ 5 files changed, 36 insertions(+), 8 deletions(-) diff --git a/src/gui/npcintegerdialog.cpp b/src/gui/npcintegerdialog.cpp index 4444e04b..c58fc460 100644 --- a/src/gui/npcintegerdialog.cpp +++ b/src/gui/npcintegerdialog.cpp @@ -32,9 +32,10 @@ NpcIntegerDialog::NpcIntegerDialog(): Window(_("NPC Number Request")) { + mValueField = new IntTextField(); + mDecButton = new Button("-", "decvalue", this); mIncButton = new Button("+", "incvalue", this); - mValueField = new IntTextField(); okButton = new Button(_("OK"), "ok", this); cancelButton = new Button(_("Cancel"), "cancel", this); resetButton = new Button(_("Reset"), "reset", this); @@ -56,9 +57,6 @@ NpcIntegerDialog::NpcIntegerDialog(): reflowLayout(175, 0); setLocationRelativeTo(getParent()); - - mValueField->setActionEventId("valuefield"); - mValueField->addKeyListener(this); } void NpcIntegerDialog::setRange(const int min, const int max) @@ -105,3 +103,13 @@ void NpcIntegerDialog::action(const gcn::ActionEvent &event) mValueField->reset(); } } + +bool NpcIntegerDialog::isInputFocused() +{ + return mValueField->isFocused(); +} + +void NpcIntegerDialog::requestFocus() +{ + mValueField->requestFocus(); +} diff --git a/src/gui/npcintegerdialog.h b/src/gui/npcintegerdialog.h index b9ce70be..10ec60b9 100644 --- a/src/gui/npcintegerdialog.h +++ b/src/gui/npcintegerdialog.h @@ -23,7 +23,6 @@ #define GUI_NPCINTEGERDIALOG_H #include -#include #include "window.h" @@ -34,8 +33,7 @@ class IntTextField; * * \ingroup Interface */ -class NpcIntegerDialog : public Window, public gcn::ActionListener, - public gcn::KeyListener +class NpcIntegerDialog : public Window, public gcn::ActionListener { public: /** @@ -63,6 +61,16 @@ class NpcIntegerDialog : public Window, public gcn::ActionListener, */ void setRange(const int min, const int max); + /** + * Checks whether NpcStringDialog is Focused or not. + */ + bool isInputFocused(); + + /** + * Requests the textfield to take focus for input. + */ + void requestFocus(); + private: gcn::Button *mDecButton; gcn::Button *mIncButton; diff --git a/src/gui/npcstringdialog.cpp b/src/gui/npcstringdialog.cpp index 468326d6..718c416f 100644 --- a/src/gui/npcstringdialog.cpp +++ b/src/gui/npcstringdialog.cpp @@ -33,6 +33,7 @@ NpcStringDialog::NpcStringDialog(): Window(_("NPC Text Request")) { mValueField = new TextField(""); + okButton = new Button(_("OK"), "ok", this); cancelButton = new Button(_("Cancel"), "cancel", this); @@ -71,3 +72,8 @@ bool NpcStringDialog::isInputFocused() { return mValueField->isFocused(); } + +void NpcStringDialog::requestFocus() +{ + mValueField->requestFocus(); +} diff --git a/src/gui/npcstringdialog.h b/src/gui/npcstringdialog.h index aa39764d..1933e0f1 100644 --- a/src/gui/npcstringdialog.h +++ b/src/gui/npcstringdialog.h @@ -23,7 +23,6 @@ #define GUI_NPCSTRINGDIALOG_H #include -#include #include "window.h" @@ -64,6 +63,11 @@ class NpcStringDialog : public Window, public gcn::ActionListener */ bool isInputFocused(); + /** + * Requests the textfield to take focus for input. + */ + void requestFocus(); + private: gcn::TextField *mValueField; gcn::Button *okButton; diff --git a/src/net/npchandler.cpp b/src/net/npchandler.cpp index 82b07d41..4e17a27e 100644 --- a/src/net/npchandler.cpp +++ b/src/net/npchandler.cpp @@ -92,6 +92,7 @@ void NPCHandler::handleMessage(MessageIn *msg) current_npc = dynamic_cast(beingManager->findBeing(id)); npcIntegerDialog->setRange(0, 2147483647); npcIntegerDialog->setVisible(true); + npcIntegerDialog->requestFocus(); break; case SMSG_NPC_STR_INPUT: @@ -100,6 +101,7 @@ void NPCHandler::handleMessage(MessageIn *msg) current_npc = dynamic_cast(beingManager->findBeing(id)); npcStringDialog->setValue(""); npcStringDialog->setVisible(true); + npcStringDialog->requestFocus(); break; } } -- cgit v1.2.3-60-g2f50 From a955833718217fe35442bcde8a43375c91002738 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 22:28:43 -0700 Subject: Cleaned up some login includes that I missed earlier. Signed-off-by: Ira Rice --- src/gui/login.cpp | 5 ++--- src/gui/login.h | 10 ++++------ 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/gui/login.cpp b/src/gui/login.cpp index 2e9ca57e..3c8e7cb3 100644 --- a/src/gui/login.cpp +++ b/src/gui/login.cpp @@ -19,9 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include -#include - #include #include "button.h" @@ -30,8 +27,10 @@ #include "login.h" #include "ok_dialog.h" #include "passwordfield.h" +#include "scrollarea.h" #include "textfield.h" +#include "widgets/dropdown.h" #include "widgets/layout.h" #include "../main.h" diff --git a/src/gui/login.h b/src/gui/login.h index 70f30d5c..023d60aa 100644 --- a/src/gui/login.h +++ b/src/gui/login.h @@ -27,15 +27,13 @@ #include #include +#include -#include "scrollarea.h" #include "window.h" -#include "widgets/dropdown.h" - -#include "../guichanfwd.h" - +class DropDown; class LoginData; +class ScrollArea; /** * The login dialog. @@ -131,7 +129,7 @@ class LoginDialog : public Window, public gcn::ActionListener, }; DropDownList *mServerList; gcn::ListBox *mServerListBox; - ScrollArea *mServerScrollArea; + gcn::ScrollArea *mServerScrollArea; }; -- cgit v1.2.3-60-g2f50 From b64fd3b17bcd3f750851f0213eac43d467de8600 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 4 Feb 2009 22:55:59 -0700 Subject: Fixed a few table events. One prevented wrapping for tables when you are scrolling through the table upward, while the other didn't check upper bounds for rows and columns to see if the event is in the table, but rather just the lower bounds. Signed-off-by: Ira Rice --- src/gui/table.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/gui/table.cpp b/src/gui/table.cpp index 3bed48d8..674f3891 100644 --- a/src/gui/table.cpp +++ b/src/gui/table.cpp @@ -191,7 +191,7 @@ void GuiTable::setSelectedRow(int selected) } else { - if (selected < 0) + if (selected < 0 && !mWrappingEnabled) { mSelectedRow = -1; } @@ -199,7 +199,8 @@ void GuiTable::setSelectedRow(int selected) { mSelectedRow = 0; } - else if (selected >= mModel->getRows() && !mWrappingEnabled) + else if ((selected >= mModel->getRows() && !mWrappingEnabled) || + (selected < 0 && mWrappingEnabled)) { mSelectedRow = mModel->getRows() - 1; } @@ -218,15 +219,13 @@ void GuiTable::setSelectedColumn(int selected) } else { - if (selected < 0) - { - mSelectedColumn = -1; - } - else if (selected >= mModel->getColumns() && mWrappingEnabled) + if ((selected >= mModel->getColumns() && mWrappingEnabled) || + (selected < 0 && !mWrappingEnabled)) { mSelectedColumn = 0; } - else if (selected >= mModel->getColumns() && !mWrappingEnabled) + else if ((selected >= mModel->getColumns() && !mWrappingEnabled) || + (selected < 0 && mWrappingEnabled)) { mSelectedColumn = mModel->getColumns() - 1; } @@ -445,7 +444,8 @@ void GuiTable::mousePressed(gcn::MouseEvent& mouseEvent) int row = getRowForY(mouseEvent.getY()); int column = getColumnForX(mouseEvent.getX()); - if (row > -1 && column > -1) + if (row > -1 && column > -1 && + row < mModel->getRows() && column < mModel->getColumns()) { mSelectedColumn = column; mSelectedRow = row; @@ -459,7 +459,7 @@ void GuiTable::mouseWheelMovedUp(gcn::MouseEvent& mouseEvent) { if (isFocused()) { - if (getSelectedRow() > 0 ) + if (getSelectedRow() >= 0 ) { setSelectedRow(getSelectedRow() - 1); } -- cgit v1.2.3-60-g2f50 From b2972f32eb806f8d3f1acc110f2b8a994c902c2c Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 5 Feb 2009 09:30:52 -0700 Subject: Three things: Split chat and NPC dialog functionality based on the TMW complaint commit d2876ad85935c5d0b181d050bd4c19a4682123b1 (btw, if you're concerned about that, return is also a bad choice for the chat window in general, which overrides the GuiChan default for use widget. Tab would also be a bad choice, as it cycles through the widgets), next, I made the text displayed by the keyboard configuration setup dialog translatable, and lastly, I exposed the rest of the previously unconfigurable keys to be configurable through the keyboard setup tab. Signed-off-by: Ira Rice --- po/POTFILES.in | 1 + src/game.cpp | 110 +++++++++++++++++++++--------------------------- src/keyboardconfig.cpp | 112 +++++++++++++++++++++++++++---------------------- src/keyboardconfig.h | 9 ++++ 4 files changed, 120 insertions(+), 112 deletions(-) diff --git a/po/POTFILES.in b/po/POTFILES.in index fa3b2f9f..a70d35d4 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -50,5 +50,6 @@ src/resources/monsterdb.cpp src/resources/npcdb.cpp src/being.cpp src/game.cpp +src/keyboardconfig.cpp src/main.cpp src/party.cpp diff --git a/src/game.cpp b/src/game.cpp index 43b3e986..3f6de6af 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -501,55 +501,6 @@ void Game::handleInput() keyboard.setNewKeyIndex(keyboard.KEY_NO_VALUE); return; } - // Keys pressed together with Alt/Meta - // Emotions and some internal gui windows -#ifndef __APPLE__ - if (event.key.keysym.mod & KMOD_LALT) -#else - if (event.key.keysym.mod & KMOD_LMETA) -#endif - { - switch (event.key.keysym.sym) - { - case SDLK_p: - // Screenshot (picture, hence the p) - saveScreenshot(); - used = true; - break; - - default: - break; - - case SDLK_f: - // Find path to mouse (debug purpose) - viewport->toggleDebugPath(); - used = true; - break; - - case SDLK_t: - // Toggle accepting of incoming trade requests - unsigned int deflt = player_relations.getDefault(); - if (deflt & PlayerRelation::TRADE) - { - chatWindow->chatLog( - _("Ignoring incoming trade requests"), - BY_SERVER); - deflt &= ~PlayerRelation::TRADE; - } - else - { - chatWindow->chatLog( - _("Accepting incoming trade requests"), - BY_SERVER); - deflt |= PlayerRelation::TRADE; - } - - player_relations.setDefault(deflt); - - used = true; - break; - } - } // Mode switch to emotes if (keyboard.isKeyActive(keyboard.KEY_EMOTE)) @@ -563,16 +514,18 @@ void Game::handleInput() return; } } - switch (event.key.keysym.sym) + + const int tKey = keyboard.getKeyIndex(event.key.keysym.sym); + switch (tKey) { - case SDLK_PAGEUP: + case KeyboardConfig::KEY_SCROLL_CHAT_UP: if (chatWindow->isVisible()) { chatWindow->scroll(-DEFAULT_CHAT_WINDOW_SCROLL); used = true; } break; - case SDLK_PAGEDOWN: + case KeyboardConfig::KEY_SCROLL_CHAT_DOWN: if (chatWindow->isVisible()) { chatWindow->scroll(DEFAULT_CHAT_WINDOW_SCROLL); @@ -580,7 +533,7 @@ void Game::handleInput() return; } break; - case SDLK_F1: + case KeyboardConfig::KEY_WINDOW_HELP: // In-game Help if (helpWindow->isVisible()) helpWindow->setVisible(false); @@ -592,7 +545,7 @@ void Game::handleInput() used = true; break; - case SDLK_RETURN: + case KeyboardConfig::KEY_TOGGLE_CHAT: // Input chat window if (chatWindow->isInputFocused() || deathNotice != NULL || @@ -610,8 +563,15 @@ void Game::handleInput() // Close the config window, cancelling changes if opened else if (setupWindow->isVisible()) setupWindow->action(gcn::ActionEvent(NULL, "cancel")); + else + { + chatWindow->requestChatFocus(); + used = true; + } + break; + case KeyboardConfig::KEY_OK: // Submits the text and proceeds to the next dialog - else if (npcStringDialog->isVisible()) + if (npcStringDialog->isVisible()) npcStringDialog->action(gcn::ActionEvent(NULL, "ok")); // Proceed to the next dialog option, or close the window else if (npcTextDialog->isVisible()) @@ -622,15 +582,9 @@ void Game::handleInput() // Submits the text and proceeds to the next dialog else if (npcIntegerDialog->isVisible()) npcIntegerDialog->action(gcn::ActionEvent(NULL, "ok")); - // Else, open the chat edit box - else - { - chatWindow->requestChatFocus(); - used = true; - } break; // Quitting confirmation dialog - case SDLK_ESCAPE: + case KeyboardConfig::KEY_QUIT: if (!exitConfirm) { exitConfirm = new ConfirmDialog( _("Quit"), @@ -754,6 +708,38 @@ void Game::handleInput() case KeyboardConfig::KEY_WINDOW_EMOTE_SHORTCUT: requestedWindow = emoteShortcutWindow; break; + case KeyboardConfig::KEY_SCREENSHOT: + // Screenshot (picture, hence the p) + saveScreenshot(); + used = true; + break; + case KeyboardConfig::KEY_PATHFIND: + // Find path to mouse (debug purpose) + viewport->toggleDebugPath(); + used = true; + break; + case KeyboardConfig::KEY_TRADE: + // Toggle accepting of incoming trade requests + unsigned int deflt = player_relations.getDefault(); + if (deflt & PlayerRelation::TRADE) + { + chatWindow->chatLog( + _("Ignoring incoming trade requests"), + BY_SERVER); + deflt &= ~PlayerRelation::TRADE; + } + else + { + chatWindow->chatLog( + _("Accepting incoming trade requests"), + BY_SERVER); + deflt |= PlayerRelation::TRADE; + } + + player_relations.setDefault(deflt); + + used = true; + break; } } diff --git a/src/keyboardconfig.cpp b/src/keyboardconfig.cpp index d7288796..68d51572 100644 --- a/src/keyboardconfig.cpp +++ b/src/keyboardconfig.cpp @@ -27,64 +27,76 @@ #include "gui/setup_keyboard.h" +#include "utils/gettext.h" +#include "utils/strprintf.h" + struct KeyData { const char *configField; int defaultValue; - const char *caption; + std::string caption; }; // keyData must be in same order as enum keyAction. static KeyData const keyData[KeyboardConfig::KEY_TOTAL] = { - {"keyMoveUp", SDLK_UP, "Move Up"}, - {"keyMoveDown", SDLK_DOWN, "Move Down"}, - {"keyMoveLeft", SDLK_LEFT, "Move Left"}, - {"keyMoveRight", SDLK_RIGHT, "Move Right"}, - {"keyAttack", SDLK_LCTRL, "Attack"}, - {"keySmilie", SDLK_LALT, "Smilie"}, - {"keyTalk", SDLK_t, "Talk"}, - {"keyTarget", SDLK_LSHIFT, "Stop Attack"}, - {"keyTargetClosest", SDLK_a, "Target Closest"}, - {"keyTargetNPC", SDLK_n, "Target NPC"}, - {"keyTargetPlayer", SDLK_q, "Target Player"}, - {"keyPickup", SDLK_z, "Pickup"}, - {"keyHideWindows", SDLK_h, "Hide Windows"}, - {"keyBeingSit", SDLK_s, "Sit"}, - {"keyShortcut1", SDLK_1, "Item Shortcut 1"}, - {"keyShortcut2", SDLK_2, "Item Shortcut 2"}, - {"keyShortcut3", SDLK_3, "Item Shortcut 3"}, - {"keyShortcut4", SDLK_4, "Item Shortcut 4"}, - {"keyShortcut5", SDLK_5, "Item Shortcut 5"}, - {"keyShortcut6", SDLK_6, "Item Shortcut 6"}, - {"keyShortcut7", SDLK_7, "Item Shortcut 7"}, - {"keyShortcut8", SDLK_8, "Item Shortcut 8"}, - {"keyShortcut9", SDLK_9, "Item Shortcut 9"}, - {"keyShortcut10", SDLK_0, "Item Shortcut 10"}, - {"keyShortcut11", SDLK_MINUS, "Item Shortcut 11"}, - {"keyShortcut12", SDLK_EQUALS, "Item Shortcut 12"}, - {"keyWindowStatus", SDLK_F2, "Status Window"}, - {"keyWindowInventory", SDLK_F3, "Inventory Window"}, - {"keyWindowEquipment", SDLK_F4, "Equipment WIndow"}, - {"keyWindowSkill", SDLK_F5, "Skill Window"}, - {"keyWindowMinimap", SDLK_F6, "Minimap Window"}, - {"keyWindowChat", SDLK_F7, "Chat Window"}, - {"keyWindowShortcut", SDLK_F8, "Item Shortcut Window"}, - {"keyWindowSetup", SDLK_F9, "Setup Window"}, - {"keyWindowDebug", SDLK_F10, "Debug Window"}, - {"keyWindowEmote", SDLK_F11, "Emote Window"}, - {"keyWindowEmoteBar", SDLK_F12, "Emote Shortcut Window"}, - {"keyEmoteShortcut1", SDLK_1, "Emote Shortcut 1"}, - {"keyEmoteShortcut2", SDLK_2, "Emote Shortcut 2"}, - {"keyEmoteShortcut3", SDLK_3, "Emote Shortcut 3"}, - {"keyEmoteShortcut4", SDLK_4, "Emote Shortcut 4"}, - {"keyEmoteShortcut5", SDLK_5, "Emote Shortcut 5"}, - {"keyEmoteShortcut6", SDLK_6, "Emote Shortcut 6"}, - {"keyEmoteShortcut7", SDLK_7, "Emote Shortcut 7"}, - {"keyEmoteShortcut8", SDLK_8, "Emote Shortcut 8"}, - {"keyEmoteShortcut9", SDLK_9, "Emote Shortcut 9"}, - {"keyEmoteShortcut10", SDLK_0, "Emote Shortcut 10"}, - {"keyEmoteShortcut11", SDLK_MINUS, "Emote Shortcut 11"}, - {"keyEmoteShortcut12", SDLK_EQUALS, "Emote Shortcut 12"} + {"keyMoveUp", SDLK_UP, _("Move Up")}, + {"keyMoveDown", SDLK_DOWN, _("Move Down")}, + {"keyMoveLeft", SDLK_LEFT, _("Move Left")}, + {"keyMoveRight", SDLK_RIGHT, _("Move Right")}, + {"keyAttack", SDLK_LCTRL, _("Attack")}, + {"keySmilie", SDLK_LALT, _("Smilie")}, + {"keyTalk", SDLK_t, _("Talk")}, + {"keyTarget", SDLK_LSHIFT, _("Stop Attack")}, + {"keyTargetClosest", SDLK_a, _("Target Closest")}, + {"keyTargetNPC", SDLK_n, _("Target NPC")}, + {"keyTargetPlayer", SDLK_q, _("Target Player")}, + {"keyPickup", SDLK_z, _("Pickup")}, + {"keyHideWindows", SDLK_h, _("Hide Windows")}, + {"keyBeingSit", SDLK_s, _("Sit")}, + {"keyScreenshot", SDLK_p, _("Screenshot")}, + {"keyTrade", SDLK_r, _("Enable/Disable Trading")}, + {"keyPathfind", SDLK_f, _("Find Path to Mouse")}, + {"keyShortcut1", SDLK_1, strprintf(_("Item Shortcut %d"), 1)}, + {"keyShortcut2", SDLK_2, strprintf(_("Item Shortcut %d"), 2)}, + {"keyShortcut3", SDLK_3, strprintf(_("Item Shortcut %d"), 3)}, + {"keyShortcut4", SDLK_4, strprintf(_("Item Shortcut %d"), 4)}, + {"keyShortcut5", SDLK_5, strprintf(_("Item Shortcut %d"), 5)}, + {"keyShortcut6", SDLK_6, strprintf(_("Item Shortcut %d"), 6)}, + {"keyShortcut7", SDLK_7, strprintf(_("Item Shortcut %d"), 7)}, + {"keyShortcut8", SDLK_8, strprintf(_("Item Shortcut %d"), 8)}, + {"keyShortcut9", SDLK_9, strprintf(_("Item Shortcut %d"), 9)}, + {"keyShortcut10", SDLK_0, strprintf(_("Item Shortcut %d"), 10)}, + {"keyShortcut11", SDLK_MINUS, strprintf(_("Item Shortcut %d"), 11)}, + {"keyShortcut12", SDLK_EQUALS, strprintf(_("Item Shortcut %d"), 12)}, + {"keyWindowHelp", SDLK_F1, _("Help Window")}, + {"keyWindowStatus", SDLK_F2, _("Status Window")}, + {"keyWindowInventory", SDLK_F3, _("Inventory Window")}, + {"keyWindowEquipment", SDLK_F4, _("Equipment WIndow")}, + {"keyWindowSkill", SDLK_F5, _("Skill Window")}, + {"keyWindowMinimap", SDLK_F6, _("Minimap Window")}, + {"keyWindowChat", SDLK_F7, _("Chat Window")}, + {"keyWindowShortcut", SDLK_F8, _("Item Shortcut Window")}, + {"keyWindowSetup", SDLK_F9, _("Setup Window")}, + {"keyWindowDebug", SDLK_F10, _("Debug Window")}, + {"keyWindowEmote", SDLK_F11, _("Emote Window")}, + {"keyWindowEmoteBar", SDLK_F12, _("Emote Shortcut Window")}, + {"keyEmoteShortcut1", SDLK_1, strprintf(_("Emote Shortcut %d"), 1)}, + {"keyEmoteShortcut2", SDLK_2, strprintf(_("Emote Shortcut %d"), 2)}, + {"keyEmoteShortcut3", SDLK_3, strprintf(_("Emote Shortcut %d"), 3)}, + {"keyEmoteShortcut4", SDLK_4, strprintf(_("Emote Shortcut %d"), 4)}, + {"keyEmoteShortcut5", SDLK_5, strprintf(_("Emote Shortcut %d"), 5)}, + {"keyEmoteShortcut6", SDLK_6, strprintf(_("Emote Shortcut %d"), 6)}, + {"keyEmoteShortcut7", SDLK_7, strprintf(_("Emote Shortcut %d"), 7)}, + {"keyEmoteShortcut8", SDLK_8, strprintf(_("Emote Shortcut %d"), 8)}, + {"keyEmoteShortcut9", SDLK_9, strprintf(_("Emote Shortcut %d"), 9)}, + {"keyEmoteShortcut10", SDLK_0, strprintf(_("Emote Shortcut %d"), 10)}, + {"keyEmoteShortcut11", SDLK_MINUS, strprintf(_("Emote Shortcut %d"), 11)}, + {"keyEmoteShortcut12", SDLK_EQUALS, strprintf(_("Emote Shortcut %d"), 12)}, + {"keyChat", SDLK_RETURN, _("Toggle Chat")}, + {"keyChatScrollUp", SDLK_PAGEUP, _("Scroll Chat Up")}, + {"keyChatScrollDown", SDLK_PAGEDOWN, _("Scroll Chat Down")}, + {"keyOK", SDLK_SPACE, _("Select OK")}, + {"keyQuit", SDLK_ESCAPE, _("Quit")} }; void KeyboardConfig::init() diff --git a/src/keyboardconfig.h b/src/keyboardconfig.h index 2077126d..ba8039bf 100644 --- a/src/keyboardconfig.h +++ b/src/keyboardconfig.h @@ -164,6 +164,9 @@ class KeyboardConfig KEY_PICKUP, KEY_HIDE_WINDOWS, KEY_SIT, + KEY_SCREENSHOT, + KEY_TRADE, + KEY_PATHFIND, KEY_SHORTCUT_1, KEY_SHORTCUT_2, KEY_SHORTCUT_3, @@ -176,6 +179,7 @@ class KeyboardConfig KEY_SHORTCUT_10, KEY_SHORTCUT_11, KEY_SHORTCUT_12, + KEY_WINDOW_HELP, KEY_WINDOW_STATUS, KEY_WINDOW_INVENTORY, KEY_WINDOW_EQUIPMENT, @@ -199,6 +203,11 @@ class KeyboardConfig KEY_EMOTE_10, KEY_EMOTE_11, KEY_EMOTE_12, + KEY_TOGGLE_CHAT, + KEY_SCROLL_CHAT_UP, + KEY_SCROLL_CHAT_DOWN, + KEY_OK, + KEY_QUIT, KEY_TOTAL }; -- cgit v1.2.3-60-g2f50 From 620e3d945884f0bfa304092f3924c8b7ea6110d0 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 5 Feb 2009 09:36:32 -0700 Subject: Refreshed translation files to contain the keyboard configuration strings. Signed-off-by: Ira Rice --- po/aethyra.pot | 1841 +++++++++++++++++++++++++++++++++++++++++++++++--------- po/ar.po | 924 +++++++++++++++++----------- po/ca.po | 901 ++++++++++++++++----------- po/cs.po | 917 +++++++++++++++++----------- po/da.po | 938 ++++++++++++++++++----------- po/de.po | 928 +++++++++++++++++----------- po/en_GB.po | 924 +++++++++++++++++----------- po/eo.po | 901 ++++++++++++++++----------- po/es.po | 924 +++++++++++++++++----------- po/fi.po | 924 +++++++++++++++++----------- po/fr.po | 924 +++++++++++++++++----------- po/he.po | 924 +++++++++++++++++----------- po/hr.po | 914 +++++++++++++++++----------- po/id.po | 918 +++++++++++++++++----------- po/it.po | 924 +++++++++++++++++----------- po/ja.po | 911 +++++++++++++++++----------- po/nl.po | 928 +++++++++++++++++----------- po/pl.po | 924 +++++++++++++++++----------- po/pt.po | 928 +++++++++++++++++----------- po/pt_BR.po | 933 +++++++++++++++++----------- po/ru.po | 924 +++++++++++++++++----------- po/sk.po | 905 +++++++++++++++++----------- po/sv.po | 904 +++++++++++++++++----------- po/th.po | 906 +++++++++++++++++----------- po/zh_CN.po | 933 +++++++++++++++++----------- 25 files changed, 15198 insertions(+), 8724 deletions(-) diff --git a/po/aethyra.pot b/po/aethyra.pot index 9e8e8579..46589cc6 100644 --- a/po/aethyra.pot +++ b/po/aethyra.pot @@ -1,5 +1,5 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR The Mana World Development Team +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: themanaworld-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2009-01-08 22:10+0100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,881 +16,2166 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/gui/buy.cpp:43 src/gui/buy.cpp:61 src/gui/buysell.cpp:35 +#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 +#: ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "" -#: src/gui/buy.cpp:58 src/gui/buy.cpp:239 src/gui/sell.cpp:65 -#: src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "" -#: src/gui/buy.cpp:63 src/gui/buy.cpp:206 src/gui/buy.cpp:224 -#: src/gui/inventorywindow.cpp:150 src/gui/inventorywindow.cpp:160 -#: src/gui/sell.cpp:70 src/gui/sell.cpp:230 src/gui/sell.cpp:244 -#: src/gui/trade.cpp:94 src/gui/trade.cpp:266 +#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "" -#: src/gui/buy.cpp:64 src/gui/buy.cpp:208 src/gui/buy.cpp:225 -#: src/gui/inventorywindow.cpp:149 src/gui/inventorywindow.cpp:158 -#: src/gui/sell.cpp:71 src/gui/sell.cpp:232 src/gui/sell.cpp:245 +#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 msgid "Shop" msgstr "" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: src/gui/buysell.cpp:35 src/gui/char_select.cpp:85 -#: src/gui/char_select.cpp:258 src/gui/char_server.cpp:60 -#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:61 src/gui/login.cpp:52 -#: src/gui/npclistdialog.cpp:45 src/gui/register.cpp:76 src/gui/setup.cpp:58 -#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:118 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 +#: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "" -#: src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "" -#: src/gui/char_select.cpp:84 src/gui/item_amount.cpp:60 src/gui/login.cpp:51 -#: src/gui/ok_dialog.cpp:37 src/gui/trade.cpp:62 -msgid "Ok" +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 +#, c-format +msgid "Name: %s" msgstr "" -#: src/gui/char_select.cpp:86 -msgid "New" +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 +#, c-format +msgid "Level: %d" msgstr "" -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 +#, c-format +msgid "Job Level: %d" msgstr "" -#: src/gui/char_select.cpp:88 -msgid "Previous" +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#, c-format +msgid "Money: %d" msgstr "" -#: src/gui/char_select.cpp:89 -msgid "Next" +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 +msgid "New" msgstr "" -#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:171 -#: src/gui/char_select.cpp:183 src/gui/inventorywindow.cpp:148 -#: src/gui/inventorywindow.cpp:156 src/gui/trade.cpp:92 src/gui/trade.cpp:264 -#, c-format -msgid "Name: %s" +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +msgid "Delete" msgstr "" -#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:172 -#: src/gui/char_select.cpp:184 src/gui/status.cpp:51 src/gui/status.cpp:232 -#, c-format -msgid "Level: %d" +#: ../src/gui/char_select.cpp:99 +msgid "Previous" msgstr "" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 -#, c-format -msgid "Job Level: %d" +#: ../src/gui/char_select.cpp:100 +msgid "Next" msgstr "" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 -#, c-format -msgid "Money: %d" +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +msgid "Ok" msgstr "" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:49 msgid "Select Server" msgstr "" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +msgid "Chat" +msgstr "" + +#: ../src/gui/chat.cpp:148 +msgid "Global announcement: " msgstr "" -#: src/gui/chat.cpp:125 +#: ../src/gui/chat.cpp:153 #, c-format -msgid "Global announcement from %s:" +msgid "Global announcement from %s: " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "" -#: src/gui/chat.cpp:146 +#: ../src/gui/chat.cpp:329 #, c-format -msgid "%s whispers:" +msgid "Whispering to %s: %s" msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:353 +msgid "Trying to send a blank party message." +msgstr "" + +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:483 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:493 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:501 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:506 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:513 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:557 +msgid "No such spell!" msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:593 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:766 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:771 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:777 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:782 +msgid "Changing prefix to " +msgstr "" + +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:799 +msgid "/msg : Alternate form for /whisper" +msgstr "" + +#: ../src/gui/chat.cpp:800 +msgid "/present: Get list of players present" msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 +msgid "/toggle: Determine whether toggles the chat log." +msgstr "" + +#: ../src/gui/chat.cpp:805 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:807 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:839 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:840 +msgid "" +"This command gets a list of players within hearing and sends it to either " +"the record log if recording, or the chat log otherwise." +msgstr "" + +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:855 +msgid "" +"This command sets whether the return key should toggle thechat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:858 +msgid "" +" can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" +"\", \"no\", \"false\" to turn the toggle off." +msgstr "" + +#: ../src/gui/chat.cpp:861 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:862 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:872 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:32 +msgid "GM" +msgstr "" + +#: ../src/gui/colour.cpp:33 +msgid "Highlight" +msgstr "" + +#: ../src/gui/colour.cpp:34 +msgid "Player" +msgstr "" + +#: ../src/gui/colour.cpp:35 +msgid "Whisper" +msgstr "" + +#: ../src/gui/colour.cpp:36 +msgid "Is" +msgstr "" + +#: ../src/gui/colour.cpp:37 +msgid "Party" +msgstr "" + +#: ../src/gui/colour.cpp:38 +msgid "Server" +msgstr "" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "" -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:60 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 +msgid "Use" +msgstr "" + +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: src/gui/help.cpp:33 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +msgid "Unequip" +msgstr "" + +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 +msgid "Equip" msgstr "" -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" -msgstr "" - -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" -msgstr "" - -#: src/gui/inventorywindow.cpp:225 -msgid "Unequip" +#: ../src/gui/inventorywindow.cpp:84 +msgid "Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:228 -msgid "Equip" +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +msgid "Weight: " msgstr "" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "" -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "" -#: src/gui/login.cpp:42 +#: ../src/gui/itempopup.cpp:112 +msgid " grams" +msgstr "" + +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +msgid "Port:" +msgstr "" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" +msgstr "" + +#: ../src/gui/login.cpp:78 +msgid "Keep" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npcintegerdialog.cpp:33 +msgid "NPC Number Request" +msgstr "" + +#: ../src/gui/npcintegerdialog.cpp:41 +msgid "Reset" +msgstr "" + +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/npcstringdialog.cpp:33 +msgid "NPC Text Request" msgstr "" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:78 +msgid "@@trade|Trade With " +msgstr "" + +#: ../src/gui/popupmenu.cpp:79 +msgid "@@attack|Attack " +msgstr "" + +#: ../src/gui/popupmenu.cpp:85 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:88 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:89 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:94 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:106 +msgid "@@party-invite|Invite " msgstr "" -#: src/gui/popupmenu.cpp:114 +#. NPCs can be talked to (single option, candidate for removal +#. unless more options would be added) +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:288 msgid "@@use|Unequip@@" msgstr "" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "" -#: src/gui/popupmenu.cpp:291 -msgid "@@description|Description@@" +#: ../src/gui/popupmenu.cpp:296 +msgid "@@chat|Add to Chat@@" +msgstr "" + +#: ../src/gui/recorder.cpp:37 +msgid "Recorder" +msgstr "" + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +msgid "Already recording." +msgstr "" + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 +msgid "Recording..." +msgstr "" + +#: ../src/gui/recorder.h:40 +msgid "Stop recording" msgstr "" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:155 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:184 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: src/gui/register.cpp:192 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:200 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "" -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:94 +msgid "Colors" +msgstr "" + +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:52 +msgid "Red: " +msgstr "" + +#: ../src/gui/setup_colours.cpp:66 +msgid "Green: " +msgstr "" + +#: ../src/gui/setup_colours.cpp:80 +msgid "Blue: " +msgstr "" + +#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "" -#: src/gui/setup_keyboard.cpp:88 +#: ../src/gui/setup_keyboard.cpp:87 msgid "Assign" msgstr "" -#: src/gui/setup_keyboard.cpp:94 +#: ../src/gui/setup_keyboard.cpp:91 msgid "Default" msgstr "" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:121 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:56 msgid "Name" msgstr "" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:92 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:94 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:120 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:121 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:149 +msgid "Particle Detail" +msgstr "" + +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "" -#: src/gui/setup_video.cpp:218 src/gui/setup_video.cpp:234 -#: src/gui/setup_video.cpp:415 src/gui/setup_video.cpp:429 +#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "" -#: src/gui/setup_video.cpp:221 src/gui/setup_video.cpp:240 -#: src/gui/setup_video.cpp:418 src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: src/gui/setup_video.cpp:227 -msgid "Particle Detail" -msgstr "" - -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:303 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:304 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:304 +msgid "fullscreen" +msgstr "" + +#: ../src/gui/setup_video.cpp:305 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "" -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "" -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:398 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:399 +msgid "Restart your client for the change to take effect." +msgstr "" + +#: ../src/gui/setup_video.cpp:417 +msgid "Particle effect settings changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:418 +msgid "Restart your client or change maps for the change to take effect." msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/skill.cpp:41 +msgid "skills.xml" +msgstr "" + +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:143 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:144 +msgid "use" +msgstr "" + +#: ../src/gui/skill.cpp:262 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 +msgid "Speech" +msgstr "" + +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, c-format msgid "Job: %d" msgstr "" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, c-format msgid "Money: %d GP" msgstr "" -#: src/gui/status.cpp:127 +#: ../src/gui/status.cpp:54 +msgid "HP:" +msgstr "" + +#: ../src/gui/status.cpp:57 +msgid "Exp:" +msgstr "" + +#: ../src/gui/status.cpp:60 +msgid "MP:" +msgstr "" + +#: ../src/gui/status.cpp:63 +msgid "Job:" +msgstr "" + +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:71 msgid "Stats" msgstr "" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:76 msgid "Attack:" msgstr "" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:77 msgid "Defense:" msgstr "" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:78 msgid "M.Attack:" msgstr "" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:79 msgid "M.Defense:" msgstr "" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:208 msgid "Strength" msgstr "" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:209 msgid "Agility" msgstr "" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:210 msgid "Vitality" msgstr "" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:211 msgid "Intelligence" msgstr "" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:212 msgid "Dexterity" msgstr "" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 -msgid "Add" +#: ../src/gui/trade.cpp:49 +msgid "Trade: You" msgstr "" -#: src/gui/trade.cpp:64 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: src/gui/trade.cpp:80 src/gui/trade.cpp:156 src/gui/trade.cpp:204 +#: ../src/gui/trade.cpp:61 +msgid "Add" +msgstr "" + +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: src/gui/trade.cpp:81 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: src/gui/trade.cpp:283 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: src/gui/updatewindow.cpp:93 +#: ../src/gui/updatewindow.cpp:78 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 -msgid "Completed" +#: ../src/gui/updatewindow.cpp:196 +msgid "Couldn't load news" msgstr "" -#: src/resources/itemdb.cpp:99 -msgid "Unnamed" +#: ../src/gui/updatewindow.cpp:327 +msgid "curl error " msgstr "" -#: src/main.cpp:769 -msgid "Got disconnected from server!" +#: ../src/gui/updatewindow.cpp:328 +msgid " host: " msgstr "" -#: src/main.cpp:956 -msgid "Connecting to map server..." +#: ../src/gui/updatewindow.cpp:363 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: src/main.cpp:964 -msgid "Connecting to character server..." +#: ../src/gui/updatewindow.cpp:413 +msgid "Unable to create mThread" msgstr "" -#: src/main.cpp:972 +#: ../src/gui/updatewindow.cpp:451 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:452 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:507 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:520 +msgid "Completed" +msgstr "" + +#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/net/playerhandler.cpp:194 +msgid "" +"You are carrying more then half your weight. You are unable to regain health." +msgstr "" + +#: ../src/net/playerhandler.cpp:218 +msgid "You are dead." +msgstr "" + +#: ../src/net/playerhandler.cpp:219 +msgid "We regret to inform you that your character was killed in battle." +msgstr "" + +#: ../src/net/playerhandler.cpp:220 +msgid "You are not that alive anymore." +msgstr "" + +#: ../src/net/playerhandler.cpp:221 +msgid "The cold hands of the grim reaper are grabbing for your soul." +msgstr "" + +#: ../src/net/playerhandler.cpp:222 +msgid "Game Over!" +msgstr "" + +#: ../src/net/playerhandler.cpp:223 +msgid "Insert coin to continue" +msgstr "" + +#: ../src/net/playerhandler.cpp:224 +msgid "" +"No, kids. Your character did not really die. It... err... went to a better " +"place." +msgstr "" + +#: ../src/net/playerhandler.cpp:225 +msgid "" +"Your plan of breaking your enemies weapon by bashing it with your throat " +"failed." +msgstr "" + +#: ../src/net/playerhandler.cpp:226 +msgid "I guess this did not run too well." +msgstr "" + +#: ../src/net/playerhandler.cpp:227 +msgid "Do you want your possessions identified?" +msgstr "" + +#. Nethack reference +#: ../src/net/playerhandler.cpp:228 +msgid "Sadly, no trace of you was ever found..." +msgstr "" + +#. Secret of Mana reference +#: ../src/net/playerhandler.cpp:229 +msgid "Annihilated." +msgstr "" + +#. Final Fantasy VI reference +#: ../src/net/playerhandler.cpp:230 +msgid "Looks like you got your head handed to you." +msgstr "" + +#. Earthbound reference +#: ../src/net/playerhandler.cpp:231 +msgid "" +"You screwed up again, dump your body down the tubes and get you another one." +msgstr "" + +#. Leisure Suit Larry 1 Reference +#: ../src/net/playerhandler.cpp:232 +msgid "You're not dead yet. You're just resting." +msgstr "" + +#. Monty Python reference from a couple of skits +#: ../src/net/playerhandler.cpp:233 +msgid "You are no more." +msgstr "" + +#. Monty Python reference from the dead parrot sketch starting now +#: ../src/net/playerhandler.cpp:234 +msgid "You have ceased to be." +msgstr "" + +#: ../src/net/playerhandler.cpp:235 +msgid "You've expired and gone to meet your maker." +msgstr "" + +#: ../src/net/playerhandler.cpp:236 +msgid "You're a stiff." +msgstr "" + +#: ../src/net/playerhandler.cpp:237 +msgid "Bereft of life, you rest in peace." +msgstr "" + +#: ../src/net/playerhandler.cpp:238 +msgid "If you weren't so animated, you'd be pushing up the daisies." +msgstr "" + +#: ../src/net/playerhandler.cpp:239 +msgid "Your metabolic processes are now history." +msgstr "" + +#: ../src/net/playerhandler.cpp:240 +msgid "You're off the twig." +msgstr "" + +#: ../src/net/playerhandler.cpp:241 +msgid "You've kicked the bucket." +msgstr "" + +#: ../src/net/playerhandler.cpp:242 +msgid "" +"You've shuffled off your mortal coil, run down the curtain and joined the " +"bleedin' choir invisibile." +msgstr "" + +#: ../src/net/playerhandler.cpp:243 +msgid "You are an ex-player." +msgstr "" + +#: ../src/net/playerhandler.cpp:244 +msgid "You're pining for the fjords." +msgstr "" + +#: ../src/net/playerhandler.cpp:267 +msgid "You picked up " +msgstr "" + +#: ../src/net/playerhandler.cpp:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/net/tradehandler.cpp:91 +msgid "Request for trade" +msgstr "" + +#: ../src/net/tradehandler.cpp:93 +msgid " wants to trade with you, do you accept?" +msgstr "" + +#. Too far away +#: ../src/net/tradehandler.cpp:107 +msgid "Trading isn't possible. Trade partner is too far away." +msgstr "" + +#. Character doesn't exist +#: ../src/net/tradehandler.cpp:111 +msgid "Trading isn't possible. Character doesn't exist." +msgstr "" + +#. Invite request check failed... +#: ../src/net/tradehandler.cpp:115 +msgid "Trade cancelled due to an unknown reason." +msgstr "" + +#: ../src/net/tradehandler.cpp:121 +msgid "Trade: You and " +msgstr "" + +#: ../src/net/tradehandler.cpp:127 +msgid "Trade with " +msgstr "" + +#: ../src/net/tradehandler.cpp:128 +msgid " cancelled" +msgstr "" + +#. Shouldn't happen as well, but to be sure +#: ../src/net/tradehandler.cpp:135 +msgid "Unhandled trade cancel packet" +msgstr "" + +#. Add item failed - player overweighted +#: ../src/net/tradehandler.cpp:185 +msgid "Failed adding item. Trade partner is over weighted." +msgstr "" + +#. Add item failed - player has no free slot +#: ../src/net/tradehandler.cpp:190 +msgid "Failed adding item. Trade partner has no free slot." +msgstr "" + +#: ../src/net/tradehandler.cpp:194 +msgid "Failed adding item for unknown reason." +msgstr "" + +#: ../src/net/tradehandler.cpp:207 +msgid "Trade canceled." +msgstr "" + +#: ../src/net/tradehandler.cpp:214 +msgid "Trade completed." +msgstr "" + +#: ../src/resources/colordb.cpp:56 +#, c-format +msgid "Trying TMW's color file, %s." +msgstr "" + +#: ../src/resources/colordb.cpp:66 +msgid "ColorDB: Failed" +msgstr "" + +#: ../src/resources/colordb.cpp:83 +#, c-format +msgid "ColorDB: Redefinition of dye ID %d" +msgstr "" + +#: ../src/resources/colordb.cpp:98 +msgid "Unloading color database..." +msgstr "" + +#: ../src/resources/colordb.cpp:113 +#, c-format +msgid "ColorDB: Error, unknown dye ID# %d" +msgstr "" + +#: ../src/resources/emotedb.cpp:52 +msgid "Initializing emote database..." +msgstr "" + +#: ../src/resources/emotedb.cpp:59 +msgid "Emote Database: Error while loading emotes.xml!" +msgstr "" + +#: ../src/resources/emotedb.cpp:72 +msgid "Emote Database: Emote with missing ID in emotes.xml!" +msgstr "" + +#: ../src/resources/emotedb.cpp:131 +#, c-format +msgid "EmoteDB: Warning, unknown emote ID %d requested" +msgstr "" + +#: ../src/resources/itemdb.cpp:54 +msgid "Initializing item database..." +msgstr "" + +#: ../src/resources/itemdb.cpp:62 +msgid "items.xml" +msgstr "" + +#: ../src/resources/itemdb.cpp:67 +msgid "ItemDB: Error while loading items.xml!" +msgstr "" + +#: ../src/resources/itemdb.cpp:79 +msgid "ItemDB: Invalid or missing item ID in items.xml!" +msgstr "" + +#: ../src/resources/itemdb.cpp:84 +#, c-format +msgid "ItemDB: Redefinition of item ID %d" +msgstr "" + +#: ../src/resources/itemdb.cpp:102 +msgid "Unnamed" +msgstr "" + +#: ../src/resources/itemdb.cpp:140 +#, c-format +msgid "ItemDB: Duplicate name of item found item %d" +msgstr "" + +#: ../src/resources/itemdb.cpp:166 +msgid "Unloading item database..." +msgstr "" + +#: ../src/resources/itemdb.cpp:184 +#, c-format +msgid "ItemDB: Error, unknown item ID# %d" +msgstr "" + +#: ../src/resources/itemdb.cpp:240 +#, c-format +msgid "ItemDB: Ignoring unknown sound event '%s'" +msgstr "" + +#: ../src/resources/monsterdb.cpp:44 +msgid "unnamed" +msgstr "" + +#: ../src/resources/monsterdb.cpp:46 +msgid "Initializing monster database..." +msgstr "" + +#: ../src/resources/monsterdb.cpp:48 +msgid "monsters.xml" +msgstr "" + +#: ../src/resources/monsterdb.cpp:53 +msgid "Monster Database: Error while loading monster.xml!" +msgstr "" + +#: ../src/resources/monsterdb.cpp:84 +#, c-format +msgid "" +"MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" +msgstr "" + +#: ../src/resources/monsterdb.cpp:121 +#, c-format +msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" +msgstr "" + +#: ../src/resources/monsterdb.cpp:159 +#, c-format +msgid "MonsterDB: Warning, unknown monster ID %d requested" +msgstr "" + +#: ../src/resources/npcdb.cpp:48 +msgid "Initializing NPC database..." +msgstr "" + +#: ../src/resources/npcdb.cpp:55 +msgid "NPC Database: Error while loading npcs.xml!" +msgstr "" + +#: ../src/resources/npcdb.cpp:67 +msgid "NPC Database: NPC with missing ID in npcs.xml!" +msgstr "" + +#: ../src/resources/npcdb.cpp:125 +#, c-format +msgid "NPCDB: Warning, unknown NPC ID %d requested" +msgstr "" + +#: ../src/game.cpp:390 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:395 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:396 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:471 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:472 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:591 +msgid "Are you sure you want to quit?" +msgstr "" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:734 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 +msgid "Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" +msgstr "" + +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +msgid "Stop Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +msgid "Hide Windows" +msgstr "" + +#: ../src/keyboardconfig.cpp:55 +msgid "Sit" +msgstr "" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, c-format +msgid "Item Shortcut %d" +msgstr "" + +#: ../src/keyboardconfig.cpp:71 +msgid "Help Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:72 +msgid "Status Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:73 +msgid "Inventory Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:74 +msgid "Equipment WIndow" +msgstr "" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +msgid "Chat Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +msgid "Setup Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:80 +msgid "Debug Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:81 +msgid "Emote Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, c-format +msgid "Emote Shortcut %d" +msgstr "" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +msgid "Select OK" +msgstr "" + +#: ../src/main.cpp:214 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:215 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:221 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:246 +#, c-format +msgid "Error: %s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:248 ../src/main.cpp:254 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:252 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:283 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:292 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:294 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:298 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:300 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:313 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:333 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:343 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:499 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:500 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:501 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:502 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:503 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:504 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:505 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:506 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:507 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:508 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:509 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:510 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:516 ../src/main.cpp:519 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:520 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:616 +msgid "Trying to connect to account server..." +msgstr "" + +#: ../src/main.cpp:617 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:671 +msgid "Trying to connect to char server..." +msgstr "" + +#: ../src/main.cpp:693 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:699 +msgid "Trying to connect to map server..." +msgstr "" + +#: ../src/main.cpp:700 +#, c-format +msgid "Map: %s" +msgstr "" + +#: ../src/main.cpp:830 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:863 +msgid "Got disconnected from server!" +msgstr "" + +#: ../src/main.cpp:1068 +msgid "Connecting to map server..." +msgstr "" + +#: ../src/main.cpp:1076 +msgid "Connecting to character server..." +msgstr "" + +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" + +#: ../src/party.cpp:55 +msgid "Not yet implemented!" +msgstr "" + +#: ../src/party.cpp:64 +msgid "Party command not known." +msgstr "" + +#: ../src/party.cpp:71 +msgid "Party name is missing." +msgstr "" + +#: ../src/party.cpp:84 +msgid "Left party." +msgstr "" + +#: ../src/party.cpp:92 +msgid "Party successfully created." +msgstr "" + +#: ../src/party.cpp:97 +msgid "Could not create party." +msgstr "" + +#: ../src/party.cpp:106 +#, c-format +msgid "%s is already a member of a party." +msgstr "" + +#: ../src/party.cpp:110 +#, c-format +msgid "%s refused your invitation." +msgstr "" + +#: ../src/party.cpp:114 +#, c-format +msgid "%s is now a member of your party." +msgstr "" + +#: ../src/party.cpp:126 +msgid "You can't have a blank party name!" +msgstr "" + +#: ../src/party.cpp:130 +msgid "Invite to party" +msgstr "" + +#: ../src/party.cpp:131 +#, c-format +msgid "%s invites you to join the %s party, do you accept?" +msgstr "" + +#: ../src/party.cpp:149 +#, c-format +msgid "%s has left your party." +msgstr "" + +#: ../src/party.cpp:161 +msgid "Party chat received, but being is not a player" +msgstr "" + +#: ../src/party.cpp:173 +msgid "Command: /party " +msgstr "" + +#: ../src/party.cpp:174 +msgid "where can be one of:" +msgstr "" + +#: ../src/party.cpp:175 +msgid " /new" +msgstr "" + +#: ../src/party.cpp:176 +msgid " /create" +msgstr "" + +#: ../src/party.cpp:177 +msgid " /prefix" +msgstr "" + +#: ../src/party.cpp:178 +msgid " /leave" +msgstr "" + +#: ../src/party.cpp:179 +msgid "This command implements the partying function." +msgstr "" + +#: ../src/party.cpp:181 +msgid "Type /help party for further help." +msgstr "" + +#: ../src/party.cpp:187 +msgid "Command: /party new " +msgstr "" + +#: ../src/party.cpp:188 +msgid "Command: /party create " +msgstr "" + +#: ../src/party.cpp:189 +msgid "These commands create a new party " +msgstr "" + +#: ../src/party.cpp:196 +msgid "This command sets the party prefix character." +msgstr "" + +#: ../src/party.cpp:198 +msgid "" +"Any message preceded by is sent to the party instead of " +"everyone." +msgstr "" + +#: ../src/party.cpp:200 +msgid "Command: /party prefix" +msgstr "" + +#: ../src/party.cpp:201 +msgid "This command reports the current party prefix character." +msgstr "" + +#: ../src/party.cpp:209 +msgid "Command: /party leave" +msgstr "" + +#: ../src/party.cpp:210 +msgid "This command causes the player to leave the party." +msgstr "" + +#: ../src/party.cpp:214 +msgid "Unknown /party command." +msgstr "" + +#: ../src/party.cpp:215 +msgid "Type /help party for a list of options." +msgstr "" diff --git a/po/ar.po b/po/ar.po index bb59b0a8..67994789 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-07-16 18:28+0000\n" "Last-Translator: صقر بن عبدالله \n" "Language-Team: Arabic \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "شراء" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "السعر: %d GP / الإجمالي: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "مغادرة" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "الوصف: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "التأثير: %s" @@ -49,34 +50,34 @@ msgstr "التأثير: %s" msgid "Shop" msgstr "إيقاف" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "بيع" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "إلغاء" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "هل أنت متأكّد من حذف هذه الشخصيّة؟" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "إنتقاء الشخصيّة" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "الاسم: %s" @@ -86,420 +87,449 @@ msgstr "الاسم: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "المستوى: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "المستوى: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "النقود: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "جديد" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "حذف" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "السّابق" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "التّالي" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "موافق" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "إنشاء شخصيّة" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "الاسم:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "لون الشعر:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "قصّة الشعر:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "إنشاء" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "إنتقاء الشخصيّة" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "إنشاء" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "الخادوم:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "تغيير OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "مرتفع" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -530,15 +560,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "نعم" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "لا" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "جارِ الاتّصال..." @@ -546,66 +576,66 @@ msgstr "جارِ الاتّصال..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "استخدام" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "العتاد" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "تجريد من العتاد" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "الجردة" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "استعمال العتاد" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "إسقاط" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "انتقاء كمّيّة من المواد للمتاجرة بها." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "انتقاء كمّيّة من المواد لإسقاطها." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -613,11 +643,11 @@ msgstr "" msgid "Login" msgstr "ولوج" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "كلمة السرّ:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "المنفذ:" @@ -625,22 +655,22 @@ msgstr "المنفذ:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "ترك" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "تسجيل" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "الحالة" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "مهارات" @@ -649,7 +679,7 @@ msgid "Shortcut" msgstr "اختصار" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "تثبيت" @@ -657,146 +687,180 @@ msgstr "تثبيت" msgid "MiniMap" msgstr "خارطة صغيرة" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "تسجيل" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@تجارة|متاجرة مع %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@مهاجمة|هاجم %s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@محادثة|تحدّث مع NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@إلغاء|إلغاء@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@اقتطاف|اقتطاف %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@استخدام|استخدام العتاد@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@استخدام|استخدام العتاد@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@استخدم|استخدم@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@إسقاط|إسقاط@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "جارِ الاتّصال..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "جارِ الاتّصال..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "جارِ الاتّصال..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "تأكيد:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "يجب أن يكون طول اسم المستخدم على الأقل %d محارف." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "يجب أن يكون طول اسم المستخدم أقل من %d محارف." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "يجب أن تكون طول كلمة السرّ على الأقل %d محارف." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "يجب أن يكون طول كلمة السرّ أقل من %d محارف." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "كلمات السرّ غير متطابقة." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "خطأ" @@ -812,47 +876,47 @@ msgstr "حجم صوت المؤثرّات" msgid "Music volume" msgstr "حجم صوت الموسيقا" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "تطبيق" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "تصفير النوافذ" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "مرئية" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "سمعيّ" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "عصا الألعاب" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -893,48 +957,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "الاسم:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -994,25 +1058,25 @@ msgstr "مؤثّرات محيطة" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "واقف" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "منخفض" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "مرتفع" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1050,29 +1114,21 @@ msgstr "تغيير OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "تطبيق التغيير على OpenGL يحتاج لإعادة تشغيل." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "يجب إعادة التشغيل لتفعّل التغييرات." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "يجب إعادة التشغيل لتفعّل التغييرات." @@ -1082,44 +1138,44 @@ msgstr "يجب إعادة التشغيل لتفعّل التغييرات." msgid "skills.xml" msgstr "مهارات" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "استخدام" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "المستوى: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "النقود: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1127,11 +1183,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "المستوى: %d" @@ -1140,110 +1196,110 @@ msgstr "المستوى: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "الحالة" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "مهاجمة %+d" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "دفاع %+d" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "مهاجمة %+d" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "دفاع %+d" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "القوّة:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "خفّة الحركة:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "نشاط:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "ذكاء:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "المهارة:" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "إضافة" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "أنت تحصل على %d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "أنت تقدّم:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1549,50 +1605,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1666,201 +1718,374 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "هل أنت متأكّد من حذف هذه الشخصيّة؟" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "هل أنت متأكّد من حذف هذه الشخصيّة؟" +msgid "Attack" +msgstr "مهاجمة %+d" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "مهاجمة %+d" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "تصفير النوافذ" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "قسم" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "اختصار" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "تصفير النوافذ" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "الحالة" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "الجردة" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "العتاد" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "تصفير النوافذ" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "تصفير النوافذ" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "تصفير النوافذ" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "تصفير النوافذ" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "اختصار" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "إنتقاء الشخصيّة" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "جارِ الاتّصال..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "جارِ الاتّصال..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "جارِ الاتّصال..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "الاسم: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "جارِ الاتّصال..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1926,90 +2151,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "إنشاء" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2038,9 +2259,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "رجاء حذف %d نقطة" -#~ msgid "Split" -#~ msgstr "قسم" - #~ msgid "Select amount of items to split." #~ msgstr "انتقاء كمّيّة من المواد لقسمها." diff --git a/po/ca.po b/po/ca.po index 2819a9a8..15966072 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-07-03 17:21+0000\n" "Last-Translator: Habari \n" "Language-Team: Catalan \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "preu %d GP / total %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "sortir" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "" @@ -48,34 +49,34 @@ msgstr "" msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "" @@ -85,418 +86,446 @@ msgstr "" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "nom" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 msgid "Select Server" msgstr "" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "canvi" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +msgid "Highlight" +msgstr "" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -525,15 +554,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "si" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "no" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "" @@ -541,66 +570,66 @@ msgstr "" msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "" -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "" -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -608,11 +637,11 @@ msgstr "" msgid "Login" msgstr "" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "" @@ -620,22 +649,22 @@ msgstr "" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "" @@ -644,7 +673,7 @@ msgid "Shortcut" msgstr "" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "" @@ -652,141 +681,173 @@ msgstr "" msgid "MiniMap" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 msgid "Reset" msgstr "" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 msgid "@@trade|Trade With " msgstr "" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 msgid "@@attack|Attack " msgstr "" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +msgid "Recorder" +msgstr "" + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +msgid "Already recording." +msgstr "" + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 msgid "Recording..." msgstr "" -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "" -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "" @@ -802,47 +863,47 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -882,48 +943,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "nom" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -983,25 +1044,25 @@ msgstr "" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1038,28 +1099,20 @@ msgstr "" msgid "Applying change to OpenGL requires restart." msgstr "" -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" @@ -1067,43 +1120,43 @@ msgstr "" msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 msgid "use" msgstr "" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, c-format msgid "Job: %d" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, c-format msgid "Money: %d GP" msgstr "" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1111,11 +1164,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 msgid "Job:" msgstr "" @@ -1123,100 +1176,100 @@ msgstr "" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 msgid "Stats" msgstr "" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 msgid "Strength" msgstr "" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 msgid "Agility" msgstr "" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 msgid "Vitality" msgstr "" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 msgid "Intelligence" msgstr "" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 msgid "Dexterity" msgstr "" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1521,50 +1574,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1638,196 +1687,356 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +msgid "Are you sure you want to quit?" +msgstr "" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 -msgid "Are you sure you want to quit?" +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 +msgid "Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" +msgstr "" + +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +msgid "Stop Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +msgid "Hide Windows" +msgstr "" + +#: ../src/keyboardconfig.cpp:55 +msgid "Sit" +msgstr "" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" msgstr "" -#: ../src/game.cpp:784 +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 #, c-format -msgid "Warning: guichan input exception: %s" +msgid "Item Shortcut %d" +msgstr "" + +#: ../src/keyboardconfig.cpp:71 +msgid "Help Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:72 +msgid "Status Window" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:73 +msgid "Inventory Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:74 +msgid "Equipment WIndow" +msgstr "" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +msgid "Chat Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +msgid "Setup Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:80 +msgid "Debug Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:81 +msgid "Emote Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 #, c-format -msgid "Error: Invalid update host: %s" +msgid "Emote Shortcut %d" +msgstr "" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +msgid "Select OK" msgstr "" #: ../src/main.cpp:214 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 msgid "Trying to connect to account server..." msgstr "" -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 msgid "Trying to connect to char server..." msgstr "" -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 msgid "Trying to connect to map server..." msgstr "" -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, c-format msgid "Map: %s" msgstr "" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 msgid "Connecting to map server..." msgstr "" -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1892,88 +2101,84 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 msgid " /create" msgstr "" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/cs.po b/po/cs.po index 65af46ff..590d1f34 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-12-17 16:31+0000\n" "Last-Translator: Lubos \n" "Language-Team: Czech \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Nákup" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Popis: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "" @@ -48,35 +49,35 @@ msgstr "" msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Prodej" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Zrušit" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Potvrďte vymazání postavy" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Jste si jistí, že chcete vymazat tuto postavu?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 #, fuzzy msgid "Select Character" msgstr "Vytvořit postavu" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Jméno: %s" @@ -86,419 +87,447 @@ msgstr "Jméno: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Úroveň: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Úroveň: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Peníze: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Nová" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Odstranit" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Předchozí" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Další" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Vytvořit postavu" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Jméno:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Barva vlasů:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Styl vlasů:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Vytvořit" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Server:" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Vytvořit" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +msgid "Highlight" +msgstr "" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -529,15 +558,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Ano" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Ne" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Připojuji se..." @@ -545,66 +574,66 @@ msgstr "Připojuji se..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Vybavení" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventář" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Vybavit" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Upustit" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Vyberte množství zboží, se kterým budete obchodovat." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Vyberte množství zboží, které chcete upustit." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -612,11 +641,11 @@ msgstr "" msgid "Login" msgstr "" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Heslo:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" @@ -624,22 +653,22 @@ msgstr "Port:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Registrace" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Stav" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Dovednosti" @@ -648,7 +677,7 @@ msgid "Shortcut" msgstr "Zkratka" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Nastavení" @@ -656,143 +685,177 @@ msgstr "Nastavení" msgid "MiniMap" msgstr "MiniMapa" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registrace" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 msgid "@@trade|Trade With " msgstr "" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 msgid "@@attack|Attack " msgstr "" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Připojuji se..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Připojuji se..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Připojuji se..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "Muž" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "Žena" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Uživatelské jméno musí být nejméně %d znaků dlouhé." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Uživatelské jméno musí být kratší než %d znaků." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Heslo musí být kratší než %d znaků." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Hesla se neshodují." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Chyba" @@ -808,47 +871,47 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Klávesnice" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -889,48 +952,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Jméno:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -990,25 +1053,25 @@ msgstr "" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1045,28 +1108,20 @@ msgstr "" msgid "Applying change to OpenGL requires restart." msgstr "" -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" @@ -1075,43 +1130,43 @@ msgstr "" msgid "skills.xml" msgstr "Dovednosti" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 msgid "use" msgstr "" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Úroveň: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Peníze: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1119,11 +1174,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Úroveň: %d" @@ -1132,109 +1187,109 @@ msgstr "Úroveň: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Stav" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "Útok %+d" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "Obrana %+d" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "Útok %+d" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "Obrana %+d" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Síla:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Vitalita:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Vitalita:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Inteligence:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 msgid "Dexterity" msgstr "" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1540,50 +1595,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1657,201 +1708,368 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Jste si jistí, že chcete vymazat tuto postavu?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Jste si jistí, že chcete vymazat tuto postavu?" +msgid "Attack" +msgstr "Útok %+d" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Útok %+d" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +msgid "Hide Windows" +msgstr "" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Rozdělit" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Zkratka" + +#: ../src/keyboardconfig.cpp:71 +msgid "Help Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Stav" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inventář" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Vybavení" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +msgid "Chat Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +msgid "Setup Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:80 +msgid "Debug Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:81 +msgid "Emote Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Zkratka" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Server:" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Připojuji se..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Připojuji se..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Připojuji se..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Jméno: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Připojuji se..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1917,90 +2135,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Vytvořit" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2032,9 +2246,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "Odstraňte prosím %d bodů." -#~ msgid "Split" -#~ msgstr "Rozdělit" - #~ msgid "Guilds" #~ msgstr "Gildy" diff --git a/po/da.po b/po/da.po index 5e9fd19e..de4e3525 100644 --- a/po/da.po +++ b/po/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-12-28 14:45+0000\n" "Last-Translator: GonzoDark AKA IchigoBlack \n" "Language-Team: Danish \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Køb" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Pris: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Afslut" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Beskrivelse: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effekt: %s" @@ -49,34 +50,34 @@ msgstr "Effekt: %s" msgid "Shop" msgstr "Butik" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Sælg" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Fortryd" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Bekræft sletning af karakter" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Er du sikker på at du vil slette denne karakter?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Vælg Karakter" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Navn: %s" @@ -86,348 +87,356 @@ msgstr "Navn: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Niveau: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Niveau: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Penge: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Opret" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Slet" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Forrige" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Næste" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "Guld: %d" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Lav Bruger" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Navn:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Hårfarve:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Frisure:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Opret" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Vælg Server" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "OK" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Chat" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 #, fuzzy msgid "Global announcement: " msgstr "Global meddelelse: " -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, fuzzy, c-format msgid "Global announcement from %s: " msgstr "Global meddelelse fra %s: " -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "Hvisker til %s: %s" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "Prøver at sende en blank gruppe besked." -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "Ukendt genstand" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "Retur bringer focus på chatten." -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "Besked lukker chat." -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "Enter bringer nu focus på chatten." -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "Besked lukker nu chat." -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" "Mulighederne til /toggle er \"yes\", \"no\", \"true\", \"false\", \"1\", \"0" "\"." -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 #, fuzzy msgid "Unknown party command... Type \"/help\" party for more information." msgstr "Ukendt gruppe kommando... Skriv \"/help party\" for mere information." -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "Trylleformularen findes ikke!" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "Den nuværende server understøtter ikke trylleformulare" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "Til stede: " -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "Fremmøde skrives til loggen" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "Ukendt kommando" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "Handel fejlede!" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "Emote fejlede!" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "Sæt dig fejlede!" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "Chat skabelsen fejlede!" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "Kunne ikke tilslutte sig gruppen!" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "Kan ikke råbe!" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "Du er ikke nået til det rette Niveau endnu!" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "Utilstrækkelig HP!" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "Utilstrækkelig SP!" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "Du har ingen memorandaer!" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "Det kan du ikke gøre lige nu!" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "Det ser ud til at du har behov for flere Zeny... ;-)" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "Du kan ikke bruge denne færdighed med dette slags våben!" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "Du har behov for en rød krystal mere" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "Du har behov for en blå krystal mere" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "Du har for meget på dig, til at kunne gøre dette" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "Hmm? Hvad er det?" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "Warp mislykkede..." -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "Kunne ikke stjæle noget som helst..." -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "Giften havde ingen effekt..." -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "Det nuværende gruppe præfiks er " -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "Gruppens præfiks skal være et bogstav langt. " -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "Kan ikke bruge '/' som præfikset" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Ændre præfikset til " -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "--Hjælp--" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "/announce: Global meddelelse (Kun for GM)" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "/clear: Rydder dette vindue" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "/help: Viser denne hjælp" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "/msg : Alternativ form for /whisper" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "/present: Får listen af tilstedeværende brugere" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "/toggle: Bestemmer om bringer focus på chat loggen." -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "/where: Viser bane navnet" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "/w : Kort form for /whisper" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" "/whisper : Sender en privat besked til det givne brugernavn" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "/who: Viser antalet af online brugere" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "For at få mere information, skriv /help " -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "Kommando: /announce " -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "*** kun tilgængelig for en GM ***" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "Denne kommando sender beskeden til alle brugere online." -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "Kommando: /clear" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "Denne commando rydder chat loggen" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "Kommando: /help" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "Denne kommando viser en liste over alle tilgængelige kommandoer" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "Kommando: /help " -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "Denne kommando viser hjælp for " -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "Kommando: /present" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." @@ -436,11 +445,31 @@ msgstr "" "lytteradius, og sender listen til enten record loggen, hvis du optager, " "ellers er det chat loggen." -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +#, fuzzy +msgid "Command: /record " +msgstr "Kommando: /clear" + +#: ../src/gui/chat.cpp:847 +#, fuzzy +msgid "This command starts recording the chat log to the file ." +msgstr "Denne commando rydder chat loggen" + +#: ../src/gui/chat.cpp:849 +#, fuzzy +msgid "Command: /record" +msgstr "Kommando: /clear" + +#: ../src/gui/chat.cpp:850 +#, fuzzy +msgid "This command finishes a recording session." +msgstr "Denne kommando viser hjælp for " + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "Kommando /toggle " -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 #, fuzzy msgid "" "This command sets whether the return key should toggle thechat log, or " @@ -449,7 +478,7 @@ msgstr "" "Denne kommando bestemmer om retur, skal bruges til at fokusere på chat " "loggen, ellerom chat om chat loggen, automatisk skal slå fra." -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." @@ -458,63 +487,68 @@ msgstr "" "af chat vindue til, eller \"0\", \"no\", \"false\" for at slå fokusering af " "chat vindue fra." -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "Kommando: /toggle" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "Denne kommando viser fokusering af chat vinduets status." -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "kommando: /where" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "Denne kommando viser det nuværende bane navn." -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "Kommando: /msg " -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "Kommando: /whisper " -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "Kommando: /w " -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "Denne kommando sender beskeden til ." -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "Hvis navnet har mellemrum i det, skal det omringes med følgende (\")." -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "Kommando: /who" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" "Denne kommando viser det antal af online brugere, der nuværende er online." -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "Ukendt kommando" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "Skriv /help for at få en liste med kommandoer" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "GM" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "høj" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "Bruger" @@ -545,15 +579,15 @@ msgstr "Logger" msgid "Hyperlink" msgstr "Hyperlink" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Ja" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Nej" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Opretter forbindelse..." @@ -561,67 +595,67 @@ msgstr "Opretter forbindelse..." msgid "Unable to load selection.png" msgstr "Kan ikke loade valgte-billede.png" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "Emote" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Brug" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Udstyr" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Tag af" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "Hjælp" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "Luk" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventarliste" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Tag på" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Smid" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 #, fuzzy msgid "Slots: " msgstr " g Pladser: " -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Vælg hvor mange genstande du vil bytte." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Vælg hvor mange genstande du vil smide." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -629,11 +663,11 @@ msgstr "" msgid "Login" msgstr "Log Ind" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Adgangskode:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" @@ -641,22 +675,22 @@ msgstr "Port:" msgid "Recent:" msgstr "Nuværende:" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Behold" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Registrer" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Status" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Færdigheder" @@ -665,7 +699,7 @@ msgid "Shortcut" msgstr "Genvej" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Opsætning" @@ -673,146 +707,181 @@ msgstr "Opsætning" msgid "MiniMap" msgstr "MiniKort" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Nuværende:" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Byt Med " -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|Angrib " -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "@@friend|Bliv ven med " -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "@@disregard|Se bort fra " -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "@@ignore|Bloker " -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "@@unignore|Fjern blokering " -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "@@ignore|Bloker fuldstændig " -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "@@party-invite|Inviter " #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Snak Til NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Annuller@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Saml Op %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Tag af@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Tag på@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Brug@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Smid@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Opretter forbindelse..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Opretter forbindelse..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +#, fuzzy +msgid "Failed to start recording." +msgstr "Fejlede i at skifte til " + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Opretter forbindelse..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Bekræft:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "Mand" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "Kvinde" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "RegisterDialog::register Brugernavn er %s" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Brugernavnet skal mindst være %d bogstaver langt." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Brugernavnet skal være mindre end %d bogstaver langt." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Adgangskoden skal mindst være %d bogstaver langt." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Adgangskoden skal være mindre end %d bogstaver langt." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "De indtastede adgangskoder stemmer ikke overens." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Fejl" @@ -828,49 +897,49 @@ msgstr "Lydstyrke på effekter" msgid "Music volume" msgstr "Lydstyrke på musik" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Anvend" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Nulstil Vinduer" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Lyd" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Tastatur" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 #, fuzzy msgid "Colors" msgstr "Farver:" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "Brugere" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 #, fuzzy msgid "Green: " msgstr "Til stede: " -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -911,48 +980,48 @@ msgstr "Tast Konfikt(er) Opdaget." msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "Løs problemet, ellers kan spillet risikere at opfører sig ustabilt." -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Navn:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "Relation" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "Neutral" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "Ven" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "Se bort fra" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "Ignorer" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "???" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "Gem bruger liste" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "Tillad handel" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "Tillad hviskere" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "Når ignorer:" @@ -1012,25 +1081,25 @@ msgstr "Omgivende FX" msgid "Particle Detail" msgstr "Partikel Detalje" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "fra" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "lav" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "høj" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "mellem" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "maks" @@ -1068,29 +1137,21 @@ msgstr "Skrifter til OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "Ændringerne til OpenGL kræver at du genstarter klienten." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "Kunne ikke definere " - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr " skærm opsætning: " - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "Skærm opløsning ændret" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Ændringerne kræver at du genstarter klienten." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "Partikel effekt opsætningen er ændret" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Ændringerne kræver at du genstarter klienten, eller skifter bane." @@ -1099,45 +1160,45 @@ msgstr "Ændringerne kræver at du genstarter klienten, eller skifter bane." msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "Færdigheds points: %d" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "Op" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "inc" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Brug" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "Fejl under loading af færdigheds fil: %s" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 #, fuzzy msgid "Speech" msgstr "Snakke" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Karriere: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Penge: %d GP" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1145,11 +1206,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Karriere: %d" @@ -1158,110 +1219,110 @@ msgstr "Karriere: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Status" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "Total" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "Pris" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "Angrib:" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "Forsvar:" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "M.Angrib:" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "M.Forsvar:" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, fuzzy, c-format msgid "% Accuracy:" msgstr "% Nøjagtighed:" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, fuzzy, c-format msgid "% Evade:" msgstr "% Undvig:" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "% Refleks:" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Styrke" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Adræthed" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Helbred" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Intelligens" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "Behændighed" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "Held" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "Tilgode Status Points: %d" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "Handel: Dig" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "Handel" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Tilføj" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Du får %d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Du giver:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" "Fejlede i at tilføje genstand. Du kan ikke overlappe en slags genstand på " @@ -1577,50 +1638,46 @@ msgstr "Emote Database: Emote med manglende ID i emotes.xml!" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "EmoteDB: Warning, unknown emote ID %d requested" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "Startede genstans database..." -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "Ukendt genstand" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "ItemDB: Fejl under læsningen af items.xml!" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "ItemDB: Ugyldig eller manglende genstand ID i items.xml!" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "ItemDB: Ny definition af genstand ID %d" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "Unavngivet" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "Udlæser genstands databasen..." -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "ItemDB: Fejl, ukendt genstand ID# %d" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "ItemDB: Ignorerer ukendt lyd begivenhed '%s'" @@ -1696,202 +1753,379 @@ msgstr "Netværk Fejl" msgid "The connection to the server was lost, the program will now quit" msgstr "Forbindelsen til serveren er tabt, programmet vil nu lukke" -#: ../src/game.cpp:535 -msgid "Ignoring incoming trade requests" -msgstr "Ignorer indkomne handels anmodninger" - -#: ../src/game.cpp:542 -msgid "Accepting incoming trade requests" -msgstr "Accepter indkomne handels anmodninger" - -#: ../src/game.cpp:637 +#: ../src/game.cpp:591 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Er du sikker på at du gerne vil stoppe?" -#: ../src/game.cpp:644 +#: ../src/game.cpp:598 msgid "no" msgstr "nej" -#: ../src/game.cpp:784 +#: ../src/game.cpp:727 +msgid "Ignoring incoming trade requests" +msgstr "Ignorer indkomne handels anmodninger" + +#: ../src/game.cpp:734 +msgid "Accepting incoming trade requests" +msgstr "Accepter indkomne handels anmodninger" + +#: ../src/game.cpp:770 #, c-format msgid "Warning: guichan input exception: %s" msgstr "Advarsel: guichan indput untagelse: %s" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 +#, fuzzy +msgid "Attack" +msgstr "Angrib:" + +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" +msgstr "" + +#: ../src/keyboardconfig.cpp:48 +#, fuzzy +msgid "Talk" +msgstr "Total" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Angrib:" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +#, fuzzy +msgid "Target Player" +msgstr "Bruger" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Nulstil Vinduer" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Opdel" + +#: ../src/keyboardconfig.cpp:56 +#, fuzzy +msgid "Screenshot" +msgstr "Skærmbillede gemt under ~/" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Genvej" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Nulstil Vinduer" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Status" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inventarliste" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Udstyr" + +#: ../src/keyboardconfig.cpp:75 +#, fuzzy +msgid "Skill Window" +msgstr "Færdigheds points: %d" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Nulstil Vinduer" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Nulstil Vinduer" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Nulstil Vinduer" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Emote fejlede!" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Genvej" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Vælg Server" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "Fejl: Ugyldigt opdaterings host: %s" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "Ugyldigt opdaterings host: " -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "Advarsel: ingen protocol var aktiv som opdate host" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "Fejl: %s kan ikke laves, men findes ikke!" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "Fejl under oprettelsen af opdateringen mappen!" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "Fejl: %s/%s kan ikke laves, men findes ikke!" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr " kan ikke laves, men det findes ikke! Lukker." -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "Starter Aethyra Version %s" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "Starter Aethyra - Version er ikke defineret" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "Starter SDL..." -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "Kunne ikke starte SDL: " -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr " kunne ikke blive sat til hjemmemappen! Lukker." -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "Kan ikke finde ressourcernes mappe\n" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "Starter configurationen..." -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "Kunne ikke definere " + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr " skærm opsætning: " + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "Advarsel: %s" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "aethyra" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "Opsætning: " -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr " -C --configfile : Configurations fil til brug" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr " -d --data : Mappen at indlæse spillets data fra" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" " -D --default : Overskriv login processen med normale indstillinger" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr " -h --help : Viser denne hjælp" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr " -H --updatehost : Brug denne opdaterings host" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr " -p --playername : Logind med denne bruger" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr " -P --password : Logind med denne adgangskode" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr " -u --skipupdate : Spring opdateringerne over" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr " -U --username : Logind med dette brugernavn" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr " -v --version : Viser den nuværende version" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "Aethyra version " -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "(lokalt build?, PACKAGE_VERSION er ikke defineret)" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Prøver at opretter forbindelse til bruger serveren..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "Brugernavn er %s" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Prøver at oprette forbindelse til karakter serveren..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "Husk den valgte karakter %s" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Prøver at oprette forbindelse til bane serveren..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Bane; %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "Kunne ikke indlæse %s som background" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "Blev smidt af serveren!" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Opretter forbindelse til bane serveren..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "Opretter forbindelse til karakter serveren..." -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "Opretter forbindelse til bruger serveren..." @@ -1958,104 +2192,103 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 #, fuzzy msgid "Command: /party " msgstr "Kommando: /help " -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Opret" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 #, fuzzy msgid "This command implements the partying function." msgstr "Denne kommando viser hjælp for " -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 #, fuzzy msgid "Command: /party new " msgstr "Kommando /toggle " -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 #, fuzzy msgid "Command: /party create " msgstr "Kommando /toggle " -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 #, fuzzy msgid "This command sets the party prefix character." msgstr "Denne commando rydder chat loggen" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 #, fuzzy msgid "Command: /party prefix" msgstr "Kommando: /present" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 #, fuzzy msgid "This command reports the current party prefix character." msgstr "Denne commando rydder chat loggen" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 #, fuzzy msgid "Command: /party leave" msgstr "Kommando: /present" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 #, fuzzy msgid "This command causes the player to leave the party." msgstr "Denne kommando viser fokusering af chat vinduets status." -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 #, fuzzy msgid "Unknown /party command." msgstr "Ukendt kommando" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 #, fuzzy msgid "Type /help party for a list of options." msgstr "Skriv /help for at få en liste med kommandoer" +#~ msgid "The current server doesn't support spells" +#~ msgstr "Den nuværende server understøtter ikke trylleformulare" + #, fuzzy #~ msgid "Weight: %d g / %d g" #~ msgstr "Vægt: %d g / %d g" @@ -2134,9 +2367,6 @@ msgstr "Skriv /help for at få en liste med kommandoer" #~ msgid "Please remove %d points" #~ msgstr "Du skal fjerne %d points" -#~ msgid "Split" -#~ msgstr "Opdel" - #~ msgid "Select amount of items to split." #~ msgstr "Vælg hvor mange genstande du vil opdele." diff --git a/po/de.po b/po/de.po index 816e209f..e5cf7a96 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2009-01-19 20:15+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: German\n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Kaufen" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Preis: %d GP / Summe: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Beenden" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Beschreibung: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effekt: %s" @@ -48,34 +49,34 @@ msgstr "Effekt: %s" msgid "Shop" msgstr "Geschäft" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Verkaufen" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Abbrechen" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Bestätige Charakter-Löschung" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Bist du sicher, dass du diesen Charakter löschen möchtest?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Spielfigur auswählen" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Name : %s" @@ -85,419 +86,449 @@ msgstr "Name : %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Stufe: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Geld: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Neu" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Löschen" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Zurück" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Weiter" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "Gold: %d" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Charakter erstellen" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Name :" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Haarfarbe" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Frisur" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Erstellen" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 msgid "Select Server" msgstr "Server auswählen" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "Ok" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Erstellen" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "Flüsternd zu %s: %s" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#, fuzzy +msgid "Unknown item" +msgstr "Unbekannter Befehl" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "Unbekannter Befehl" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "Handel fehlgeschlagen!" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "Emote fehlgeschlagen!" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "Sitzen fehlgeschlagen!" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "Chat-Erstellung fehlgeschlagen!" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "Du kannst dies momentan nicht tun!" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "Schmalhans ist dein Küchenmeister... ;-)" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "Du kannst diese Fähigkeit nicht mit dieser Waffenart benutzen!" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "Du brauchst noch einen roten Edelstein!" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "Du brauchst noch einen blauen Edelstein!" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "Du schleppst zuviel herum um das zu machen!" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "Eha? Was ist das?" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "Warp fehlgeschlagen..." -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "Konnte nichts stehlen..." -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "Das Gift hatte keine Wirkung..." -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Ändere OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "Unbekannter Befehl." -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "Hoch" + #: ../src/gui/colour.cpp:34 #, fuzzy msgid "Player" @@ -530,15 +561,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Ja" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Nein" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Verbinde..." @@ -546,66 +577,66 @@ msgstr "Verbinde..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Benutzen" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Ausrüstung" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Ablegen" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "Hilfe" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "Schließen" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventar" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Ausrüsten" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Wegwerfen" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Wähle aus, wieviele Gegenstände Du tauschen möchtest." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Wähle aus, wieviele Gegenstände Du wegwerfen möchtest." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -613,11 +644,11 @@ msgstr "" msgid "Login" msgstr "Anmelden" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Passwort:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" @@ -625,22 +656,22 @@ msgstr "Port:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Erinnern" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Registrieren" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Status" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Fertigkeiten" @@ -649,7 +680,7 @@ msgid "Shortcut" msgstr "Tastenkürzel" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Einstellungen" @@ -657,145 +688,179 @@ msgstr "Einstellungen" msgid "MiniMap" msgstr "Übersichtskarte" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registrieren" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Mit %s handeln@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|%s angreifen@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Mit NSC reden@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Abbrechen@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|%s aufheben@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Ausrüsten@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Nutzen@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Fallen lassen@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Verbinde..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Verbinde..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Verbinde..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Bestätigen:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "Männlich" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "Weiblich" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Der Nutzername muss aus mindestens %d Zeichen bestehen." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Der Nutzername muss kürzer als %d Zeichen sein." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Das Passwort muss aus mindestens %d bestehen." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Das Passwort muss kürzer als %d Zeichen sein." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Passwörter stimmen nicht überein." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Fehler" @@ -811,48 +876,48 @@ msgstr "Lautstärke der Klangeffekte" msgid "Music volume" msgstr "Latustärke der Musik" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Anwenden" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Fenster zurücksetzen" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Tastatur" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 #, fuzzy msgid "Colors" msgstr "Schließen" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "Spieler" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -892,47 +957,47 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 msgid "Name" msgstr "Name" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "Beziehung" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "Neutral" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "Freund" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "Ignoriert" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "Spielerliste sichern" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "Handeln erlauben" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "Flüstern erlauben" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -992,25 +1057,25 @@ msgstr "Hintergrundeffekte" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "Aus" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "Niedrig" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "Hoch" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "Mittel" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "max" @@ -1050,29 +1115,21 @@ msgstr "" "Änderungen an OpenGL werden erst nach einem Neustart der Anwendung " "übernommen." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Änderungen treten erst nach einem Neustart des Programmes in Kraft." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Änderungen treten erst nach einem Neustart des Programmes in Kraft." @@ -1082,44 +1139,44 @@ msgstr "Änderungen treten erst nach einem Neustart des Programmes in Kraft." msgid "skills.xml" msgstr "Fertigkeiten" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "Erhöhen" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Benutzen" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, c-format msgid "Job: %d" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, c-format msgid "Money: %d GP" msgstr "Geld: %d GP" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1127,11 +1184,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 msgid "Job:" msgstr "" @@ -1139,101 +1196,101 @@ msgstr "" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 msgid "Stats" msgstr "Statistiken" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "Gesamt" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "Preis" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 msgid "Attack:" msgstr "Angriff:" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 msgid "Defense:" msgstr "Verteidigung:" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 msgid "M.Attack:" msgstr "M.Angriff:" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 msgid "M.Defense:" msgstr "M.Verteidigung:" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "% Genauigkeit" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "% Ausweichen:" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "% Reaktion:" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 msgid "Strength" msgstr "Stärke" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 msgid "Agility" msgstr "Beweglichkeit" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 msgid "Vitality" msgstr "Gesundheit" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 msgid "Intelligence" msgstr "Intelligenz" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 msgid "Dexterity" msgstr "Ausdauer" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "Glück" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 #, fuzzy msgid "Trade: You" msgstr "Handeln" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "Handeln" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Hinzufügen" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Du erhälst %d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Du gibst:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1543,51 +1600,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -#, fuzzy -msgid "Unknown item" -msgstr "Unbekannter Befehl" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "Unbenannt" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1663,200 +1715,375 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Bist du sicher, dass du diesen Charakter löschen möchtest?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Bist du sicher, dass du diesen Charakter löschen möchtest?" +msgid "Attack" +msgstr "Angriff:" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +#, fuzzy +msgid "Talk" +msgstr "Gesamt" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Angriff:" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +#, fuzzy +msgid "Target Player" +msgstr "Spieler" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Fenster zurücksetzen" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Aufteilen" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Tastenkürzel" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Fenster zurücksetzen" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Status" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inventar" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Ausrüstung" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Fenster zurücksetzen" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Fenster zurücksetzen" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Fenster zurücksetzen" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Emote fehlgeschlagen!" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Tastenkürzel" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Server auswählen" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Verbinde zu [account server]..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Verbinde zu [character server]..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Verbinde zu [map server]..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Name : %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 msgid "Connecting to map server..." msgstr "Verbinde zu [map server]..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "Verbinde zu [character server]..." -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "Verbinde zu [account server]..." @@ -1923,91 +2150,87 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Erstellen" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 #, fuzzy msgid "Unknown /party command." msgstr "Unbekannter Befehl." -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2049,9 +2272,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "Bitte entferne %d Punkte" -#~ msgid "Split" -#~ msgstr "Aufteilen" - #~ msgid "Select amount of items to split." #~ msgstr "Wähle aus, wieviel Gegenstände Du aufteilen möchtest." diff --git a/po/en_GB.po b/po/en_GB.po index 5127321c..b728f113 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-05-10 16:51+0000\n" "Last-Translator: Me \n" "Language-Team: English (United Kingdom) \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Buy" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Price: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Exit" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Description: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effect: %s" @@ -49,34 +50,34 @@ msgstr "Effect: %s" msgid "Shop" msgstr "Stop" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Sell" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancel" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Are you sure you want to delete this character?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Select Character" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Name: %s" @@ -86,420 +87,449 @@ msgstr "Name: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Money: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "New" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Delete" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Previous" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Next" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Create Character" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Name:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Hair Colour:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Hair Style:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Create" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Select Character" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Create" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Changing OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "high" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -530,15 +560,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Yes" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "No" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Connecting..." @@ -546,66 +576,66 @@ msgstr "Connecting..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Use" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipment" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Unequip" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventory" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Equip" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Drop" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Select amount of items to trade." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Select amount of items to drop." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -613,11 +643,11 @@ msgstr "" msgid "Login" msgstr "Login" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Password:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" @@ -625,22 +655,22 @@ msgstr "Port:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Keep" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Register" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Status" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Skills" @@ -649,7 +679,7 @@ msgid "Shortcut" msgstr "Shortcut" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Setup" @@ -657,146 +687,180 @@ msgstr "Setup" msgid "MiniMap" msgstr "MiniMap" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Register" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Trade With %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|Attack %s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Talk To NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancel@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Pick Up %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equip@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Equip@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Use@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Drop@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Connecting..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Connecting..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Connecting..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Confirm:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "The username needs to be at least %d characters long." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "The username needs to be less than %d characters long." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "The password needs to be at least %d characters long." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "The password needs to be less than %d characters long." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Passwords do not match." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Error" @@ -812,47 +876,47 @@ msgstr "Sfx volume" msgid "Music volume" msgstr "Music volume" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Apply" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Reset Windows" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "Colours" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -893,48 +957,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Name:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -994,25 +1058,25 @@ msgstr "Ambient FX" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "off" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "low" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "high" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1050,29 +1114,21 @@ msgstr "Changing OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "Applying change to OpenGL requires restart." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Restart needed for changes to take effect." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Restart needed for changes to take effect." @@ -1082,44 +1138,44 @@ msgstr "Restart needed for changes to take effect." msgid "skills.xml" msgstr "Skills" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Use" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Level: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Money: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1127,11 +1183,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Level: %d" @@ -1140,110 +1196,110 @@ msgstr "Level: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Status" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "Attack %+d" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "Defense %+d" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "Attack %+d" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "Defense %+d" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Strength:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Agility:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Vitality:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Intelligence:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "Dexterity:" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Add" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "You get %d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "You give:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1549,50 +1605,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1666,201 +1718,374 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Are you sure you want to delete this character?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Are you sure you want to delete this character?" +msgid "Attack" +msgstr "Attack %+d" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Attack %+d" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Reset Windows" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Split" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Shortcut" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Reset Windows" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Status" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inventory" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Equipment" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Reset Windows" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Reset Windows" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Reset Windows" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Reset Windows" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Shortcut" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Select Character" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Connecting..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Connecting..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Connecting..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Name: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Connecting..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1926,90 +2151,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Create" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2038,9 +2259,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "Please remove %d points" -#~ msgid "Split" -#~ msgstr "Split" - #~ msgid "Select amount of items to split." #~ msgstr "Select amount of items to split." diff --git a/po/eo.po b/po/eo.po index 227d9ada..c8047348 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-11-10 22:03+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Esperanto \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "" @@ -48,34 +49,34 @@ msgstr "" msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "" @@ -85,417 +86,445 @@ msgstr "" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 msgid "Select Server" msgstr "" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 msgid "Chat" msgstr "" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +msgid "Highlight" +msgstr "" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -524,15 +553,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "" @@ -540,66 +569,66 @@ msgstr "" msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "" -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "" -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -607,11 +636,11 @@ msgstr "" msgid "Login" msgstr "" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "" @@ -619,22 +648,22 @@ msgstr "" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "" @@ -643,7 +672,7 @@ msgid "Shortcut" msgstr "" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "" @@ -651,141 +680,173 @@ msgstr "" msgid "MiniMap" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 msgid "Reset" msgstr "" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 msgid "@@trade|Trade With " msgstr "" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 msgid "@@attack|Attack " msgstr "" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +msgid "Recorder" +msgstr "" + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +msgid "Already recording." +msgstr "" + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 msgid "Recording..." msgstr "" -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "" -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "" @@ -801,47 +862,47 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -881,47 +942,47 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 msgid "Name" msgstr "" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -981,25 +1042,25 @@ msgstr "" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1036,28 +1097,20 @@ msgstr "" msgid "Applying change to OpenGL requires restart." msgstr "" -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" @@ -1065,43 +1118,43 @@ msgstr "" msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 msgid "use" msgstr "" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, c-format msgid "Job: %d" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, c-format msgid "Money: %d GP" msgstr "" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1109,11 +1162,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 msgid "Job:" msgstr "" @@ -1121,100 +1174,100 @@ msgstr "" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 msgid "Stats" msgstr "" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 msgid "Strength" msgstr "" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 msgid "Agility" msgstr "" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 msgid "Vitality" msgstr "" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 msgid "Intelligence" msgstr "" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 msgid "Dexterity" msgstr "" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1519,50 +1572,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1636,196 +1685,356 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +msgid "Are you sure you want to quit?" +msgstr "" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 -msgid "Are you sure you want to quit?" +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 +msgid "Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" +msgstr "" + +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +msgid "Stop Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +msgid "Hide Windows" +msgstr "" + +#: ../src/keyboardconfig.cpp:55 +msgid "Sit" +msgstr "" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" msgstr "" -#: ../src/game.cpp:784 +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 #, c-format -msgid "Warning: guichan input exception: %s" +msgid "Item Shortcut %d" +msgstr "" + +#: ../src/keyboardconfig.cpp:71 +msgid "Help Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:72 +msgid "Status Window" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:73 +msgid "Inventory Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:74 +msgid "Equipment WIndow" +msgstr "" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +msgid "Chat Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +msgid "Setup Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:80 +msgid "Debug Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:81 +msgid "Emote Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 #, c-format -msgid "Error: Invalid update host: %s" +msgid "Emote Shortcut %d" +msgstr "" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +msgid "Select OK" msgstr "" #: ../src/main.cpp:214 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 msgid "Trying to connect to account server..." msgstr "" -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 msgid "Trying to connect to char server..." msgstr "" -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 msgid "Trying to connect to map server..." msgstr "" -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, c-format msgid "Map: %s" msgstr "" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 msgid "Connecting to map server..." msgstr "" -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1890,88 +2099,84 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 msgid " /create" msgstr "" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/es.po b/po/es.po index e9fbddb6..59a7442a 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-10-15 01:37+0000\n" "Last-Translator: catalania \n" "Language-Team: Spanish \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Comprar" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Precio: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Salir" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Descripción: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Efecto: %s" @@ -49,34 +50,34 @@ msgstr "Efecto: %s" msgid "Shop" msgstr "Detener" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Vender" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancelar" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "¿Seguro que quieres borrar este personaje?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Seleccionar personaje" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nombre: %s" @@ -86,420 +87,449 @@ msgstr "Nombre: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Nivel: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nivel: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Dinero: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Nuevo" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Eliminar" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Anterior" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Siguiente" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Aceptar" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Crear Personaje" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Nombre:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Color de pelo:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "corte de pelo" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Crear" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Seleccionar personaje" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Crear" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Servidor:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Cambiar a OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "alto" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -530,15 +560,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Sí" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "No" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Conectando…" @@ -546,66 +576,66 @@ msgstr "Conectando…" msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Usar" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipo" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "quitarselo" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventario" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Equipar" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "tirar" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Seleccione objetos para comerciar." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Seleccione objetos para soltar." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -613,11 +643,11 @@ msgstr "" msgid "Login" msgstr "conectarse" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Contraseña:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Puerto:" @@ -625,22 +655,22 @@ msgstr "Puerto:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Mantener" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Registrar" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Estado" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Habilidades" @@ -649,7 +679,7 @@ msgid "Shortcut" msgstr "Atajos" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Configuración" @@ -657,146 +687,180 @@ msgstr "Configuración" msgid "MiniMap" msgstr "Minimapa" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registrar" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Comerciar con %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|Atacar a %s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Hablar al NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancelar@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Recoger %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equipar@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Equipar@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Usar@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Tirar@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Conectando…" + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Conectando…" + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Conectando…" -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Confirmar:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "El nombre de usuario debe tener al menos %d caracteres." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "El nombre de usuario puede tener como máximo %d caracteres." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "La contraseña debe tener al menos %d caracteres." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "La contraseña puede tener como máximo %d caracteres." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Las contraseñas no coinciden." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Error" @@ -812,47 +876,47 @@ msgstr "Volumen efectos" msgid "Music volume" msgstr "Volumen musica" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Aplicar" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Reiniciar ventanas" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Vídeo" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Teclado" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -893,48 +957,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Nombre:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -994,25 +1058,25 @@ msgstr "Efectos ambientales" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "desactivado" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "bajo" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "alto" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1050,29 +1114,21 @@ msgstr "Cambiar a OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "Se necesita reiniciar para aplicar los cambios hechos a OpenGL." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Se necesita reiniciar para aplicar los cambios." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Se necesita reiniciar para aplicar los cambios." @@ -1082,44 +1138,44 @@ msgstr "Se necesita reiniciar para aplicar los cambios." msgid "skills.xml" msgstr "Habilidades" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Usar" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Nivel: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Dinero: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1127,11 +1183,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Nivel: %d" @@ -1140,110 +1196,110 @@ msgstr "Nivel: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Estado" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "Ataque %+d" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "Defensa %+d" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "Ataque %+d" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "Defensa %+d" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Fuerza:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Agilidad:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Vitalidad:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Inteligencia:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "Destreza:" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Añadir" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Tu consigues %d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Tu das:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1549,50 +1605,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1666,201 +1718,374 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "¿Seguro que quieres borrar este personaje?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "¿Seguro que quieres borrar este personaje?" +msgid "Attack" +msgstr "Ataque %+d" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Ataque %+d" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Reiniciar ventanas" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Dividir" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Atajos" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Reiniciar ventanas" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Estado" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inventario" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Equipo" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Reiniciar ventanas" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Reiniciar ventanas" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Reiniciar ventanas" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Reiniciar ventanas" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Atajos" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Seleccionar personaje" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Conectando…" -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Conectando…" -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Conectando…" -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nombre: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Conectando…" -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1926,90 +2151,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Crear" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2038,9 +2259,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "por favor quita %d puntos" -#~ msgid "Split" -#~ msgstr "Dividir" - #~ msgid "Select amount of items to split." #~ msgstr "Seleccione objetos para dividir." diff --git a/po/fi.po b/po/fi.po index d81eaae8..58fc324d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-12-30 10:23+0000\n" "Last-Translator: ville-v \n" "Language-Team: Finnish \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Osta" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Kappalehinta: %d GP / Yhteensä: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Sulje" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Kuvaus: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Vaikutus: %s" @@ -49,35 +50,35 @@ msgstr "Vaikutus: %s" msgid "Shop" msgstr "Lopeta" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Myy" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Peru" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Vahvista hahmon poistopyyntö" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Oletko varma, että haluat poistaa tämän hahmon?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 #, fuzzy msgid "Select Character" msgstr "Luo hahmo" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nimi: %s" @@ -87,420 +88,449 @@ msgstr "Nimi: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Taso: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Taso: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Rahatilanne: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Uusi" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Poista" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Edellinen" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Seuraava" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Luo hahmo" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Nimi:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Hiusten väri:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Hiustyyli:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Luo" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Vaihda palvelinta" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Luo" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Palvelin:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Vaihdetaan OpenGL -toimintatilaan" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "korkea" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -531,15 +561,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Kyllä" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Ei" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Yhdistetään..." @@ -547,66 +577,66 @@ msgstr "Yhdistetään..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Käytä" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Varusteet" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Poista varuste käytöstä" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Tavaraluettelo" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Ota käyttöön" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Pudota" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Anna vaihdettavien tavaroiden määrä." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Anna pudotettavien tavaroiden määrä." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -614,11 +644,11 @@ msgstr "" msgid "Login" msgstr "Kirjaudu sisään" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Salasana:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Portti:" @@ -626,22 +656,22 @@ msgstr "Portti:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Rekisteröidy" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Hahmon tiedot" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Taidot" @@ -650,7 +680,7 @@ msgid "Shortcut" msgstr "Pikavalinnat" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Asetukset" @@ -658,146 +688,180 @@ msgstr "Asetukset" msgid "MiniMap" msgstr "Apukartta" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Rekisteröidy" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "Epäpelattava hahmo" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Vaihda tavaroita %s kanssa@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|Hyökkää %s kimppuun@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Puhu epäpelattavalle hahmolle@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Peruuta@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Poimi %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Ota varuste käyttöön@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Ota varuste käyttöön@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Käytä@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Pudota maahan@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Yhdistetään..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Yhdistetään..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Yhdistetään..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Vahvista:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "Miespuolinen" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "Naispuolinen" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Käyttäjänimen tulee olla vähintään %d merkkiä pitkä" -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Käyttäjänimen tulee olla alle %d merkkiä pitkä." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Salasanan tulee olla vähintään %d merkkiä pitkä" -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Salasanan tulee olla alle %d merkkiä pitkä." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Salasanat eivät täsmää." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Virhe" @@ -813,47 +877,47 @@ msgstr "Äänitehosteiden voimakkuus" msgid "Music volume" msgstr "Musiikin voimakkuus" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Käytä" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Palauta ikkunoiden oletusasetukset" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Kuva" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Ääni" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Peliohjain" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Näppäimistö" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -894,48 +958,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Nimi:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -995,25 +1059,25 @@ msgstr "Taustaäänet" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "pois päältä" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "matala" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "korkea" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1051,29 +1115,21 @@ msgstr "Vaihdetaan OpenGL -toimintatilaan" msgid "Applying change to OpenGL requires restart." msgstr "OpenGL -asetusten muutokset vaativat ohjelman uudelleenkäynnistyksen" -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Ohjelma pitää käynnistää uudelleen, jotta muutokset astuvat voimaan." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Ohjelma pitää käynnistää uudelleen, jotta muutokset astuvat voimaan." @@ -1083,44 +1139,44 @@ msgstr "Ohjelma pitää käynnistää uudelleen, jotta muutokset astuvat voimaan msgid "skills.xml" msgstr "Taidot" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Käytä" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Taso: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Rahatilanne: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1128,11 +1184,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Taso: %d" @@ -1141,110 +1197,110 @@ msgstr "Taso: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Hahmon tiedot" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "Hyökkäys %+d" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "Puolustus %+d" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "Hyökkäys %+d" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "Puolustus %+d" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Voima:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Ketteryys:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Elinvoima:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Älykkyys:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "Näppäryys:" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Lisää" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Sait %d GP" -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Annat:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1550,50 +1606,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1667,201 +1719,374 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Oletko varma, että haluat poistaa tämän hahmon?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Oletko varma, että haluat poistaa tämän hahmon?" +msgid "Attack" +msgstr "Hyökkäys %+d" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Hyökkäys %+d" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Palauta ikkunoiden oletusasetukset" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Jaa" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Pikavalinnat" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Palauta ikkunoiden oletusasetukset" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Hahmon tiedot" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Tavaraluettelo" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Varusteet" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Palauta ikkunoiden oletusasetukset" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Palauta ikkunoiden oletusasetukset" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Palauta ikkunoiden oletusasetukset" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Palauta ikkunoiden oletusasetukset" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Pikavalinnat" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Vaihda palvelinta" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Yhdistetään..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Yhdistetään..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Yhdistetään..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nimi: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Yhdistetään..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1927,90 +2152,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Luo" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2054,9 +2275,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "%d pistettä liikaa" -#~ msgid "Split" -#~ msgstr "Jaa" - #~ msgid "Select amount of items to split." #~ msgstr "Anna eri pinoon jaettavien tavaroiden määrä." diff --git a/po/fr.po b/po/fr.po index c36464e2..f1c00700 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-12-26 10:43+0000\n" "Last-Translator: Johan Serre \n" "Language-Team: French\n" @@ -23,24 +23,25 @@ msgstr "" msgid "Buy" msgstr "Acheter" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Prix : %d PO / Total : %d PO" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Quitter" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Description : %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effet : %s" @@ -50,34 +51,34 @@ msgstr "Effet : %s" msgid "Shop" msgstr "Stop" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Vendre" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Annuler" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Confirmer la suppression du personnage" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Êtes-vous certain de vouloir supprimer ce personnage ?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Choix du personnage" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nom : %s" @@ -87,420 +88,449 @@ msgstr "Nom : %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Niveau : %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Niveau : %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Argent : %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Nouveau" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Supprimer" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Précédent" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Suivant" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Création du personnage" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Nom :" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Couleur des cheveux" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Coiffure :" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Créer" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Choix du personnage" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Créer" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Serveur :" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Changement OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "complet" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -531,15 +561,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Oui" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Non" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Connexion..." @@ -547,66 +577,66 @@ msgstr "Connexion..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Utiliser" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Équipement" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Retirer" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventaire" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Équiper" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Lâcher" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Choisissez le nombre d'objets à troquer." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Choisissez le nombre d'objets à lâcher." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -614,11 +644,11 @@ msgstr "" msgid "Login" msgstr "Connexion" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Mot de passe :" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Port :" @@ -626,22 +656,22 @@ msgstr "Port :" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Conserver" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "S'inscrire" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Statut" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Compétences" @@ -650,7 +680,7 @@ msgid "Shortcut" msgstr "Raccourci" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Configuration" @@ -658,146 +688,180 @@ msgstr "Configuration" msgid "MiniMap" msgstr "Plan" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "S'inscrire" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "PNJ" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Troquer avec %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|Attaquer %s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Parler au PNJ@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Annuler@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Ramasser %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Équiper@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Équiper@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Utiliser@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Lâcher@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Connexion..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Connexion..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Connexion..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Vérification :" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "Masculin" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "Féminin" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Le nom d'utilisateur doit faire au moins %d caractères." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Le nom d'utilisateur doit faire moins de %d caractères." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Le mot de passe doit faire au moins %d caractères." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Le mot de passe doit faire moins de %d caractères." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Les deux mots de passe ne correspondent pas." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Erreur" @@ -813,47 +877,47 @@ msgstr "Volume des effets sonores" msgid "Music volume" msgstr "Volume de la musique" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Appliquer" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Rétablir les fenêtres" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Vidéo" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Clavier" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -894,48 +958,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Nom :" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -995,25 +1059,25 @@ msgstr "Effets ambiants" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "aucun" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "léger" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "complet" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1053,30 +1117,22 @@ msgid "Applying change to OpenGL requires restart." msgstr "" "Le changement OpenGL ne sera pris en compte qu'au prochain démarrage du jeu." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "" "Les changements ne seront pris en compte qu'au prochain démarrage du jeu." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "" @@ -1087,44 +1143,44 @@ msgstr "" msgid "skills.xml" msgstr "Compétences" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Utiliser" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Niveau : %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Argent : %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1132,11 +1188,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Niveau : %d" @@ -1145,110 +1201,110 @@ msgstr "Niveau : %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Statut" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "Attaque %+d" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "Défense %+d" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "Attaque %+d" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "Défense %+d" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Force :" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Agilité :" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Vitalité :" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Intelligence :" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "Dextérité :" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Ajouter" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Vous obtenez %d PO." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Vous donnez :" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1554,50 +1610,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1671,201 +1723,374 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Êtes-vous certain de vouloir supprimer ce personnage ?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Êtes-vous certain de vouloir supprimer ce personnage ?" +msgid "Attack" +msgstr "Attaque %+d" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Attaque %+d" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Rétablir les fenêtres" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Partager" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Raccourci" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Rétablir les fenêtres" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Statut" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inventaire" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Équipement" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Rétablir les fenêtres" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Rétablir les fenêtres" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Rétablir les fenêtres" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Rétablir les fenêtres" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Raccourci" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Choix du personnage" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Connexion..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Connexion..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Connexion..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nom : %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Connexion..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1931,90 +2156,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Créer" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2058,9 +2279,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "Veuillez retirer %d points" -#~ msgid "Split" -#~ msgstr "Partager" - #~ msgid "Select amount of items to split." #~ msgstr "Choisissez le nombre d'objets à déplacer." diff --git a/po/he.po b/po/he.po index c3334c43..cf9af327 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-10-20 00:23+0000\n" "Last-Translator: Ddorda \n" "Language-Team: Hebrew \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "קנה" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "מחיר: %d זהב / סה\"כ %d זהב" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "יציאה" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "תיאור: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "השפעה: %s" @@ -49,35 +50,35 @@ msgstr "השפעה: %s" msgid "Shop" msgstr "עצור" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "מכר" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "ביטול" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "אשר מחיקת שחקן" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "האם אתה בטוח כי ברצונך למחוק את השחקן?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 #, fuzzy msgid "Select Character" msgstr "צור שחקן" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "שם: %s" @@ -87,420 +88,449 @@ msgstr "שם: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "רמה: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "רמה: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "זהב: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "חדש" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "מחק" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "הקודם" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "הבא" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "אישור" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "צור שחקן" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "שם:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "צבע שיער:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "תיספורת:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "צור" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "החלף שרת" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "צור" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "שרת:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "משנה OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "גבוה" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -531,15 +561,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "כן" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "לא" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "מתחבר..." @@ -547,66 +577,66 @@ msgstr "מתחבר..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "השתמש" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "ציוד" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "הורד" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "ציוד" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "החזק" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "השלך" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "בחר כמות חפצים לסחור." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "בחר כמות חפצים להשליך." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -614,11 +644,11 @@ msgstr "" msgid "Login" msgstr "התחברות" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "סיסמה:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "פורט:" @@ -626,22 +656,22 @@ msgstr "פורט:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "הרשם" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "מצב" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "כישורים" @@ -650,7 +680,7 @@ msgid "Shortcut" msgstr "קיצור-דרך" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "הגדרות" @@ -658,146 +688,180 @@ msgstr "הגדרות" msgid "MiniMap" msgstr "מיני-מפה" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "הרשם" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|סחור עם %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|תקוף את %s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|דבר אל NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|ביטול@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|הרם %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|החזק@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|החזק@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Use@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|השלך@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "מתחבר..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "מתחבר..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "מתחבר..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "אשר:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "זכר" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "נקבה" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "שם המשתמש חייב להכיל לפחות %d תוים." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "שם המשתמש חייב להכיל פחות מ-%d תוים." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "הסיסמה חייבת להכיל לפחות %d תוים." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "הסיסמה חייבת להכיל פחות מ-%d תוים." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "הסיסמאות אינן תואמות." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "שגיאה" @@ -813,47 +877,47 @@ msgstr "עוצמת SFX" msgid "Music volume" msgstr "עוצמת מוזיקה" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "אשר" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "אתחל חלונות" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "וידאו" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "שמע" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "ג'ויסטיק" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "מקלדת" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -894,48 +958,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "שם:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -995,25 +1059,25 @@ msgstr "אופף FX" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "כבוי" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "נמוך" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "גבוה" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1051,29 +1115,21 @@ msgstr "משנה OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "אישור שינויים עבור OpenGL דורש איתחול." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "נדרש איתחול כדי שהשינויים יהיו ברי-תוקף." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "נדרש איתחול כדי שהשינויים יהיו ברי-תוקף." @@ -1083,44 +1139,44 @@ msgstr "נדרש איתחול כדי שהשינויים יהיו ברי-תוקף msgid "skills.xml" msgstr "כישורים" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "השתמש" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "רמה: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "זהב: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1128,11 +1184,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "רמה: %d" @@ -1141,110 +1197,110 @@ msgstr "רמה: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "מצב" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "התקפה %+d" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "הגנה %+d" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "התקפה %+d" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "הגנה %+d" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "עוצמה:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "זריזות:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "חיוניות:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "תבונה:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "מיומנות:" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "הוסף" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "אתה מקבל %d זהב." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "אתה נותן:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1550,50 +1606,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1667,201 +1719,374 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "האם אתה בטוח כי ברצונך למחוק את השחקן?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "האם אתה בטוח כי ברצונך למחוק את השחקן?" +msgid "Attack" +msgstr "התקפה %+d" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "התקפה %+d" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "אתחל חלונות" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "פצל" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "קיצור-דרך" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "אתחל חלונות" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "מצב" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "ציוד" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "ציוד" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "אתחל חלונות" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "אתחל חלונות" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "אתחל חלונות" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "אתחל חלונות" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "קיצור-דרך" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "החלף שרת" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "מתחבר..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "מתחבר..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "מתחבר..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "שם: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "מתחבר..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1927,90 +2152,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "צור" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2054,9 +2275,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "אנא הסר %d נקודות" -#~ msgid "Split" -#~ msgstr "פצל" - #~ msgid "Select amount of items to split." #~ msgstr "בחר כמות חפצים לפצל." diff --git a/po/hr.po b/po/hr.po index cf2db91b..952492b6 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-12-28 23:36+0000\n" "Last-Translator: Dino Paskvan \n" "Language-Team: Croatian \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Kupi" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Cijena: %d zlatnika / Ukupno: %d zlatnika" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Izlaz" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Opis: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Učinak: %s" @@ -48,35 +49,35 @@ msgstr "Učinak: %s" msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Poništi" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Potvrdi Brisanje Lika" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Da li ste sigurni da želite obrisati ovog lika?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 #, fuzzy msgid "Select Character" msgstr "Stvori Lika" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Ime: %s" @@ -86,418 +87,446 @@ msgstr "Ime: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Nivo: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nivo: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Novac: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Novi" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Obriši" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Prethodni" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Slijedeći" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "U redu" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Stvori Lika" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Ime:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Boja kose:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Frizura:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Stvori" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 msgid "Select Server" msgstr "" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Stvori" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +msgid "Highlight" +msgstr "" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -526,15 +555,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Da" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Ne" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Spajanje..." @@ -542,66 +571,66 @@ msgstr "Spajanje..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Upotrijebi" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Oprema" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Skini opremu" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Zalihe" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Opremi" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Ispusti" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Odaberi količinu predmeta za razmjenu." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Odaberi količinu predmeta za ispuštanje." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -609,11 +638,11 @@ msgstr "" msgid "Login" msgstr "Korisničko ime" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Lozinka" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "" @@ -621,22 +650,22 @@ msgstr "" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Registriraj se" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Stanje" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Vještine" @@ -645,7 +674,7 @@ msgid "Shortcut" msgstr "Kratica" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Podešavanje" @@ -653,144 +682,178 @@ msgstr "Podešavanje" msgid "MiniMap" msgstr "Karta" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registriraj se" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 msgid "@@trade|Trade With " msgstr "" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 msgid "@@attack|Attack " msgstr "" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "Skini opremu" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Spajanje..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Spajanje..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Spajanje..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "Muško" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "Žensko" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "" -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Greška" @@ -806,47 +869,47 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -887,48 +950,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Ime:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -988,25 +1051,25 @@ msgstr "" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1043,28 +1106,20 @@ msgstr "" msgid "Applying change to OpenGL requires restart." msgstr "" -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" @@ -1073,44 +1128,44 @@ msgstr "" msgid "skills.xml" msgstr "Vještine" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Upotrijebi" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Nivo: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Novac: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1118,11 +1173,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Nivo: %d" @@ -1131,106 +1186,106 @@ msgstr "Nivo: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Stanje" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Snaga:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Okretnost:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Vitalnost:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Inteligencija:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "Spretnost:" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1536,50 +1591,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1653,201 +1704,365 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Da li ste sigurni da želite obrisati ovog lika?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 +msgid "Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" +msgstr "" + +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +msgid "Stop Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +msgid "Hide Windows" +msgstr "" + +#: ../src/keyboardconfig.cpp:55 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Da li ste sigurni da želite obrisati ovog lika?" +msgid "Sit" +msgstr "Razdvoji" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Kratica" + +#: ../src/keyboardconfig.cpp:71 +msgid "Help Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Stanje" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Zalihe" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Oprema" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +msgid "Chat Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:79 +msgid "Setup Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:80 +msgid "Debug Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:81 +msgid "Emote Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Kratica" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +msgid "Select OK" +msgstr "" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Spajanje..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Spajanje..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Spajanje..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Ime: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Spajanje..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1913,90 +2128,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Stvori" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2037,9 +2248,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "Molimo, oduzmi %d bodova" -#~ msgid "Split" -#~ msgstr "Razdvoji" - #~ msgid "Select amount of items to split." #~ msgstr "Odaberi količinu predmeta za razdvajanje." diff --git a/po/id.po b/po/id.po index ab3226c8..b2c90547 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-03-26 09:11+0000\n" "Last-Translator: ActiveFile \n" "Language-Team: Indonesian \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Beli" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Harga: %d GP / Jumlah: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Keluar" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Deskripsi: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Efek: %s" @@ -49,34 +50,34 @@ msgstr "Efek: %s" msgid "Shop" msgstr "Berhenti" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Jual" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Batal" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Apakah anda bersungguh-sungguh ingin menghapus karakter ini?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Pilih Karakter" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nama: %s" @@ -86,420 +87,449 @@ msgstr "Nama: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Tingkatan: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Tingkatan: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Uang: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Buat baru" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Hapus" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Sebelumnya" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Berikutnya" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Buat Karakter" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Nama:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Warna Rambut:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Gaya Rambut:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Buat" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Pilih Karakter" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Buat" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Mengubah OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "tinggi" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -530,15 +560,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Ya" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Tidak" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Menyambung..." @@ -546,66 +576,66 @@ msgstr "Menyambung..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Gunakan" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Perlengkapan" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventaris" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Jatuh" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Pilih jumlah item yang mau di perdagangkan" -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Pilih jumlah item yang mau di buang" -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -613,11 +643,11 @@ msgstr "" msgid "Login" msgstr "Login" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Kata Sandi:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" @@ -625,22 +655,22 @@ msgstr "Port:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Pertahankan" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Mendaftar" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Status" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Keahlian" @@ -649,7 +679,7 @@ msgid "Shortcut" msgstr "Tombol Singkat" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Atur" @@ -657,146 +687,180 @@ msgstr "Atur" msgid "MiniMap" msgstr "MiniMap" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Mendaftar" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Dagang Dengan %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|Serang%s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Bicara dengan NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Batal@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Ambil %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Melengkapi@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Melengkapi@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Gunakan@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Buang@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Menyambung..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Menyambung..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Menyambung..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Konfirmasi:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Panjang username setidak-tidaknya %d karakter" -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Panjang kata-sandi setidak-tidaknya %d karakter" -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Kata sandi tidak sama." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Kesalahan" @@ -812,47 +876,47 @@ msgstr "Volume sfx" msgid "Music volume" msgstr "Volume Musik" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Terapkan" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Suara" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -893,48 +957,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Nama:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -994,25 +1058,25 @@ msgstr "" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "mati" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "rendah" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "tinggi" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1050,29 +1114,21 @@ msgstr "Mengubah OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "Mendaftar perubahan ke OpenGL membutuhkan memulai dari awal" -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Memulai dari awal di butuhkan untuk melihat efek" -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Memulai dari awal di butuhkan untuk melihat efek" @@ -1082,44 +1138,44 @@ msgstr "Memulai dari awal di butuhkan untuk melihat efek" msgid "skills.xml" msgstr "Keahlian" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Gunakan" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Tingkatan: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Uang: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1127,11 +1183,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Tingkatan: %d" @@ -1140,110 +1196,110 @@ msgstr "Tingkatan: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Status" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "Serangan %+d" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "Pertahanan %+d" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "Serangan %+d" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "Pertahanan %+d" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Kekuatan" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Daya/Tenaga Hidup" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Daya/Tenaga Hidup" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Kecerdasan" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "Ketangkasan" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Tambah" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Anda mendapatkan %d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Anda memberikan:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1549,50 +1605,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1666,201 +1718,368 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Apakah anda bersungguh-sungguh ingin menghapus karakter ini?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Apakah anda bersungguh-sungguh ingin menghapus karakter ini?" +msgid "Attack" +msgstr "Serangan %+d" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Serangan %+d" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +msgid "Hide Windows" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Pecah" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Tombol Singkat" + +#: ../src/keyboardconfig.cpp:71 +msgid "Help Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Status" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inventaris" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Perlengkapan" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +msgid "Chat Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +msgid "Setup Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:80 +msgid "Debug Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:81 +msgid "Emote Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Tombol Singkat" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Pilih Karakter" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Menyambung..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Menyambung..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Menyambung..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nama: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Menyambung..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1926,90 +2145,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Buat" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2038,9 +2253,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "Tolong hilangkan %d point" -#~ msgid "Split" -#~ msgstr "Pecah" - #~ msgid "Select amount of items to split." #~ msgstr "Pilih jumlah item yang mau di pisahkan" diff --git a/po/it.po b/po/it.po index 5a3782f1..b64401cb 100644 --- a/po/it.po +++ b/po/it.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2007-12-03 01:45+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: Italian\n" @@ -24,24 +24,25 @@ msgstr "" msgid "Buy" msgstr "Compra" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Prezzo: %d GP / Totale: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Esci" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Descrizione : %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effetto : %s" @@ -51,34 +52,34 @@ msgstr "Effetto : %s" msgid "Shop" msgstr "Ferma" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Vendi" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancella" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Sei sicuro di voler cancellare questo personaggio?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Scelta Personaggio" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nome : %s" @@ -88,420 +89,449 @@ msgstr "Nome : %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Livello: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Livello: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Monete: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Nuovo" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Elimina" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Precedente" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Prossimo" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Crea Personaggio" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Nome :" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Colore Capelli" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Stile Capelli:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Create" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Scelta Personaggio" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Create" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Modifica OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "Alto" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -532,15 +562,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Si" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "No" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Connessione..." @@ -548,66 +578,66 @@ msgstr "Connessione..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Usa" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipaggiamento" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Rimuovi" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventario" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Equipaggia" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Lascia" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Seleziona la quantità di oggetti da scambiare." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Seleziona la quantità di oggetti da lasciare." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -615,11 +645,11 @@ msgstr "" msgid "Login" msgstr "Autenticazione" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Password:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Porta:" @@ -627,22 +657,22 @@ msgstr "Porta:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Mantieni" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Registra" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Stato" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Abilità" @@ -651,7 +681,7 @@ msgid "Shortcut" msgstr "Scorciatoia" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Impostazioni" @@ -659,146 +689,180 @@ msgstr "Impostazioni" msgid "MiniMap" msgstr "Mini mappa" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registra" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Scambia Con %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|Attacca %s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Parla con NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancella@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Raccogli %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equipaggia@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Equipaggia@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@usa|Usa@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Lascia@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Connessione..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Connessione..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Connessione..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Conferma:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Il nome utente deve contenere almeno %d caratteri." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Il nome utente deve avere meno di %d caratteri." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "La password deve essere lunga almeno %d caratteri." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "La password deve contenere meno di %d caratteri." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Le password non corrispondono." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Errore" @@ -814,47 +878,47 @@ msgstr "Volume effetti sonori" msgid "Music volume" msgstr "Volume musica" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Applica" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Resetta finestre" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -895,48 +959,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Nome :" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -996,25 +1060,25 @@ msgstr "Suoni ambientali" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "Spento" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "Basso" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "Alto" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1052,29 +1116,21 @@ msgstr "Modifica OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "Applicare le modifiche ad OpenGL richiede il riavvio." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Riavvio necessario affinchè i cambiamenti abbiano effetto." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Riavvio necessario affinchè i cambiamenti abbiano effetto." @@ -1084,44 +1140,44 @@ msgstr "Riavvio necessario affinchè i cambiamenti abbiano effetto." msgid "skills.xml" msgstr "Abilità" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Usa" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Livello: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Monete: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1129,11 +1185,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Livello: %d" @@ -1142,110 +1198,110 @@ msgstr "Livello: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Stato" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "Attacco %+d" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "Difesa %+d" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "Attacco %+d" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "Difesa %+d" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Forza:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Agilità:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Vitalità:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Intelligenza:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "Destrezza:" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Aggiungi" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Ottieni %d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Dai:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1551,50 +1607,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1668,201 +1720,374 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Sei sicuro di voler cancellare questo personaggio?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Sei sicuro di voler cancellare questo personaggio?" +msgid "Attack" +msgstr "Attacco %+d" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Attacco %+d" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Resetta finestre" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Lascia" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Scorciatoia" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Resetta finestre" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Stato" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inventario" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Equipaggiamento" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Resetta finestre" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Resetta finestre" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Resetta finestre" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Resetta finestre" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Scorciatoia" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Scelta Personaggio" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Connessione..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Connessione..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Connessione..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nome : %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Connessione..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1928,90 +2153,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Create" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2040,9 +2261,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "Prego rimuovi %d punti" -#~ msgid "Split" -#~ msgstr "Lascia" - #~ msgid "Select amount of items to split." #~ msgstr "Seleziona la quantità di oggetti da lasciare." diff --git a/po/ja.po b/po/ja.po index 184cccfa..dfd90392 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-06-28 16:27+0000\n" "Last-Translator: fate \n" "Language-Team: Japanese \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "買う" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "価格: %d GP / 合計: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "終了" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "名状: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "効用: %s" @@ -48,34 +49,34 @@ msgstr "効用: %s" msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "取消" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "このキャラは消してもいいですか?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "キャラを選択" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "名前: %s" @@ -85,419 +86,447 @@ msgstr "名前: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "レベル: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "レベル: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "GP: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "新規" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "削除" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "前へ" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "次へ" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "了解" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "キャラを作成" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "名前:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "髪の色:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "髪型:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "作成" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "キャラを選択" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "作成" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "サーバ:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +msgid "Highlight" +msgstr "" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -528,15 +557,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "はい" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "いいえ" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "接続しています..." @@ -544,66 +573,66 @@ msgstr "接続しています..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "使う" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "" -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "" -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -611,11 +640,11 @@ msgstr "" msgid "Login" msgstr "ログイン" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "パスワード:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "ポート:" @@ -623,22 +652,22 @@ msgstr "ポート:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "状態" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "" @@ -647,7 +676,7 @@ msgid "Shortcut" msgstr "" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "セットアップ" @@ -655,144 +684,178 @@ msgstr "セットアップ" msgid "MiniMap" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 msgid "Reset" msgstr "" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 msgid "@@trade|Trade With " msgstr "" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|%sを攻撃する@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|NPCを喋る@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|使う@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|使う@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "接続しています..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "接続しています..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "接続しています..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "パスワードが一致していません。" -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "エラー" @@ -808,47 +871,47 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "音声" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -889,48 +952,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "名前:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -990,25 +1053,25 @@ msgstr "" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1045,28 +1108,20 @@ msgstr "" msgid "Applying change to OpenGL requires restart." msgstr "" -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" @@ -1074,44 +1129,44 @@ msgstr "" msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "使う" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "レベル: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "GP: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1119,11 +1174,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "レベル: %d" @@ -1132,106 +1187,106 @@ msgstr "レベル: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "状態" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "筋力:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "素早さ:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "体力:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "知性:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "敏捷:" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1537,50 +1592,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1654,201 +1705,364 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "このキャラは消してもいいですか?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 +msgid "Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" +msgstr "" + +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +msgid "Stop Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +msgid "Hide Windows" +msgstr "" + +#: ../src/keyboardconfig.cpp:55 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "このキャラは消してもいいですか?" +msgid "Sit" +msgstr "分割" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" msgstr "" -#: ../src/game.cpp:784 +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 #, c-format -msgid "Warning: guichan input exception: %s" +msgid "Item Shortcut %d" +msgstr "" + +#: ../src/keyboardconfig.cpp:71 +msgid "Help Window" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "状態" + +#: ../src/keyboardconfig.cpp:73 +msgid "Inventory Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:74 +msgid "Equipment WIndow" +msgstr "" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +msgid "Chat Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +msgid "Setup Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:80 +msgid "Debug Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:81 +msgid "Emote Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 #, c-format -msgid "Error: Invalid update host: %s" +msgid "Emote Shortcut %d" msgstr "" +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "キャラを選択" + #: ../src/main.cpp:214 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "接続しています..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "接続しています..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "接続しています..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "名前: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "接続しています..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1913,90 +2127,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "作成" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2009,9 +2219,6 @@ msgstr "" #~ msgid "Please distribute %d points" #~ msgstr "%d ポイントを取り分けください" -#~ msgid "Split" -#~ msgstr "分割" - #~ msgid "Email:" #~ msgstr "Eメール:" diff --git a/po/nl.po b/po/nl.po index 8a15e372..3d52dd57 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2009-01-18 16:53+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: Dutch\n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Kopen" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Afsluiten" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Beschrijving: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effect: %s" @@ -48,34 +49,34 @@ msgstr "Effect: %s" msgid "Shop" msgstr "Winkel" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Verkopen" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Annuleren" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Weet je zeker dat je deze personage wilt verwijderen?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Kies Personage" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Naam: %s" @@ -85,424 +86,456 @@ msgstr "Naam: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Geld: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Nieuw" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Verwijderen" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Vorige" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Volgende" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "OK" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "Goud: %d" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Personage Aanmaken" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Naam:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Haarkleur:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Haarstijl:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Aanmaken" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 msgid "Select Server" msgstr "Server Selecteren" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "OK" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Aanmaken" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 #, fuzzy msgid "Global announcement: " msgstr "/announce: Globale aankondiging (alleen voor GM)" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, fuzzy, c-format msgid "Global announcement from %s: " msgstr "/announce: Globale aankondiging (alleen voor GM)" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#, fuzzy +msgid "Unknown item" +msgstr "Onbekende opdracht" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "Onbekende opdracht" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "Zitten niet mogelijk!" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "Het ziet ernaar uit dat je meer geld nodig hebt... ;-)" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "Je draagt teveel bij je om dit te doen!" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Veranderen van OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "/announce: Globale aankondiging (alleen voor GM)" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "/who: Geef het aantal online gebruikers weer" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "Commando: /announce " -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "Commando: /clear" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "Commando: /help" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "Commando: /help " -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 #, fuzzy msgid "Command: /present" msgstr "Commando: /where" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +#, fuzzy +msgid "Command: /record " +msgstr "Commando: /clear" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +#, fuzzy +msgid "Command: /record" +msgstr "Commando: /clear" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 #, fuzzy msgid "Command: /toggle " msgstr "Commando: /announce " -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 #, fuzzy msgid "Command: /toggle" msgstr "Commando: /clear" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "Commando: /where" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 #, fuzzy msgid "Command: /msg " msgstr "Commando: /announce " -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "Type /help voor een lijst van commando's." -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "hoog" + #: ../src/gui/colour.cpp:34 #, fuzzy msgid "Player" @@ -535,15 +568,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Ja" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Nee" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Verbinden..." @@ -551,66 +584,66 @@ msgstr "Verbinden..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Gebruiken" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Uitrusting" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Afdoen" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "Sluiten" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventaris" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Uitrusten" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Neerleggen" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Selecteer het aantal exemplaren om te verhandelen" -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Selecteer het aantal exemplaren om neer te leggen" -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -618,11 +651,11 @@ msgstr "" msgid "Login" msgstr "Inloggen" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Wachtwoord:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Poort:" @@ -630,22 +663,22 @@ msgstr "Poort:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Behouden" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Aanmelden" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Status" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Vaardigheden" @@ -654,7 +687,7 @@ msgid "Shortcut" msgstr "Sneltoets" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Configureren" @@ -662,145 +695,179 @@ msgstr "Configureren" msgid "MiniMap" msgstr "Kaartje" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Aanmelden" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Handelen met %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|%s aanvallen@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Praat met NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Annuleren@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|%s oppakken@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Uitrusten@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Gebruiken@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Neerleggen@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Verbinden..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Verbinden..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Verbinden..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Bevestigen:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "Mannelijk" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "Vrouwelijk" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "De gebruikersnaam moet uit ten minste %d tekens bestaan." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "De gebruikersnaam moet uit minder dan %d tekens bestaan." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Het wachtwoord moet uit ten minste %d tekens bestaan." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Het wachtwoord moet uit minder dan %d tekens bestaan." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Wachtwoorden komen niet overeen." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Fout" @@ -816,48 +883,48 @@ msgstr "Volume van geluiden" msgid "Music volume" msgstr "Muziek volume" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Toepassen" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Vensters in beginstand" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Toetsenbord" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 #, fuzzy msgid "Colors" msgstr "Sluiten" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "Spelers" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -897,47 +964,47 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 msgid "Name" msgstr "Naam" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "Relatie" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "Neutraal" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "Vriend" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "Genegeerd" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -997,25 +1064,25 @@ msgstr "Omgevingseffecten" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "uit" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "laag" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "hoog" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "gemiddeld" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "max" @@ -1053,29 +1120,21 @@ msgstr "Veranderen van OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "Het wisselen van of naar OpenGL wordt pas actief na opnieuw opstarten" -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "De veranderingen worden pas actief na opnieuw opstarten" -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "De veranderingen worden pas actief na opnieuw opstarten" @@ -1085,44 +1144,44 @@ msgstr "De veranderingen worden pas actief na opnieuw opstarten" msgid "skills.xml" msgstr "Vaardigheden" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Gebruiken" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, c-format msgid "Job: %d" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, c-format msgid "Money: %d GP" msgstr "Geld: %d GP" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1130,11 +1189,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 msgid "Job:" msgstr "" @@ -1142,100 +1201,100 @@ msgstr "" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 msgid "Stats" msgstr "" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "Totaal" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "Kosten" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 msgid "Strength" msgstr "" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 msgid "Agility" msgstr "" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 msgid "Vitality" msgstr "" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 msgid "Intelligence" msgstr "" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 msgid "Dexterity" msgstr "" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Toevoegen" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Jij krijgt %d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Je geeft:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1542,51 +1601,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -#, fuzzy -msgid "Unknown item" -msgstr "Onbekende opdracht" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "Naamloos" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1662,200 +1716,373 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Weet je zeker dat je deze personage wilt verwijderen?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 +msgid "Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" +msgstr "" + +#: ../src/keyboardconfig.cpp:48 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Weet je zeker dat je deze personage wilt verwijderen?" +msgid "Talk" +msgstr "Totaal" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:49 +msgid "Stop Attack" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +#, fuzzy +msgid "Target Player" +msgstr "Spelers" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Vensters in beginstand" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Splitsen" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Sneltoets" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Vensters in beginstand" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Status" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inventaris" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Uitrusting" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Vensters in beginstand" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Vensters in beginstand" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Vensters in beginstand" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Vensters in beginstand" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Sneltoets" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Server Selecteren" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Verbinden met de account server..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Verbinden met de karakter server..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Verbinden met de map server..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Naam: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "De verbinding met de server werd verbroken!" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 msgid "Connecting to map server..." msgstr "Verbinden met de map server..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "Verbinden met de karakter server..." -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "Verbinden met de account server..." @@ -1921,95 +2148,91 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 #, fuzzy msgid "Command: /party " msgstr "Commando: /help " -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Aanmaken" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 #, fuzzy msgid "Command: /party new " msgstr "Commando: /announce " -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 #, fuzzy msgid "Command: /party prefix" msgstr "Commando: /clear" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 #, fuzzy msgid "Command: /party leave" msgstr "Commando: /clear" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 #, fuzzy msgid "Unknown /party command." msgstr "Onbekende opdracht" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 #, fuzzy msgid "Type /help party for a list of options." msgstr "Type /help voor een lijst van commando's." @@ -2046,9 +2269,6 @@ msgstr "Type /help voor een lijst van commando's." #~ msgid "Please remove %d points" #~ msgstr "Verwijder alstublieft %d punten" -#~ msgid "Split" -#~ msgstr "Splitsen" - #~ msgid "Switch server" #~ msgstr "Van server wisselen" diff --git a/po/pl.po b/po/pl.po index 4d1691a4..4c4dba5d 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-10-10 05:26+0000\n" "Last-Translator: Michał Trzebiatowski \n" "Language-Team: \n" @@ -24,24 +24,25 @@ msgstr "" msgid "Buy" msgstr "Kup" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Cena: %d GP / Razem: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Wyjdź" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Opis: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Efekt: %s" @@ -51,34 +52,34 @@ msgstr "Efekt: %s" msgid "Shop" msgstr "Zatrzymaj" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Sprzedaj" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Anuluj" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Czy jesteś pewien, że chcesz usunąć tę postać?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Wybierz postać" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Imię: %s" @@ -88,420 +89,449 @@ msgstr "Imię: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Poziom: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Poziom: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Pieniądze: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Nowa" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Usuń" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Poprzedni" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Następny" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Stwórz postać" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Imię:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Kolor włosów:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Fryzura:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Stwórz" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Wybierz postać" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Stwórz" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Serwer:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Zmień ustawienia OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "wysokie" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -532,15 +562,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Tak" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Nie" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Łączenie..." @@ -548,66 +578,66 @@ msgstr "Łączenie..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Użyj" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Ekwipunek" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Zdejmij" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inwentarz" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Załóż" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Upuść" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Wybierz ilość przedmiotów do wymiany." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Wybierz ilość przedmiotów do upuszczenia." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -615,11 +645,11 @@ msgstr "" msgid "Login" msgstr "Użytkownik" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Hasło:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" @@ -627,22 +657,22 @@ msgstr "Port:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Zachowaj" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Rejestruj" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Stan" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Zdolności" @@ -651,7 +681,7 @@ msgid "Shortcut" msgstr "Skrót" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Konfiguracja" @@ -659,146 +689,180 @@ msgstr "Konfiguracja" msgid "MiniMap" msgstr "MiniMapa" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Rejestruj" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Targ z %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|Atakuj %s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Rozmawiaj z NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Anuluj@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Podnieś %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Załóż@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Załóż@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Użyj@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Upuść@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Łączenie..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Łączenie..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Łączenie..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Potwierdź:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "Mężczyzna" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "Kobieta" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Nazwa użytkownika musi być długa na conajmniej %d znaków." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Nazwa użytkownika musi mieć mniej niż %d znaków." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Hasło musi mieć conajmniej %d znaków." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Hasło nie może mieć więcej jak %d znaków." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Hasła nie zgadzają się." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Błąd" @@ -814,47 +878,47 @@ msgstr "Głośność efektów dźwiękowych" msgid "Music volume" msgstr "Głośność muzyki" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Zastosuj" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Zresetuj okna" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Obraz" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Dźwięk" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -895,48 +959,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Imię:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -996,25 +1060,25 @@ msgstr "Dźwięki otoczenia" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "wyłączone" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "niskie" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "wysokie" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1053,29 +1117,21 @@ msgid "Applying change to OpenGL requires restart." msgstr "" "Zastosowywanie zmian w konfiguracji OpenGL wymaga ponownego uruchomienia." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Wymagane ponowne uruchomienia aby zastosować zmiany." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Wymagane ponowne uruchomienia aby zastosować zmiany." @@ -1085,44 +1141,44 @@ msgstr "Wymagane ponowne uruchomienia aby zastosować zmiany." msgid "skills.xml" msgstr "Zdolności" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Użyj" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Poziom: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Pieniądze: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1130,11 +1186,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Poziom: %d" @@ -1143,110 +1199,110 @@ msgstr "Poziom: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Stan" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "Atak %+d" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "Obrona %+d" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "Atak %+d" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "Obrona %+d" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Siła:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Zwinność:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Witalność:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Inteligencja:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "Zręczność:" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Dodaj" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Otrzymujesz %d GP" -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Dajesz:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1552,50 +1608,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1669,201 +1721,374 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Czy jesteś pewien, że chcesz usunąć tę postać?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Czy jesteś pewien, że chcesz usunąć tę postać?" +msgid "Attack" +msgstr "Atak %+d" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Atak %+d" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Zresetuj okna" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Podziel" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Skrót" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Zresetuj okna" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Stan" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inwentarz" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Ekwipunek" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Zresetuj okna" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Zresetuj okna" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Zresetuj okna" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Zresetuj okna" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Skrót" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Wybierz postać" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Łączenie..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Łączenie..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Łączenie..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Imię: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Łączenie..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1929,90 +2154,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Stwórz" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2044,9 +2265,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "Proszę usunąć %d punktów" -#~ msgid "Split" -#~ msgstr "Podziel" - #~ msgid "Select amount of items to split." #~ msgstr "Wybierz ilość przedmiotów do podziału." diff --git a/po/pt.po b/po/pt.po index 1d449423..db28b364 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-02-03 10:14+0000\n" "Last-Translator: Tiago Silva \n" "Language-Team: Portuguese \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Comprar" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Preço: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Sair" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Descrição: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Efeito: %s" @@ -49,34 +50,34 @@ msgstr "Efeito: %s" msgid "Shop" msgstr "Parar" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Vender" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancelar" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Tem a certeza que quer apagar este personagem" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Seleccione um Personagem" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nome: %s" @@ -86,420 +87,449 @@ msgstr "Nome: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Nível: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nível: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Dinheiro: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Novo" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Eliminar" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Anterior" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Seguinte" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Criar Personagem" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Nome:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Cor de Cabelo:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Estilo do Cabelo:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Criar" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Seleccione um Personagem" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Criar" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Servidor:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Mudando OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "elevado" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -530,15 +560,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Sim" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Não" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Conectando..." @@ -546,66 +576,66 @@ msgstr "Conectando..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Usar" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipamento" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Desequipar" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventário" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Equipar" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Largar" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Seleccionar a quantidade de itens a negociar." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Seleccionar a quantidade de itens a largar." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -613,11 +643,11 @@ msgstr "" msgid "Login" msgstr "Autenticar" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Senha:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Porta:" @@ -625,22 +655,22 @@ msgstr "Porta:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Manter" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Registo" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Estado" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Competências" @@ -649,7 +679,7 @@ msgid "Shortcut" msgstr "Atalho" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Configuração" @@ -657,146 +687,180 @@ msgstr "Configuração" msgid "MiniMap" msgstr "MiniMapa" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registo" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Negociar com %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|Atacar %s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Falar com o NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancelar@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Apanhar %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equipar@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Equipar@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Usar@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Largar@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Conectando..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Conectando..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Conectando..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Confirmar:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "O nome de utilizador necessita de pelo menos %d caracteres." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "O nome de utilizador só pode ter %d caracteres." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "A password necessita de pelo menos %d caracteres." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "A password só pode ter até %d caracteres." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "As senhas não coincidem." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Erro" @@ -812,47 +876,47 @@ msgstr "Volume dos Efeitos" msgid "Music volume" msgstr "Volume da Música" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Aplicar" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Reiniciar Janelas" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Vídeo" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Áudio" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -893,48 +957,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Nome:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -994,25 +1058,25 @@ msgstr "Efeitos Ambientais" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "desligado" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "baixo" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "elevado" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1050,29 +1114,21 @@ msgstr "Mudando OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "É necessário reiniciar para as alterações ao OpenGl terem efeito." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "É necessário reiniciar para as alterações terem efeito." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "É necessário reiniciar para as alterações terem efeito." @@ -1082,44 +1138,44 @@ msgstr "É necessário reiniciar para as alterações terem efeito." msgid "skills.xml" msgstr "Competências" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Usar" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Nível: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Dinheiro: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1127,11 +1183,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Nível: %d" @@ -1140,118 +1196,118 @@ msgstr "Nível: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Estado" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "" "Copy text \t\r\n" "Ataque %+d" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "" "Copy text \t\r\n" "Defesa %+d" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "" "Copy text \t\r\n" "Ataque %+d" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "" "Copy text \t\r\n" "Defesa %+d" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Força:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Agilidade:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Vitalidade:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Inteligência:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "Destreza:" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Adicionar" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Recebe %d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Dá:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1557,50 +1613,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1674,201 +1726,378 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Tem a certeza que quer apagar este personagem" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Tem a certeza que quer apagar este personagem" +msgid "Attack" +msgstr "" +"Copy text \t\r\n" +"Ataque %+d" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "" +"Copy text \t\r\n" +"Ataque %+d" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Reiniciar Janelas" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Dividir" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Atalho" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Reiniciar Janelas" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Estado" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inventário" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Equipamento" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Reiniciar Janelas" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Reiniciar Janelas" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Reiniciar Janelas" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Reiniciar Janelas" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Atalho" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Seleccione um Personagem" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Conectando..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Conectando..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Conectando..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nome: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Conectando..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1934,90 +2163,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Criar" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2046,9 +2271,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "Por favor remova %d pontos" -#~ msgid "Split" -#~ msgstr "Dividir" - #~ msgid "Select amount of items to split." #~ msgstr "Seleccionar a quantidade de itens a dividir." diff --git a/po/pt_BR.po b/po/pt_BR.po index 2320cd1d..9e83d33d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2009-01-21 20:48+0000\n" "Last-Translator: Bruno \n" "Language-Team: Brazilian Portuguese \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Comprar" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Preço: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Sair" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Descrição: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Efeito: %s" @@ -48,34 +49,34 @@ msgstr "Efeito: %s" msgid "Shop" msgstr "Loja" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Vender" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancelar" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Confimar exclusão do personagem" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Tem certeza que deseja excluir este personagem?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Selecionar personagem" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nome: %s" @@ -85,426 +86,460 @@ msgstr "Nome: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Nível: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "Nível de Trabalho: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Dinheiro: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Novo" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Excluir" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Anterior" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Próximo" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "Ouro: %d" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Criar Personagem" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Nome:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Cor do Cabelo:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Estilo do Cabelo:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Criar" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 msgid "Select Server" msgstr "Selecionar Servidor" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "OK" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Criar" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 #, fuzzy msgid "Global announcement: " msgstr "Anúncio geral:" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, fuzzy, c-format msgid "Global announcement from %s: " msgstr "Anúncio geral de %s:" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Servidor:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "Sussurrando para %s: %s" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#, fuzzy +msgid "Unknown item" +msgstr "Comando desconhecido" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "Comando desconhecido" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "Falha na negociação!" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "Falha no Emote!" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "Falha ao sentar!" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "Falha ao criar Chat!" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "Impossivel entrar no grupo!" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "Impossivel gritar!" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "Você ainda não tem nivel necessário!" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "HP insuficiente!" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "SP insuficiente!" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "Você não tem nenhuma nota armazenada" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "Você não pode fazer isso agora!" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "Parece que você precisa de mais Zenyz... ;-)" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "Você não pode usar essa Skill com esse tipo de arma." -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "Você precisa de outra gema vermelha!" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "Você precisa de outra gema azul!" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "Você está com muita carga para fazer isso!" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "Hã? O que é isso?" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "Falha ao transportar..." -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "Não foi possível roubar nada..." -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "Veneno não surtiu efeito..." -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Trocando OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "--Ajuda--" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "/announce: Aviso geral (Apenas GM)" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "/clear: limpa esta janela" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "/help: Mostra esta ajuda" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 #, fuzzy msgid "/msg : Alternate form for /whisper" msgstr "/w : Forma mais curta para /whisper" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "/where: mostra o nome do mapa" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "/w : Forma mais curta para /whisper" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "/whisper : Envia uma mensagem particular" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "/who Mostra os jogadores online" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "Para mais informações, digite /help " -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "Comandos: /announce " -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "*** Disponivel apenas para GM's ***" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "Este comando envia uma mensagem para todos os jogadores online." -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "Comandos: /clear" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "Limpa os logs do chat anterior." -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "Comando: /help" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "Exibe uma lista de todos os comandos disponiveis." -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "Comando: /help " -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "Exibe o conteudo de ajuda de " -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 #, fuzzy msgid "Command: /present" msgstr "Comando: /where" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +#, fuzzy +msgid "Command: /record " +msgstr "Comandos: /clear" + +#: ../src/gui/chat.cpp:847 +#, fuzzy +msgid "This command starts recording the chat log to the file ." +msgstr "Limpa os logs do chat anterior." + +#: ../src/gui/chat.cpp:849 +#, fuzzy +msgid "Command: /record" +msgstr "Comandos: /clear" + +#: ../src/gui/chat.cpp:850 +#, fuzzy +msgid "This command finishes a recording session." +msgstr "Exibe o conteudo de ajuda de " + +#: ../src/gui/chat.cpp:854 #, fuzzy msgid "Command: /toggle " msgstr "Comandos: /announce " -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 #, fuzzy msgid "Command: /toggle" msgstr "Comandos: /clear" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 #, fuzzy msgid "This command displays the return toggle status." msgstr "Mostra o nome do mapa atual." -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "Comando: /where" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "Mostra o nome do mapa atual." -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 #, fuzzy msgid "Command: /msg " msgstr "Comando: /w " -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "Comando: /whisper " -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "Comando: /w " -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "Envia uma mensagem para ." -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "Se possuir espaços, coloque dentro de parenteses (\")." -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "Comando: /who" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "Exibe o total de jogadores online." -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "Comando desconhecido." -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "Digite /help para uma lista de todos os comandos." -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "alto" + #: ../src/gui/colour.cpp:34 #, fuzzy msgid "Player" @@ -537,15 +572,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Sim" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Não" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Conectando..." @@ -553,67 +588,67 @@ msgstr "Conectando..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Usar" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipamento" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Desequipar" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "Ajuda" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "Fechar" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventório" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Equipar" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Descartar" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 #, fuzzy msgid "Slots: " msgstr "Pontos de habilidade: %d" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Selecionar montante de itens para negociar." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Selecionar montante de itens para descartar." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -621,11 +656,11 @@ msgstr "" msgid "Login" msgstr "Login" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Senha:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Porta:" @@ -633,22 +668,22 @@ msgstr "Porta:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Manter" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Registrar" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Status" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Habilidades" @@ -657,7 +692,7 @@ msgid "Shortcut" msgstr "Atalho" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Configurar" @@ -665,146 +700,180 @@ msgstr "Configurar" msgid "MiniMap" msgstr "MiniMapa" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registrar" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@Negociar|Negociar com %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@atacar|Atacar %s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 #, fuzzy msgid "@@disregard|Disregard " msgstr "Desconsiderado" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@falar|Falar com NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancelar|Cancelar@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pegar|Pegar %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 msgid "@@use|Unequip@@" msgstr "@@usar|Desequipar@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@usar|Equipar@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@usar|Usar@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@descartar|Descartar@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Conectando..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Conectando..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Conectando..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Confirmar:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "Homem" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "Mulher" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "O nome do usuário precisa ter pelo menos %d caracteres." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "O nome do usuário tem que ser inferior a %d caracteres." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "A senha deve ter pelo menos %d caracteres." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "A senha deve ser menor que %d caracteres." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Senhas não conferem." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Erro" @@ -820,48 +889,48 @@ msgstr "Volume Sfx" msgid "Music volume" msgstr "Volume da Música" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Aplicar" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Restaurar janelas" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Vídeo" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Áudio" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Teclado" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 #, fuzzy msgid "Colors" msgstr "Fechar" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "Jogadores" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -901,47 +970,47 @@ msgstr "Conflitos nas teclas detectado." msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "Corrija-os, ou o jogo irá se comportar de forma estranha." -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 msgid "Name" msgstr "Nome" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "Relação" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "Neutro" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "Amigo" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "Desconsiderado" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "Ignorado" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "Salvar lista de jogadores" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "Permitir trocas" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "Permitir sussuros" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "Quando ignorado:" @@ -1002,25 +1071,25 @@ msgstr "Ambiente FX" msgid "Particle Detail" msgstr "Detalhe de partículas" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "desligado" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "baixo" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "alto" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "médio" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "máximo" @@ -1058,29 +1127,21 @@ msgstr "Trocando OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "Aplicando mudança a OpenGL requer reiniciar o jogo." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "É preciso reiniciar para as mudanças terem efeito." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "É preciso reiniciar para as mudanças terem efeito." @@ -1090,44 +1151,44 @@ msgstr "É preciso reiniciar para as mudanças terem efeito." msgid "skills.xml" msgstr "Habilidades" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "Pontos de habilidade: %d" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "Acima" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Usar" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, c-format msgid "Job: %d" msgstr "Trabalho: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, c-format msgid "Money: %d GP" msgstr "Dinheiro: %d GP" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1135,11 +1196,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Trabalho: %d" @@ -1148,101 +1209,101 @@ msgstr "Trabalho: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 msgid "Stats" msgstr "Status" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "Total" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "Custo" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 msgid "Attack:" msgstr "Ataque:" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 msgid "Defense:" msgstr "Defesa:" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 msgid "M.Attack:" msgstr "M. Ataque:" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 msgid "M.Defense:" msgstr "M. Defesa:" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "% Acuracidade:" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "% Evasão:" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "% Reflexo:" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 msgid "Strength" msgstr "Força" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 msgid "Agility" msgstr "Agilidade" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 msgid "Vitality" msgstr "Vitalidade" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 msgid "Intelligence" msgstr "Inteligência" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 msgid "Dexterity" msgstr "Destreza" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "Sorte" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "Pontos de Status Restantes: %d" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 #, fuzzy msgid "Trade: You" msgstr "Comércio" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "Comércio" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Adicionar" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Voc pegou %d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Você dá:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" "Falha ao adicionar item. Você não pode duplicar um tipo de item na janela." @@ -1555,51 +1616,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -#, fuzzy -msgid "Unknown item" -msgstr "Comando desconhecido" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "Sem nome" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1675,201 +1731,377 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Tem certeza que deseja excluir este personagem?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Tem certeza que deseja excluir este personagem?" +msgid "Attack" +msgstr "Ataque:" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +#, fuzzy +msgid "Talk" +msgstr "Total" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Ataque:" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +#, fuzzy +msgid "Target Player" +msgstr "Jogadores" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Restaurar janelas" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Dividir" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Atalho" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Restaurar janelas" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Status" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inventório" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Equipamento" + +#: ../src/keyboardconfig.cpp:75 +#, fuzzy +msgid "Skill Window" +msgstr "Pontos de habilidade: %d" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Restaurar janelas" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Restaurar janelas" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Restaurar janelas" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Falha no Emote!" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Atalho" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Selecionar Servidor" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 #, fuzzy msgid " -h --help : Display this help" msgstr "/help: Mostra esta ajuda" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Conectando ao servidor de contas..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Conectando ao servidor de personagens..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Conectando ao servidor de mapas..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nome: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "Você foi desconectado do servidor!" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 msgid "Connecting to map server..." msgstr "Conectando ao servidor de mapas..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "Conectando ao servidor de personagens..." -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "Conectando ao servidor de contas..." @@ -1936,99 +2168,95 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 #, fuzzy msgid "Command: /party " msgstr "Comando: /help " -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Criar" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 #, fuzzy msgid "This command implements the partying function." msgstr "Exibe o conteudo de ajuda de " -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 #, fuzzy msgid "Command: /party new " msgstr "Comandos: /announce " -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 #, fuzzy msgid "This command sets the party prefix character." msgstr "Limpa os logs do chat anterior." -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 #, fuzzy msgid "Command: /party prefix" msgstr "Comandos: /clear" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 #, fuzzy msgid "This command reports the current party prefix character." msgstr "Limpa os logs do chat anterior." -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 #, fuzzy msgid "Command: /party leave" msgstr "Comandos: /clear" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 #, fuzzy msgid "This command causes the player to leave the party." msgstr "Limpa os logs do chat anterior." -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 #, fuzzy msgid "Unknown /party command." msgstr "Comando desconhecido." -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 #, fuzzy msgid "Type /help party for a list of options." msgstr "Digite /help para uma lista de todos os comandos." @@ -2074,9 +2302,6 @@ msgstr "Digite /help para uma lista de todos os comandos." #~ msgid "Please remove %d points" #~ msgstr "Por favor remova %d pontos" -#~ msgid "Split" -#~ msgstr "Dividir" - #~ msgid "Select amount of items to split." #~ msgstr "Selecionar montante de itens para dividir." diff --git a/po/ru.po b/po/ru.po index fc2dbd66..6555f13f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-01-08 11:50+0000\n" "Last-Translator: idle sign \n" "Language-Team: Russian \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Купить" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Стоимость: %d GP / Всегоl: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Выход" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Описание: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Эффект: %s" @@ -49,34 +50,34 @@ msgstr "Эффект: %s" msgid "Shop" msgstr "Стоп" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Продать" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Отмена" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Вы уверены, что хотите удалить этого персонажа?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Выбор персонажа" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Имя: %s" @@ -86,420 +87,449 @@ msgstr "Имя: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Уровень: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Уровень: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Деньги: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Новый" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Удалить" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Предыдущий" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Следующий" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Создать персонажа" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Имя:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Цвет волос:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Стрижка:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Создать" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Выбор персонажа" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Создать" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Сервер:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Переключение на OpenGL" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "выс." + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -530,15 +560,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Да" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Нет" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Соединение..." @@ -546,66 +576,66 @@ msgstr "Соединение..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Использовать" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Снаряжение" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Снять" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Инвентарь" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Надеть" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Сбросить" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Сколько предметов продать." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Сколько предметов сбросить." -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -613,11 +643,11 @@ msgstr "" msgid "Login" msgstr "Вход" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Пароль:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Порт:" @@ -625,22 +655,22 @@ msgstr "Порт:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Оставить" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Зарегистрироваться" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Состояние" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Умения" @@ -649,7 +679,7 @@ msgid "Shortcut" msgstr "Клавиша" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Настройка" @@ -657,146 +687,180 @@ msgstr "Настройка" msgid "MiniMap" msgstr "МиниКарта" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Зарегистрироваться" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Торговать с %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|Атаковать %s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Говорить с NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancelОтмена@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Подобрать %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Надеть@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Надеть@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Использовать@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Сбросить@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Соединение..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Соединение..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Соединение..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Подтвердите:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Имя пользователя должно содержать не менее %d символов." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Имя пользователя не должно содержать более %d символов." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Пароль должен содержать не менее %d символов." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Пароль не должен содержать более %d символов." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Пароли не совпадают." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Ошибка" @@ -812,47 +876,47 @@ msgstr "Громкость эффектов" msgid "Music volume" msgstr "Громкость музыки" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Применить" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Восстановить расположение окон" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Видео" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Аудио" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Джойстик" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -893,48 +957,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Имя:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -994,25 +1058,25 @@ msgstr "Эффекты окружающей среды" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "выкл" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "низ." #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "выс." -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1050,29 +1114,21 @@ msgstr "Переключение на OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "Переход к OpenGL требует перезагрузки игры." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Для вступления в силу выбранных настроек требуется перезагрузка игры." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Для вступления в силу выбранных настроек требуется перезагрузка игры." @@ -1082,44 +1138,44 @@ msgstr "Для вступления в силу выбранных настро msgid "skills.xml" msgstr "Умения" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Использовать" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Уровень: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Деньги: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1127,11 +1183,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Уровень: %d" @@ -1140,110 +1196,110 @@ msgstr "Уровень: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Состояние" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 #, fuzzy msgid "Attack:" msgstr "Атака %+d" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 #, fuzzy msgid "Defense:" msgstr "Защита %+d" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 #, fuzzy msgid "M.Attack:" msgstr "Атака %+d" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 #, fuzzy msgid "M.Defense:" msgstr "Защита %+d" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Сила:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Выносливость:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Живучесть:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Интеллект:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "Ловкость:" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Добавить" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Вы получили %d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Вы отдаете:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1549,50 +1605,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1666,201 +1718,374 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Вы уверены, что хотите удалить этого персонажа?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Вы уверены, что хотите удалить этого персонажа?" +msgid "Attack" +msgstr "Атака %+d" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Атака %+d" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Восстановить расположение окон" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Разделить" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Клавиша" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Восстановить расположение окон" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Состояние" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Инвентарь" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Снаряжение" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Восстановить расположение окон" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Восстановить расположение окон" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Восстановить расположение окон" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Восстановить расположение окон" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Клавиша" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Выбор персонажа" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Соединение..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Соединение..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Соединение..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Имя: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Соединение..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1926,90 +2151,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Создать" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2038,9 +2259,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "Снимите очки (%d)" -#~ msgid "Split" -#~ msgstr "Разделить" - #~ msgid "Select amount of items to split." #~ msgstr "Сколько предметов разделить." diff --git a/po/sk.po b/po/sk.po index 63a4b2aa..09c177ae 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-12-30 14:07+0000\n" "Last-Translator: TomasKovacik \n" "Language-Team: Slovak \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Kúpiť" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Cena: %d GP / Spolu: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Ukončiť" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Popis: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effekt: %s" @@ -48,35 +49,35 @@ msgstr "Effekt: %s" msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Zrušiť" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Potvrdte zmazanie postavy" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Naozaj chcete odstrániť túto postavu?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 #, fuzzy msgid "Select Character" msgstr "Vytvoriť postavu" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "" @@ -86,418 +87,446 @@ msgstr "" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Peniaze: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Nový" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Vymazať" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Predchádzajúci" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Nasledujúci" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ano" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Vytvoriť postavu" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Meno" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Farba vlasov:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Štýl vlasov:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Vytvoriť" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 msgid "Select Server" msgstr "" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Vytvoriť" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +msgid "Highlight" +msgstr "" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -526,15 +555,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "" @@ -542,66 +571,66 @@ msgstr "" msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "" -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "" -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -609,11 +638,11 @@ msgstr "" msgid "Login" msgstr "" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "" @@ -621,22 +650,22 @@ msgstr "" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "" @@ -645,7 +674,7 @@ msgid "Shortcut" msgstr "" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "" @@ -653,141 +682,173 @@ msgstr "" msgid "MiniMap" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 msgid "Reset" msgstr "" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 msgid "@@trade|Trade With " msgstr "" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 msgid "@@attack|Attack " msgstr "" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +msgid "Recorder" +msgstr "" + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +msgid "Already recording." +msgstr "" + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 msgid "Recording..." msgstr "" -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "Muž" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "Žena" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "" -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "" @@ -803,47 +864,47 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -884,48 +945,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Meno" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -985,25 +1046,25 @@ msgstr "" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1040,28 +1101,20 @@ msgstr "" msgid "Applying change to OpenGL requires restart." msgstr "" -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" @@ -1069,43 +1122,43 @@ msgstr "" msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 msgid "use" msgstr "" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, fuzzy, c-format msgid "Job: %d" msgstr "Level: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Peniaze: %d" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1113,11 +1166,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Level: %d" @@ -1126,102 +1179,102 @@ msgstr "Level: %d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 msgid "Stats" msgstr "" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Sila:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 msgid "Agility" msgstr "" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 msgid "Vitality" msgstr "" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Inteligencia:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 msgid "Dexterity" msgstr "" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1527,50 +1580,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1644,197 +1693,357 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Naozaj chcete odstrániť túto postavu?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 -#, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Naozaj chcete odstrániť túto postavu?" +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 +msgid "Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" +msgstr "" + +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +msgid "Stop Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +msgid "Hide Windows" +msgstr "" + +#: ../src/keyboardconfig.cpp:55 +msgid "Sit" +msgstr "" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" msgstr "" -#: ../src/game.cpp:784 +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 #, c-format -msgid "Warning: guichan input exception: %s" +msgid "Item Shortcut %d" +msgstr "" + +#: ../src/keyboardconfig.cpp:71 +msgid "Help Window" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:72 +msgid "Status Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:73 +msgid "Inventory Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:74 +msgid "Equipment WIndow" +msgstr "" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +msgid "Chat Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +msgid "Setup Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:80 +msgid "Debug Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:81 +msgid "Emote Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 #, c-format -msgid "Error: Invalid update host: %s" +msgid "Emote Shortcut %d" +msgstr "" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +msgid "Select OK" msgstr "" #: ../src/main.cpp:214 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 msgid "Trying to connect to account server..." msgstr "" -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 msgid "Trying to connect to char server..." msgstr "" -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 msgid "Trying to connect to map server..." msgstr "" -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, c-format msgid "Map: %s" msgstr "" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 msgid "Connecting to map server..." msgstr "" -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1899,90 +2108,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Vytvoriť" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/sv.po b/po/sv.po index 35c6db70..f364b1ae 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-29 13:19-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2009-01-29 01:20+0100\n" "Last-Translator: Kess Vargavind \n" "Language-Team: Swedish \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "Köp" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Pris: %d GP / Totalt: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Avsluta" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Beskrivning: %s" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effekt: %s" @@ -48,34 +49,34 @@ msgstr "Effekt: %s" msgid "Shop" msgstr "Affär" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "Sälj" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Avbryt" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Bekräfta borttagning av karaktär" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Är du säker på att du vill ta bort den här karaktären?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Välj karaktär" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Namn: %s" @@ -85,425 +86,453 @@ msgstr "Namn: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "Nivå: %d" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "Jobbnivå: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Pengar: %d" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "Ny" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Ta bort" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "Föregående" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "Nästa" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "Guld: %d" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Skapa karaktär" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "Namn:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Hårfärg:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Frisyr:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "Skapa" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 msgid "Select Server" msgstr "Välj server" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:50 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "Ok" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Skapa" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "Globalt meddelande: " -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "Globalt meddelande från %s: " -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "Viskar till %s: %s" -#: ../src/gui/chat.cpp:357 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:392 ../src/resources/itemdb.cpp:57 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:487 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:497 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:510 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:517 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:563 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:566 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:601 ../src/gui/chat.cpp:606 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:602 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:611 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "Okänt kommando" -#: ../src/gui/chat.cpp:623 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "Byteshandel misslyckades!" -#: ../src/gui/chat.cpp:626 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "Kan inte visa smiley!" -#: ../src/gui/chat.cpp:629 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "Kan inte sitta ned!" -#: ../src/gui/chat.cpp:632 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "Kan inte skicka chattmeddelande!" -#: ../src/gui/chat.cpp:635 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "Kan inte ansluta till gruppen!" -#: ../src/gui/chat.cpp:638 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "Kan inte skrika!" -#: ../src/gui/chat.cpp:647 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "Du har inte nått en tillräckligt hög nivå än!" -#: ../src/gui/chat.cpp:650 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "Otillräckligt med HP!" -#: ../src/gui/chat.cpp:653 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "Otillräckligt med SP!" -#: ../src/gui/chat.cpp:656 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "Du har inga anteckningar!" -#: ../src/gui/chat.cpp:659 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "Du kan inte göra det just nu!" -#: ../src/gui/chat.cpp:662 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "Verkar som att du behöver mer zeny... ;-)" -#: ../src/gui/chat.cpp:665 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "Det går inte att använda den här förmågan med det där vapenslaget!" -#: ../src/gui/chat.cpp:668 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "Du behöver en till röd juvel!" -#: ../src/gui/chat.cpp:671 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "Du behöver en till blå juvel!" -#: ../src/gui/chat.cpp:674 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "Du bär på för mycket för att kunna göra det här!" -#: ../src/gui/chat.cpp:677 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "Öh? Vad är det där?" -#: ../src/gui/chat.cpp:686 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "Kartförflyttning misslyckades..." -#: ../src/gui/chat.cpp:689 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "Kunde inte stjäla något..." -#: ../src/gui/chat.cpp:692 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "Giftet tog inte..." -#: ../src/gui/chat.cpp:775 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:780 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:786 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:791 +#: ../src/gui/chat.cpp:782 #, fuzzy msgid "Changing prefix to " msgstr "Ändrar OpenGL" -#: ../src/gui/chat.cpp:801 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "-- Hjälp --" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "/announce: Globalt meddelande (endast GM)" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "/clear: Tömmer det här fönstret på text" -#: ../src/gui/chat.cpp:806 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "/help: Visar den här hjälptexten" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:809 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:811 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "/where: Visar namnet på kartan där du befinner dig" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "/w : Kortare variant av /whisper" -#: ../src/gui/chat.cpp:815 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "/whisper : Skickar ett privat meddelande till en spelare" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "/who: Visar antalet inloggade spelare" -#: ../src/gui/chat.cpp:818 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "För mer information skriv /help " -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "Kommando: /announce " -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "*** endast en GM kan använda det här kommandot ***" -#: ../src/gui/chat.cpp:824 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" "Det här kommandot skickar meddelandet till alla inloggade spelare." -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "Kommando: /clear" -#: ../src/gui/chat.cpp:830 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "Det här kommandot tömmer chattloggen." -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "Kommando: /help" -#: ../src/gui/chat.cpp:836 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "Det här kommandot visar en lista över alla tillgängliga kommandon." -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "Kommando: /help " -#: ../src/gui/chat.cpp:839 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "Det här kommandot ger mer information om ." -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:848 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:846 +#, fuzzy +msgid "Command: /record " +msgstr "Kommando: /clear" + +#: ../src/gui/chat.cpp:847 +#, fuzzy +msgid "This command starts recording the chat log to the file ." +msgstr "Det här kommandot tömmer chattloggen." + +#: ../src/gui/chat.cpp:849 +#, fuzzy +msgid "Command: /record" +msgstr "Kommando: /clear" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:859 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:862 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:866 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "Kommando: /where" -#: ../src/gui/chat.cpp:871 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "Det här kommandot visar namnet på den karta där du befinner dig." -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "Kommando: /whisper " -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "Kommando: /w " -#: ../src/gui/chat.cpp:879 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "Det här kommandot skickar meddelandet till karaktären ." -#: ../src/gui/chat.cpp:881 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" "Om innehåller mellanslag, måste du sätta citattecken (\") runt det." -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "Kommando: /who" -#: ../src/gui/chat.cpp:887 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "Det här kommandot visar antalet spelare som är inloggade just nu." -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "Okänt kommando." -#: ../src/gui/chat.cpp:893 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "Skriv /help för en lista med kommandon." -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "hög" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -534,15 +563,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Ja" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Nej" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Ansluter..." @@ -550,66 +579,66 @@ msgstr "Ansluter..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "Använd" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Utrustning" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Avrusta" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "Hjälp" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "Stäng" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventarium" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Utrusta" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Släpp" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "Utrymme: " -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:104 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "Vikt: " -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Välj antal föremål att handla med." -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Välj antal föremål att släppa." -#: ../src/gui/itempopup.cpp:105 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -617,11 +646,11 @@ msgstr "" msgid "Login" msgstr "Användarnamn" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "Lösenord:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" @@ -629,22 +658,22 @@ msgstr "Port:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "Behåll" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "Registrera" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "Status" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "Färdigheter" @@ -653,7 +682,7 @@ msgid "Shortcut" msgstr "Genvägar" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "Inställningar" @@ -661,145 +690,179 @@ msgstr "Inställningar" msgid "MiniMap" msgstr "Minikarta" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registrera" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@trade|Handla med %s@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@attack|Attackera %s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Prata med NPC@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Avbryt@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Plocka upp %s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 msgid "@@use|Unequip@@" msgstr "@@use|Avrusta@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@use|Utrusta@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@use|Använd@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@drop|Släpp@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "Ansluter..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "Ansluter..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Ansluter..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "Bekräfta:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "Man" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "Kvinna" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Användarnamnet måste vara minst %d tecken långt." -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Användarnamnet måste vara kortare än %d tecken." -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Lösenordet måste vara minst %d tecken långt." -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Lösenordet måste vara kortare än %d tecken." #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Lösenorden stämmer inte överens." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "Fel" @@ -815,47 +878,47 @@ msgstr "Volym för ljudeffekter" msgid "Music volume" msgstr "Musikvolym" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "Verkställ" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Återställ fönster" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "Ljud" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Tangentbord" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "Spelare" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -895,47 +958,47 @@ msgstr "Samma tangent används på flera ställen." msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "Se till att använda olika tangenter, annars kan det bli konstigheter." -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 msgid "Name" msgstr "Namn" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "Relation" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "Neutral" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "Vän" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "Förbisedd" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "Ignorerad" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "Kom ihåg spelarlista" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "Tillåt byteshandel" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "Tillåt viskningar" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "Vid ignorering:" @@ -995,25 +1058,25 @@ msgstr "Omgivande FX" msgid "Particle Detail" msgstr "Partikeldetaljer" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "av" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "låg" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "hög" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "medium" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "maximal" @@ -1051,29 +1114,21 @@ msgstr "Ändrar OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "Ändringar i OpenGL kräver omstart." -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Omstart krävs för att ändringarna ska synas." -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Omstart krävs för att ändringarna ska synas." @@ -1083,44 +1138,44 @@ msgstr "Omstart krävs för att ändringarna ska synas." msgid "skills.xml" msgstr "Färdigheter" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "Färdighetspoäng: %d" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "Upp" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Använd" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, c-format msgid "Job: %d" msgstr "Jobb: %d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, c-format msgid "Money: %d GP" msgstr "Pengar: %d GP" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1128,11 +1183,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 msgid "Job:" msgstr "Jobb:" @@ -1140,100 +1195,100 @@ msgstr "Jobb:" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 msgid "Stats" msgstr "Statistik" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "Totalt" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "Kostnad" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 msgid "Attack:" msgstr "Attack:" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 msgid "Defense:" msgstr "Försvar:" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 msgid "M.Attack:" msgstr "M. attack:" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 msgid "M.Defense:" msgstr "M. försvar:" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, fuzzy, c-format msgid "% Accuracy:" msgstr "% Precision:" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, fuzzy, c-format msgid "% Evade:" msgstr "% Undvikan:" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "% Reflexer:" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 msgid "Strength" msgstr "Styrka" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 msgid "Agility" msgstr "Smidighet" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 msgid "Vitality" msgstr "Hälsa" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 msgid "Intelligence" msgstr "Intelligens" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 msgid "Dexterity" msgstr "Skicklighet" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "Tur" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "Återstående statuspoäng: %d" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "Byteshandla" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Lägg till" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Du får %d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Du ger:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" "Kan inte lägga till vald sak. Det går inte att byteshandla med samma slags " @@ -1654,200 +1709,376 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Är du säker på att du vill ta bort den här karaktären?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "Är du säker på att du vill ta bort den här karaktären?" +msgid "Attack" +msgstr "Attack:" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +#, fuzzy +msgid "Talk" +msgstr "Totalt" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "Attack:" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +#, fuzzy +msgid "Target Player" +msgstr "Spelare" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "Återställ fönster" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "Dela" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "Genvägar" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "Återställ fönster" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "Status" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "Inventarium" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "Utrustning" + +#: ../src/keyboardconfig.cpp:75 +#, fuzzy +msgid "Skill Window" +msgstr "Färdighetspoäng: %d" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "Återställ fönster" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "Återställ fönster" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "Återställ fönster" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "Kan inte visa smiley!" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "Genvägar" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "Välj server" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Ansluter..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Ansluter..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Ansluter..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Namn: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "Kopplades från servern!" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 msgid "Connecting to map server..." msgstr "Ansluter till kartservern..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "Ansluter till karaktärsservern..." -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "Ansluter till kontoservern..." @@ -1913,90 +2144,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Skapa" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2025,9 +2252,6 @@ msgstr "" #~ msgid "Please remove %d points" #~ msgstr "Var vänlig ta bort %d poäng" -#~ msgid "Split" -#~ msgstr "Dela" - #~ msgid "Select amount of items to split." #~ msgstr "Välj antal föremål att dela." diff --git a/po/th.po b/po/th.po index ac0ee488..3781df0f 100644 --- a/po/th.po +++ b/po/th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2008-11-25 06:16+0000\n" "Last-Translator: Tharawut Paripaiboon \n" "Language-Team: Thai \n" @@ -22,24 +22,25 @@ msgstr "" msgid "Buy" msgstr "ซื้อ" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:65 -#: ../src/gui/sell.cpp:259 +#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 +#: ../src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "ราคา: %d GP / ทั้งหมด: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:636 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "ออก" #: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "" #: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 +#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "" @@ -48,35 +49,35 @@ msgstr "" msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:102 -#: ../src/gui/char_select.cpp:266 ../src/gui/char_server.cpp:59 -#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:79 ../src/gui/npcintegerdialog.cpp:44 -#: ../src/gui/npclistdialog.cpp:46 ../src/gui/npcstringdialog.cpp:42 -#: ../src/gui/register.cpp:93 ../src/gui/setup.cpp:60 ../src/gui/trade.cpp:65 +#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 +#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 +#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 +#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 #: ../src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "ยกเลิก" -#: ../src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "ยืนยันการลบตัวละคร" -#: ../src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "คุณแน่ใจแล้วหรือที่จะลบตัวละครนี้?" -#: ../src/gui/char_select.cpp:82 +#: ../src/gui/char_select.cpp:83 #, fuzzy msgid "Select Character" msgstr "สร้างตัวละคร" -#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:176 -#: ../src/gui/char_select.cpp:188 +#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 +#: ../src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "ชื่อ: %s" @@ -86,418 +87,446 @@ msgstr "ชื่อ: %s" #. ---------------------- #. Status Part #. ----------- -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 ../src/gui/status.cpp:49 -#: ../src/gui/status.cpp:230 +#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 +#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 +#: ../src/gui/status.cpp:162 #, c-format msgid "Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 +#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:191 +#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "" -#: ../src/gui/char_select.cpp:94 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:192 +#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:193 msgid "New" msgstr "สร้างใหม่" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:96 -#: ../src/gui/char_select.cpp:182 ../src/gui/setup_players.cpp:222 +#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 +#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 msgid "Delete" msgstr "ลบทิ้ง" -#: ../src/gui/char_select.cpp:98 +#: ../src/gui/char_select.cpp:99 msgid "Previous" msgstr "ก่อนหน้า" -#: ../src/gui/char_select.cpp:99 +#: ../src/gui/char_select.cpp:100 msgid "Next" msgstr "ถัดไป" -#: ../src/gui/char_select.cpp:101 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:64 +#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 msgid "Ok" msgstr "ตกลง" -#: ../src/gui/char_select.cpp:179 +#: ../src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:248 +#: ../src/gui/char_select.cpp:249 msgid "Create Character" msgstr "สร้างตัวละคร" -#: ../src/gui/char_select.cpp:258 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:80 +#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:76 msgid "Name:" msgstr "ชื่อ:" -#: ../src/gui/char_select.cpp:261 +#: ../src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "สีผม:" -#: ../src/gui/char_select.cpp:264 +#: ../src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "ทรงผม:" -#: ../src/gui/char_select.cpp:265 +#: ../src/gui/char_select.cpp:266 msgid "Create" msgstr "สร้าง" -#: ../src/gui/char_server.cpp:51 +#: ../src/gui/char_server.cpp:49 msgid "Select Server" msgstr "" -#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:78 -#: ../src/gui/npcintegerdialog.cpp:43 ../src/gui/npclistdialog.cpp:45 -#: ../src/gui/npcstringdialog.cpp:41 ../src/gui/npc_text.cpp:49 +#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 +#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 +#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:59 ../src/gui/colour.cpp:32 +#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 #: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "สร้าง" -#: ../src/gui/chat.cpp:152 +#: ../src/gui/chat.cpp:148 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:157 +#: ../src/gui/chat.cpp:153 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:171 ../src/gui/login.cpp:53 ../src/gui/register.cpp:83 +#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:333 +#: ../src/gui/chat.cpp:329 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:352 +#: ../src/gui/chat.cpp:353 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:485 +#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +msgid "Unknown item" +msgstr "" + +#: ../src/gui/chat.cpp:482 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:486 +#: ../src/gui/chat.cpp:483 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:493 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:504 +#: ../src/gui/chat.cpp:501 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:509 +#: ../src/gui/chat.cpp:506 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:516 +#: ../src/gui/chat.cpp:513 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:562 +#: ../src/gui/chat.cpp:557 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:565 -msgid "The current server doesn't support spells" -msgstr "" - -#: ../src/gui/chat.cpp:600 ../src/gui/chat.cpp:605 +#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:601 +#: ../src/gui/chat.cpp:593 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:610 +#: ../src/gui/chat.cpp:602 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:622 +#: ../src/gui/chat.cpp:614 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:625 +#: ../src/gui/chat.cpp:617 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:628 +#: ../src/gui/chat.cpp:620 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:631 +#: ../src/gui/chat.cpp:623 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:634 +#: ../src/gui/chat.cpp:626 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:637 +#: ../src/gui/chat.cpp:629 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:646 +#: ../src/gui/chat.cpp:638 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:649 +#: ../src/gui/chat.cpp:641 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:652 +#: ../src/gui/chat.cpp:644 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:655 +#: ../src/gui/chat.cpp:647 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:658 +#: ../src/gui/chat.cpp:650 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:661 +#: ../src/gui/chat.cpp:653 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:664 +#: ../src/gui/chat.cpp:656 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:667 +#: ../src/gui/chat.cpp:659 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:670 +#: ../src/gui/chat.cpp:662 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:673 +#: ../src/gui/chat.cpp:665 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:676 +#: ../src/gui/chat.cpp:668 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:685 +#: ../src/gui/chat.cpp:677 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:688 +#: ../src/gui/chat.cpp:680 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:691 +#: ../src/gui/chat.cpp:683 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:774 +#: ../src/gui/chat.cpp:766 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:779 +#: ../src/gui/chat.cpp:771 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:785 +#: ../src/gui/chat.cpp:777 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:790 +#: ../src/gui/chat.cpp:782 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:800 +#: ../src/gui/chat.cpp:792 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:803 +#: ../src/gui/chat.cpp:795 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:804 +#: ../src/gui/chat.cpp:796 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:805 +#: ../src/gui/chat.cpp:797 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:807 +#: ../src/gui/chat.cpp:798 +msgid "/party : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +msgid "Command: /record " +msgstr "" + +#: ../src/gui/chat.cpp:847 +msgid "This command starts recording the chat log to the file ." +msgstr "" + +#: ../src/gui/chat.cpp:849 +msgid "Command: /record" +msgstr "" + +#: ../src/gui/chat.cpp:850 +msgid "This command finishes a recording session." +msgstr "" + +#: ../src/gui/chat.cpp:854 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +msgid "Highlight" +msgstr "" + #: ../src/gui/colour.cpp:34 msgid "Player" msgstr "" @@ -526,15 +555,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "ใช่" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "ไม่" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "กำลังเชื่อมต่อ..." @@ -542,66 +571,66 @@ msgstr "กำลังเชื่อมต่อ..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "ใช้" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "ทิ้ง" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "" -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "" -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -609,11 +638,11 @@ msgstr "" msgid "Login" msgstr "เข้าระบบ" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "รหัสผ่าน:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "" @@ -621,22 +650,22 @@ msgstr "" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "สมัครสมาชิก" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "สถานะ" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "" @@ -645,7 +674,7 @@ msgid "Shortcut" msgstr "" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "ตั้งค่า" @@ -653,143 +682,177 @@ msgstr "ตั้งค่า" msgid "MiniMap" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "สมัครสมาชิก" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 msgid "@@trade|Trade With " msgstr "" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 msgid "@@attack|Attack " msgstr "" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 msgid "@@disregard|Disregard " msgstr "" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "กำลังเชื่อมต่อ..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "กำลังเชื่อมต่อ..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "กำลังเชื่อมต่อ..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "ยืนยัน:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "ชาย" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "หญิง" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "" -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "ผิดพลาด" @@ -805,47 +868,47 @@ msgstr "" msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -886,48 +949,48 @@ msgstr "" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "ชื่อ:" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" @@ -987,25 +1050,25 @@ msgstr "" msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "" @@ -1042,28 +1105,20 @@ msgstr "" msgid "Applying change to OpenGL requires restart." msgstr "" -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" @@ -1071,44 +1126,44 @@ msgstr "" msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "ใช้" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, c-format msgid "Job: %d" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, c-format msgid "Money: %d GP" msgstr "" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1116,11 +1171,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 msgid "Job:" msgstr "" @@ -1128,106 +1183,106 @@ msgstr "" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "สถานะ" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 #, fuzzy msgid "Strength" msgstr "Strength:" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 #, fuzzy msgid "Agility" msgstr "Agility:" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 #, fuzzy msgid "Vitality" msgstr "Vitality:" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 #, fuzzy msgid "Intelligence" msgstr "Intelligence:" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 #, fuzzy msgid "Dexterity" msgstr "Dexterity:" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" @@ -1533,50 +1588,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -msgid "Unknown item" -msgstr "" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1650,201 +1701,362 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "คุณแน่ใจแล้วหรือที่จะลบตัวละครนี้?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 +msgid "Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" +msgstr "" + +#: ../src/keyboardconfig.cpp:48 +msgid "Talk" +msgstr "" + +#: ../src/keyboardconfig.cpp:49 +msgid "Stop Attack" +msgstr "" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +msgid "Target Player" +msgstr "" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +msgid "Hide Windows" +msgstr "" + +#: ../src/keyboardconfig.cpp:55 +msgid "Sit" +msgstr "" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, c-format +msgid "Item Shortcut %d" +msgstr "" + +#: ../src/keyboardconfig.cpp:71 +msgid "Help Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:72 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "คุณแน่ใจแล้วหรือที่จะลบตัวละครนี้?" +msgid "Status Window" +msgstr "สถานะ" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:73 +msgid "Inventory Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:74 +msgid "Equipment WIndow" +msgstr "" + +#: ../src/keyboardconfig.cpp:75 +msgid "Skill Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +msgid "Chat Window" msgstr "" -#: ../src/game.cpp:784 +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +msgid "Setup Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:80 +msgid "Debug Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:81 +msgid "Emote Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 #, c-format -msgid "Warning: guichan input exception: %s" +msgid "Emote Shortcut %d" +msgstr "" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:98 +msgid "Select OK" +msgstr "" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "กำลังเชื่อมต่อ..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "กำลังเชื่อมต่อ..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "กำลังเชื่อมต่อ..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "ชื่อ: %s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "กำลังเชื่อมต่อ..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" @@ -1909,90 +2121,86 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "สร้าง" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 8c96404d..49db6d7f 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-28 09:34-0700\n" +"POT-Creation-Date: 2009-02-05 09:19-0700\n" "PO-Revision-Date: 2009-01-21 22:42+0800\n" "Last-Translator: Hong Hao \n" "Language-Team: Simplified Chinese : Party commands." +msgstr "" + +#: ../src/gui/chat.cpp:799 #, fuzzy msgid "/msg : Alternate form for /whisper" msgstr "/w <昵称> <信息>: /whisper的缩写形式" -#: ../src/gui/chat.cpp:808 +#: ../src/gui/chat.cpp:800 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:810 +#: ../src/gui/chat.cpp:801 +msgid "/record : Start recording the chat to an external file." +msgstr "" + +#: ../src/gui/chat.cpp:803 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:812 +#: ../src/gui/chat.cpp:805 msgid "/where: Display map name" msgstr "/where: 显示地图名称" -#: ../src/gui/chat.cpp:813 +#: ../src/gui/chat.cpp:806 msgid "/w : Short form for /whisper" msgstr "/w <昵称> <信息>: /whisper的缩写形式" -#: ../src/gui/chat.cpp:814 +#: ../src/gui/chat.cpp:807 msgid "/whisper : Sends a private to " msgstr "/whisper <昵称> <信息>: 发送一条私密信息 <信息> 给 <昵称>" -#: ../src/gui/chat.cpp:816 +#: ../src/gui/chat.cpp:809 msgid "/who: Display number of online users" msgstr "/who: 显示在线用户数" -#: ../src/gui/chat.cpp:817 +#: ../src/gui/chat.cpp:810 msgid "For more information, type /help " msgstr "输入/help <指令> 获取更多帮助信息" -#: ../src/gui/chat.cpp:821 +#: ../src/gui/chat.cpp:814 msgid "Command: /announce " msgstr "指令: /announce <信息>" -#: ../src/gui/chat.cpp:822 +#: ../src/gui/chat.cpp:815 msgid "*** only available to a GM ***" msgstr "*** 只有GM可用 ***" -#: ../src/gui/chat.cpp:823 +#: ../src/gui/chat.cpp:816 msgid "This command sends the message to all players currently online." msgstr "该指令会发送<信息>给所有在线用户。" -#: ../src/gui/chat.cpp:828 +#: ../src/gui/chat.cpp:821 msgid "Command: /clear" msgstr "指令: /clear" -#: ../src/gui/chat.cpp:829 +#: ../src/gui/chat.cpp:822 msgid "This command clears the chat log of previous chat." msgstr "该指令可清除历史聊天记录。" -#: ../src/gui/chat.cpp:834 +#: ../src/gui/chat.cpp:827 msgid "Command: /help" msgstr "指令: /help" -#: ../src/gui/chat.cpp:835 +#: ../src/gui/chat.cpp:828 msgid "This command displays a list of all commands available." msgstr "该指令可显示所有可用指令。" -#: ../src/gui/chat.cpp:837 +#: ../src/gui/chat.cpp:830 msgid "Command: /help " msgstr "指令: /help <指令>" -#: ../src/gui/chat.cpp:838 +#: ../src/gui/chat.cpp:831 msgid "This command displays help on ." msgstr "该指令显现<指令>的帮助信息" -#: ../src/gui/chat.cpp:846 +#: ../src/gui/chat.cpp:839 #, fuzzy msgid "Command: /present" msgstr "指令: /where" -#: ../src/gui/chat.cpp:847 +#: ../src/gui/chat.cpp:840 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:857 +#: ../src/gui/chat.cpp:846 +#, fuzzy +msgid "Command: /record " +msgstr "指令: /clear" + +#: ../src/gui/chat.cpp:847 +#, fuzzy +msgid "This command starts recording the chat log to the file ." +msgstr "该指令可清除历史聊天记录。" + +#: ../src/gui/chat.cpp:849 +#, fuzzy +msgid "Command: /record" +msgstr "指令: /clear" + +#: ../src/gui/chat.cpp:850 +#, fuzzy +msgid "This command finishes a recording session." +msgstr "该指令显现<指令>的帮助信息" + +#: ../src/gui/chat.cpp:854 #, fuzzy msgid "Command: /toggle " msgstr "指令: /announce <信息>" -#: ../src/gui/chat.cpp:858 +#: ../src/gui/chat.cpp:855 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:861 +#: ../src/gui/chat.cpp:858 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:864 +#: ../src/gui/chat.cpp:861 #, fuzzy msgid "Command: /toggle" msgstr "指令: /clear" -#: ../src/gui/chat.cpp:865 +#: ../src/gui/chat.cpp:862 #, fuzzy msgid "This command displays the return toggle status." msgstr "该条指令显示当前地图名。" -#: ../src/gui/chat.cpp:869 +#: ../src/gui/chat.cpp:866 msgid "Command: /where" msgstr "指令: /where" -#: ../src/gui/chat.cpp:870 +#: ../src/gui/chat.cpp:867 msgid "This command displays the name of the current map." msgstr "该条指令显示当前地图名。" -#: ../src/gui/chat.cpp:875 +#: ../src/gui/chat.cpp:872 #, fuzzy msgid "Command: /msg " msgstr "指令: /w <昵称> <信息>" -#: ../src/gui/chat.cpp:876 +#: ../src/gui/chat.cpp:873 msgid "Command: /whisper " msgstr "指令: /whisper <昵称> <信息>" -#: ../src/gui/chat.cpp:877 +#: ../src/gui/chat.cpp:874 msgid "Command: /w " msgstr "指令: /w <昵称> <信息>" -#: ../src/gui/chat.cpp:878 +#: ../src/gui/chat.cpp:875 msgid "This command sends the message to ." msgstr "该条指令发送信息 " -#: ../src/gui/chat.cpp:880 +#: ../src/gui/chat.cpp:877 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "如果<昵称>之间有空格,用双引号(\")括起来。" -#: ../src/gui/chat.cpp:885 +#: ../src/gui/chat.cpp:882 msgid "Command: /who" msgstr "指令: /who" -#: ../src/gui/chat.cpp:886 +#: ../src/gui/chat.cpp:883 msgid "This command displays the number of players currently online." msgstr "该条指令可显现当前在线用户总数。" -#: ../src/gui/chat.cpp:891 +#: ../src/gui/chat.cpp:888 msgid "Unknown command." msgstr "未知命令" -#: ../src/gui/chat.cpp:892 +#: ../src/gui/chat.cpp:889 msgid "Type /help for a list of commands." msgstr "输入 /help 获取指令列表。" -#: ../src/gui/colour.cpp:33 +#: ../src/gui/colour.cpp:32 msgid "GM" msgstr "" +#: ../src/gui/colour.cpp:33 +#, fuzzy +msgid "Highlight" +msgstr "高" + #: ../src/gui/colour.cpp:34 #, fuzzy msgid "Player" @@ -543,15 +578,15 @@ msgstr "" msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:37 +#: ../src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "是" -#: ../src/gui/confirm_dialog.cpp:38 +#: ../src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "否" -#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:112 +#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "连接中..." @@ -559,67 +594,67 @@ msgstr "连接中..." msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:41 ../src/gui/emotewindow.cpp:43 +#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 #: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:50 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:64 ../src/gui/inventorywindow.cpp:215 -#: ../src/gui/skill.cpp:141 +#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 +#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 +#: ../src/gui/skill.cpp:144 msgid "Use" msgstr "使用" -#: ../src/gui/equipmentwindow.cpp:59 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 #: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "装备" -#: ../src/gui/equipmentwindow.cpp:74 ../src/gui/inventorywindow.cpp:67 -#: ../src/gui/inventorywindow.cpp:69 ../src/gui/inventorywindow.cpp:210 +#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "卸下装备" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:37 +#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 msgid "Help" msgstr "帮助" -#: ../src/gui/help.cpp:43 +#: ../src/gui/help.cpp:45 msgid "Close" msgstr "关闭" -#: ../src/gui/inventorywindow.cpp:51 ../src/gui/inventorywindow.cpp:55 +#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 #: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "物品栏" -#: ../src/gui/inventorywindow.cpp:62 ../src/gui/inventorywindow.cpp:64 -#: ../src/gui/inventorywindow.cpp:212 +#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "装备" -#: ../src/gui/inventorywindow.cpp:73 +#: ../src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "丢弃" -#: ../src/gui/inventorywindow.cpp:85 +#: ../src/gui/inventorywindow.cpp:84 #, fuzzy msgid "Slots: " msgstr "技能点数:%d" -#: ../src/gui/inventorywindow.cpp:86 ../src/gui/itempopup.cpp:117 +#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:75 +#: ../src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "请选择交易的物品数量" -#: ../src/gui/item_amount.cpp:79 +#: ../src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "请选择丢弃的物品数量" -#: ../src/gui/itempopup.cpp:118 +#: ../src/gui/itempopup.cpp:112 msgid " grams" msgstr "" @@ -627,11 +662,11 @@ msgstr "" msgid "Login" msgstr "登录" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:81 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 msgid "Password:" msgstr "密码:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:84 +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 msgid "Port:" msgstr "端口:" @@ -639,22 +674,22 @@ msgstr "端口:" msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:77 +#: ../src/gui/login.cpp:78 msgid "Keep" msgstr "保持" -#: ../src/gui/login.cpp:80 ../src/gui/register.cpp:76 -#: ../src/gui/register.cpp:92 +#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 +#: ../src/gui/register.cpp:88 msgid "Register" msgstr "注册" #: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:39 +#: ../src/gui/status.cpp:41 msgid "Status" msgstr "状态" #: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:130 +#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 msgid "Skills" msgstr "技能" @@ -663,7 +698,7 @@ msgid "Shortcut" msgstr "快捷键" #: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:52 ../src/main.cpp:787 +#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 msgid "Setup" msgstr "设置" @@ -671,146 +706,180 @@ msgstr "设置" msgid "MiniMap" msgstr "小地图" -#: ../src/gui/npcintegerdialog.cpp:38 +#: ../src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:45 +#: ../src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "注册" -#: ../src/gui/npclistdialog.cpp:34 ../src/gui/npc_text.cpp:36 +#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:38 +#: ../src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:82 +#: ../src/gui/popupmenu.cpp:78 #, fuzzy msgid "@@trade|Trade With " msgstr "@@交易|与%s交易@@" -#: ../src/gui/popupmenu.cpp:83 +#: ../src/gui/popupmenu.cpp:79 #, fuzzy msgid "@@attack|Attack " msgstr "@@攻击|攻击%s@@" -#: ../src/gui/popupmenu.cpp:89 +#: ../src/gui/popupmenu.cpp:85 msgid "@@friend|Befriend " msgstr "" -#: ../src/gui/popupmenu.cpp:92 +#: ../src/gui/popupmenu.cpp:88 #, fuzzy msgid "@@disregard|Disregard " msgstr "无视" -#: ../src/gui/popupmenu.cpp:93 +#: ../src/gui/popupmenu.cpp:89 msgid "@@ignore|Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:97 ../src/gui/popupmenu.cpp:102 +#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 msgid "@@unignore|Un-Ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:98 +#: ../src/gui/popupmenu.cpp:94 msgid "@@ignore|Completely ignore " msgstr "" -#: ../src/gui/popupmenu.cpp:110 +#: ../src/gui/popupmenu.cpp:106 msgid "@@party-invite|Invite " msgstr "" #. NPCs can be talked to (single option, candidate for removal #. unless more options would be added) -#: ../src/gui/popupmenu.cpp:118 +#: ../src/gui/popupmenu.cpp:114 msgid "@@talk|Talk To NPC@@" msgstr "@@谈话|和NPC谈话@@" -#: ../src/gui/popupmenu.cpp:128 ../src/gui/popupmenu.cpp:144 -#: ../src/gui/popupmenu.cpp:302 +#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:298 msgid "@@cancel|Cancel@@" msgstr "@@取消|取消@@" -#: ../src/gui/popupmenu.cpp:140 +#: ../src/gui/popupmenu.cpp:136 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@捡起|捡起%s@@" -#: ../src/gui/popupmenu.cpp:292 +#: ../src/gui/popupmenu.cpp:288 msgid "@@use|Unequip@@" msgstr "@@使用|卸载@@" -#: ../src/gui/popupmenu.cpp:294 +#: ../src/gui/popupmenu.cpp:290 msgid "@@use|Equip@@" msgstr "@@使用|装备@@" -#: ../src/gui/popupmenu.cpp:297 +#: ../src/gui/popupmenu.cpp:293 msgid "@@use|Use@@" msgstr "@@使用|使用@@" -#: ../src/gui/popupmenu.cpp:299 +#: ../src/gui/popupmenu.cpp:295 msgid "@@drop|Drop@@" msgstr "@@丢弃|丢弃@@" -#: ../src/gui/popupmenu.cpp:300 +#: ../src/gui/popupmenu.cpp:296 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.h:41 +#: ../src/gui/recorder.cpp:37 +#, fuzzy +msgid "Recorder" +msgstr "连接中..." + +#. +#. * Message should go after mStream is closed so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:79 +msgid "Finishing recording." +msgstr "" + +#: ../src/gui/recorder.cpp:83 +msgid "Not currently recording." +msgstr "" + +#: ../src/gui/recorder.cpp:88 +#, fuzzy +msgid "Already recording." +msgstr "连接中..." + +#. +#. * Message should go before mStream is opened so that it isn't +#. * recorded. +#. +#: ../src/gui/recorder.cpp:96 +msgid "Starting to record..." +msgstr "" + +#: ../src/gui/recorder.cpp:104 +msgid "Failed to start recording." +msgstr "" + +#: ../src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "连接中..." -#: ../src/gui/recorder.h:42 +#: ../src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:82 +#: ../src/gui/register.cpp:78 msgid "Confirm:" msgstr "确认:" -#: ../src/gui/register.cpp:90 +#: ../src/gui/register.cpp:86 msgid "Male" msgstr "帅哥" -#: ../src/gui/register.cpp:91 +#: ../src/gui/register.cpp:87 msgid "Female" msgstr "美女" -#: ../src/gui/register.cpp:159 +#: ../src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:168 +#: ../src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "用户名至少需要%d个字符。" -#: ../src/gui/register.cpp:176 +#: ../src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "用户名不能少于%d个字符" -#: ../src/gui/register.cpp:184 +#: ../src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "密码需要至少%d个字符" -#: ../src/gui/register.cpp:192 +#: ../src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "密码不能少于%d个字符。" #. Password does not match with the confirmation one -#: ../src/gui/register.cpp:199 +#: ../src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "密码不一致." -#: ../src/gui/register.cpp:219 ../src/main.cpp:1055 +#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 msgid "Error" msgstr "错误" @@ -826,48 +895,48 @@ msgstr "音效声量" msgid "Music volume" msgstr "音乐声量" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Apply" msgstr "应用" -#: ../src/gui/setup.cpp:60 +#: ../src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "重置窗口" -#: ../src/gui/setup.cpp:81 +#: ../src/gui/setup.cpp:78 msgid "Video" msgstr "视频" -#: ../src/gui/setup.cpp:85 +#: ../src/gui/setup.cpp:82 msgid "Audio" msgstr "音频" -#: ../src/gui/setup.cpp:89 +#: ../src/gui/setup.cpp:86 msgid "Joystick" msgstr "游戏杆" -#: ../src/gui/setup.cpp:93 +#: ../src/gui/setup.cpp:90 msgid "Keyboard" msgstr "键盘" -#: ../src/gui/setup.cpp:97 +#: ../src/gui/setup.cpp:94 #, fuzzy msgid "Colors" msgstr "关闭" -#: ../src/gui/setup.cpp:101 +#: ../src/gui/setup.cpp:98 msgid "Players" msgstr "玩家" -#: ../src/gui/setup_colours.cpp:53 +#: ../src/gui/setup_colours.cpp:52 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:67 +#: ../src/gui/setup_colours.cpp:66 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:81 +#: ../src/gui/setup_colours.cpp:80 msgid "Blue: " msgstr "" @@ -907,48 +976,48 @@ msgstr "检测到按键冲突。" msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "解决按键冲突,否者游戏过程中可能发生奇怪行为。" -#: ../src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:56 msgid "Name" msgstr "姓名" -#: ../src/gui/setup_players.cpp:55 +#: ../src/gui/setup_players.cpp:57 msgid "Relation" msgstr "关系" -#: ../src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "中立" -#: ../src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:62 msgid "Friend" msgstr "好友" -#: ../src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:63 #, fuzzy msgid "Disregarded" msgstr "无视" -#: ../src/gui/setup_players.cpp:62 +#: ../src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "忽略" -#: ../src/gui/setup_players.cpp:200 ../src/gui/skill.cpp:83 +#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "保存玩家列表" -#: ../src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "允许交易" -#: ../src/gui/setup_players.cpp:220 +#: ../src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "允许私语" -#: ../src/gui/setup_players.cpp:247 +#: ../src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "当忽略时:" @@ -1010,25 +1079,25 @@ msgstr "雾化效果" msgid "Particle Detail" msgstr "纹理细节" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:474 +#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 msgid "off" msgstr "关闭" #: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:477 ../src/gui/setup_video.cpp:491 +#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 msgid "low" msgstr "低" #: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:480 ../src/gui/setup_video.cpp:497 +#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 msgid "high" msgstr "高" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:494 +#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 msgid "medium" msgstr "中" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:500 +#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 msgid "max" msgstr "最大" @@ -1066,29 +1135,21 @@ msgstr "改变成OpenGL" msgid "Applying change to OpenGL requires restart." msgstr "运用改变为OpenGL需要重新开始" -#: ../src/gui/setup_video.cpp:403 ../src/main.cpp:425 -msgid "Couldn't set " -msgstr "" - -#: ../src/gui/setup_video.cpp:404 ../src/main.cpp:426 -msgid " video mode: " -msgstr "" - #. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:415 +#: ../src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:416 +#: ../src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "重启生效" -#: ../src/gui/setup_video.cpp:434 +#: ../src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:435 +#: ../src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "重启生效" @@ -1098,44 +1159,44 @@ msgstr "重启生效" msgid "skills.xml" msgstr "技能" -#: ../src/gui/skill.cpp:139 ../src/gui/skill.cpp:190 +#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "技能点数:%d" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "Up" msgstr "升级" -#: ../src/gui/skill.cpp:140 +#: ../src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:141 +#: ../src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "使用" -#: ../src/gui/skill.cpp:266 +#: ../src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:38 +#: ../src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 #, c-format msgid "Job: %d" msgstr "职业:%d" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 +#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 #, c-format msgid "Money: %d GP" msgstr "金钱:%d 金币" -#: ../src/gui/status.cpp:53 +#: ../src/gui/status.cpp:54 msgid "HP:" msgstr "" @@ -1143,11 +1204,11 @@ msgstr "" msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:61 +#: ../src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:65 +#: ../src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "职业:%d" @@ -1156,101 +1217,101 @@ msgstr "职业:%d" #. Stats Part #. ---------------------- #. Static Labels -#: ../src/gui/status.cpp:125 +#: ../src/gui/status.cpp:71 msgid "Stats" msgstr "状态" -#: ../src/gui/status.cpp:126 +#: ../src/gui/status.cpp:72 msgid "Total" msgstr "总计" -#: ../src/gui/status.cpp:127 +#: ../src/gui/status.cpp:73 msgid "Cost" msgstr "花费" #. Derived Stats -#: ../src/gui/status.cpp:130 +#: ../src/gui/status.cpp:76 msgid "Attack:" msgstr "攻击:" -#: ../src/gui/status.cpp:131 +#: ../src/gui/status.cpp:77 msgid "Defense:" msgstr "防御:" -#: ../src/gui/status.cpp:132 +#: ../src/gui/status.cpp:78 msgid "M.Attack:" msgstr "魔攻:" -#: ../src/gui/status.cpp:133 +#: ../src/gui/status.cpp:79 msgid "M.Defense:" msgstr "魔防:" -#: ../src/gui/status.cpp:134 +#: ../src/gui/status.cpp:80 #, c-format msgid "% Accuracy:" msgstr "% Ac精确度:" -#: ../src/gui/status.cpp:135 +#: ../src/gui/status.cpp:81 #, c-format msgid "% Evade:" msgstr "% E回避率:" -#: ../src/gui/status.cpp:136 +#: ../src/gui/status.cpp:82 msgid "% Reflex:" msgstr "% 伤害反射:" -#: ../src/gui/status.cpp:280 +#: ../src/gui/status.cpp:208 msgid "Strength" msgstr "力量" -#: ../src/gui/status.cpp:281 +#: ../src/gui/status.cpp:209 msgid "Agility" msgstr "敏捷" -#: ../src/gui/status.cpp:282 +#: ../src/gui/status.cpp:210 msgid "Vitality" msgstr "生命" -#: ../src/gui/status.cpp:283 +#: ../src/gui/status.cpp:211 msgid "Intelligence" msgstr "智慧" -#: ../src/gui/status.cpp:284 +#: ../src/gui/status.cpp:212 msgid "Dexterity" msgstr "敏捷" -#: ../src/gui/status.cpp:285 +#: ../src/gui/status.cpp:213 msgid "Luck" msgstr "幸运" -#: ../src/gui/status.cpp:303 +#: ../src/gui/status.cpp:231 #, c-format msgid "Remaining Status Points: %d" msgstr "剩余状态点数:%d" -#: ../src/gui/trade.cpp:51 +#: ../src/gui/trade.cpp:49 #, fuzzy msgid "Trade: You" msgstr "交易" -#: ../src/gui/trade.cpp:56 ../src/gui/trade.cpp:66 +#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 msgid "Trade" msgstr "交易" -#: ../src/gui/trade.cpp:63 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "添加" -#: ../src/gui/trade.cpp:82 ../src/gui/trade.cpp:124 ../src/gui/trade.cpp:174 +#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "你得到%d GP." -#: ../src/gui/trade.cpp:83 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "你付出:" -#: ../src/gui/trade.cpp:252 +#: ../src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "添加物品失败。你不能覆盖窗口中的该类物品。" @@ -1562,51 +1623,46 @@ msgstr "" msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:53 +#: ../src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:56 -#, fuzzy -msgid "Unknown item" -msgstr "未知指令" - -#: ../src/resources/itemdb.cpp:61 +#: ../src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:66 +#: ../src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:78 +#: ../src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:83 +#: ../src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:101 +#: ../src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "未知物品" -#: ../src/resources/itemdb.cpp:146 +#: ../src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:172 +#: ../src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:190 +#: ../src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:246 +#: ../src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" @@ -1682,201 +1738,377 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:535 +#: ../src/game.cpp:591 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "你确定想删除这个角色?" + +#: ../src/game.cpp:598 +msgid "no" +msgstr "" + +#: ../src/game.cpp:727 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:542 +#: ../src/game.cpp:734 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:637 +#: ../src/game.cpp:770 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/keyboardconfig.cpp:42 +msgid "Move Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:43 +msgid "Move Down" +msgstr "" + +#: ../src/keyboardconfig.cpp:44 +msgid "Move Left" +msgstr "" + +#: ../src/keyboardconfig.cpp:45 +msgid "Move Right" +msgstr "" + +#: ../src/keyboardconfig.cpp:46 #, fuzzy -msgid "Are you sure you want to quit?" -msgstr "你确定想删除这个角色?" +msgid "Attack" +msgstr "攻击:" -#: ../src/game.cpp:644 -msgid "no" +#: ../src/keyboardconfig.cpp:47 +msgid "Smilie" msgstr "" -#: ../src/game.cpp:784 -#, c-format -msgid "Warning: guichan input exception: %s" +#: ../src/keyboardconfig.cpp:48 +#, fuzzy +msgid "Talk" +msgstr "总计" + +#: ../src/keyboardconfig.cpp:49 +#, fuzzy +msgid "Stop Attack" +msgstr "攻击:" + +#: ../src/keyboardconfig.cpp:50 +msgid "Target Closest" +msgstr "" + +#: ../src/keyboardconfig.cpp:51 +msgid "Target NPC" +msgstr "" + +#: ../src/keyboardconfig.cpp:52 +#, fuzzy +msgid "Target Player" +msgstr "玩家" + +#: ../src/keyboardconfig.cpp:53 +msgid "Pickup" +msgstr "" + +#: ../src/keyboardconfig.cpp:54 +#, fuzzy +msgid "Hide Windows" +msgstr "重置窗口" + +#: ../src/keyboardconfig.cpp:55 +#, fuzzy +msgid "Sit" +msgstr "分离" + +#: ../src/keyboardconfig.cpp:56 +msgid "Screenshot" +msgstr "" + +#: ../src/keyboardconfig.cpp:57 +msgid "Enable/Disable Trading" +msgstr "" + +#: ../src/keyboardconfig.cpp:58 +msgid "Find Path to Mouse" +msgstr "" + +#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 +#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 +#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 +#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 +#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 +#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#, fuzzy, c-format +msgid "Item Shortcut %d" +msgstr "快捷键" + +#: ../src/keyboardconfig.cpp:71 +#, fuzzy +msgid "Help Window" +msgstr "重置窗口" + +#: ../src/keyboardconfig.cpp:72 +#, fuzzy +msgid "Status Window" +msgstr "状态" + +#: ../src/keyboardconfig.cpp:73 +#, fuzzy +msgid "Inventory Window" +msgstr "物品栏" + +#: ../src/keyboardconfig.cpp:74 +#, fuzzy +msgid "Equipment WIndow" +msgstr "装备" + +#: ../src/keyboardconfig.cpp:75 +#, fuzzy +msgid "Skill Window" +msgstr "技能点数:%d" + +#: ../src/keyboardconfig.cpp:76 +msgid "Minimap Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:77 +#, fuzzy +msgid "Chat Window" +msgstr "重置窗口" + +#: ../src/keyboardconfig.cpp:78 +msgid "Item Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:79 +#, fuzzy +msgid "Setup Window" +msgstr "重置窗口" + +#: ../src/keyboardconfig.cpp:80 +#, fuzzy +msgid "Debug Window" +msgstr "重置窗口" + +#: ../src/keyboardconfig.cpp:81 +#, fuzzy +msgid "Emote Window" +msgstr "发送表情失败!" + +#: ../src/keyboardconfig.cpp:82 +msgid "Emote Shortcut Window" +msgstr "" + +#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 +#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 +#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 +#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 +#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 +#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#, fuzzy, c-format +msgid "Emote Shortcut %d" +msgstr "快捷键" + +#: ../src/keyboardconfig.cpp:95 +msgid "Toggle Chat" +msgstr "" + +#: ../src/keyboardconfig.cpp:96 +msgid "Scroll Chat Up" +msgstr "" + +#: ../src/keyboardconfig.cpp:97 +msgid "Scroll Chat Down" msgstr "" -#: ../src/main.cpp:213 +#: ../src/keyboardconfig.cpp:98 +#, fuzzy +msgid "Select OK" +msgstr "选择服务器" + +#: ../src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:214 +#: ../src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:220 +#: ../src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:245 +#: ../src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:247 ../src/main.cpp:253 +#: ../src/main.cpp:248 ../src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:251 +#: ../src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:282 +#: ../src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:291 +#: ../src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:293 +#: ../src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" #. Initialize SDL -#: ../src/main.cpp:297 +#: ../src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:299 +#: ../src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:312 +#: ../src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:332 +#: ../src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" #. Fill configuration with defaults -#: ../src/main.cpp:342 +#: ../src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:456 +#: ../src/main.cpp:426 +msgid "Couldn't set " +msgstr "" + +#: ../src/main.cpp:427 +msgid " video mode: " +msgstr "" + +#: ../src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:498 +#: ../src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:499 +#: ../src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:500 +#: ../src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:501 +#: ../src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:502 +#: ../src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:503 +#: ../src/main.cpp:504 #, fuzzy msgid " -h --help : Display this help" msgstr "/help: 显示帮助信息" -#: ../src/main.cpp:504 +#: ../src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:505 +#: ../src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:506 +#: ../src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:507 +#: ../src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:508 +#: ../src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:509 +#: ../src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:515 ../src/main.cpp:518 +#: ../src/main.cpp:516 ../src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:519 +#: ../src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:615 +#: ../src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "正在连接 帐号 服务器..." -#: ../src/main.cpp:616 +#: ../src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:670 +#: ../src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "正在连接 角色 服务器..." -#: ../src/main.cpp:692 +#: ../src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:698 +#: ../src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "正在连接 地图 服务器..." -#: ../src/main.cpp:699 +#: ../src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "姓名:%s" -#: ../src/main.cpp:829 +#: ../src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:862 +#: ../src/main.cpp:863 msgid "Got disconnected from server!" msgstr "和服务器失去连接" -#: ../src/main.cpp:1067 +#: ../src/main.cpp:1068 msgid "Connecting to map server..." msgstr "正在连接 地图 服务器..." -#: ../src/main.cpp:1075 +#: ../src/main.cpp:1076 msgid "Connecting to character server..." msgstr "正在连接 角色 服务器..." -#: ../src/main.cpp:1083 +#: ../src/main.cpp:1084 msgid "Connecting to account server..." msgstr "正在连接 帐号 服务器..." @@ -1943,99 +2175,95 @@ msgstr "" msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:171 -msgid "/party : Party commands." -msgstr "" - -#: ../src/party.cpp:178 +#: ../src/party.cpp:173 #, fuzzy msgid "Command: /party " msgstr "指令: /help <指令>" -#: ../src/party.cpp:179 +#: ../src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:180 +#: ../src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:181 +#: ../src/party.cpp:176 #, fuzzy msgid " /create" msgstr "建立" -#: ../src/party.cpp:182 +#: ../src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:183 +#: ../src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:184 +#: ../src/party.cpp:179 #, fuzzy msgid "This command implements the partying function." msgstr "该指令显现<指令>的帮助信息" -#: ../src/party.cpp:186 +#: ../src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:192 +#: ../src/party.cpp:187 #, fuzzy msgid "Command: /party new " msgstr "指令: /announce <信息>" -#: ../src/party.cpp:193 +#: ../src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:194 +#: ../src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:201 +#: ../src/party.cpp:196 #, fuzzy msgid "This command sets the party prefix character." msgstr "该指令可清除历史聊天记录。" -#: ../src/party.cpp:203 +#: ../src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:205 +#: ../src/party.cpp:200 #, fuzzy msgid "Command: /party prefix" msgstr "指令: /clear" -#: ../src/party.cpp:206 +#: ../src/party.cpp:201 #, fuzzy msgid "This command reports the current party prefix character." msgstr "该指令可清除历史聊天记录。" -#: ../src/party.cpp:214 +#: ../src/party.cpp:209 #, fuzzy msgid "Command: /party leave" msgstr "指令: /clear" -#: ../src/party.cpp:215 +#: ../src/party.cpp:210 #, fuzzy msgid "This command causes the player to leave the party." msgstr "该指令可清除历史聊天记录。" -#: ../src/party.cpp:219 +#: ../src/party.cpp:214 #, fuzzy msgid "Unknown /party command." msgstr "未知命令" -#: ../src/party.cpp:220 +#: ../src/party.cpp:215 #, fuzzy msgid "Type /help party for a list of options." msgstr "输入 /help 获取指令列表。" @@ -2081,9 +2309,6 @@ msgstr "输入 /help 获取指令列表。" #~ msgid "Please remove %d points" #~ msgstr "请删除%d点数" -#~ msgid "Split" -#~ msgstr "分离" - #~ msgid "Select amount of items to split." #~ msgstr "请选择你分离的物品的数量" -- cgit v1.2.3-60-g2f50 From 34f27b882cf63ca4dfda6079253adb959ebaeadd Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 5 Feb 2009 11:44:31 -0700 Subject: Rather than to settle for a broken default (if it's left at space, then you won't be able to type spaces in the NPC integer or string dialogs. And no, assigning focus to the ok button doesn't resolve anything, but makes things worse, as then the user has to click on the input field to input text, then must click the ok button, as the chat window already overrode it's confirmation action), this commit allows for both the chat input and the NPC dialog confirming to share the same key, but allows for people to change one or the other if they want to. This will still allow for the player to use the keyboard fully for NPC dialogs, but allow for people who don't like not being able to use chat with an NPC dialog open to assign confirmation to another key and get their way as well. This is a rather ugly way of resolving both sides of the issue, but it's the only way to appease both sides. The Aethyra players want things the way they were, while Bjorn wanted things a different way. Signed-off-by: Ira Rice --- src/game.cpp | 91 ++++++++++++++++++++++++++++---------------------- src/keyboardconfig.cpp | 9 ++--- 2 files changed, 56 insertions(+), 44 deletions(-) diff --git a/src/game.cpp b/src/game.cpp index 3f6de6af..7c038074 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -515,6 +515,57 @@ void Game::handleInput() } } + if (keyboard.isKeyActive(keyboard.KEY_TOGGLE_CHAT)) + { + // Input chat window + if (!(chatWindow->isInputFocused() || + deathNotice != NULL || + weightNotice != NULL)) + { + // Quit by pressing Enter if the exit confirm is there + if (exitConfirm) + done = true; + // Close the Browser if opened + else if (helpWindow->isVisible()) + helpWindow->setVisible(false); + // Close the config window, cancelling changes if opened + else if (setupWindow->isVisible()) + setupWindow->action(gcn::ActionEvent(NULL, "cancel")); + else if (!(keyboard.getKeyValue( + KeyboardConfig::KEY_TOGGLE_CHAT) == + keyboard.getKeyValue( + KeyboardConfig::KEY_OK) && + (npcStringDialog->isVisible() || + npcTextDialog->isVisible() || + npcListDialog->isVisible() || + npcIntegerDialog->isVisible()))) + { + chatWindow->requestChatFocus(); + used = true; + } + } + } + + if (keyboard.isKeyActive(keyboard.KEY_OK)) + { + if (!(exitConfirm || helpWindow->isVisible() || + setupWindow->isVisible())) + { + // Submits the text and proceeds to the next dialog + if (npcStringDialog->isVisible()) + npcStringDialog->action(gcn::ActionEvent(NULL, "ok")); + // Proceed to the next dialog option, or close the window + else if (npcTextDialog->isVisible()) + npcTextDialog->action(gcn::ActionEvent(NULL, "ok")); + // Choose the currently highlighted dialogue option + else if (npcListDialog->isVisible()) + npcListDialog->action(gcn::ActionEvent(NULL, "ok")); + // Submits the text and proceeds to the next dialog + else if (npcIntegerDialog->isVisible()) + npcIntegerDialog->action(gcn::ActionEvent(NULL, "ok")); + } + } + const int tKey = keyboard.getKeyIndex(event.key.keysym.sym); switch (tKey) { @@ -544,45 +595,6 @@ void Game::handleInput() } used = true; break; - - case KeyboardConfig::KEY_TOGGLE_CHAT: - // Input chat window - if (chatWindow->isInputFocused() || - deathNotice != NULL || - weightNotice != NULL) - { - break; - } - - // Quit by pressing Enter if the exit confirm is there - if (exitConfirm) - done = true; - // Close the Browser if opened - else if (helpWindow->isVisible()) - helpWindow->setVisible(false); - // Close the config window, cancelling changes if opened - else if (setupWindow->isVisible()) - setupWindow->action(gcn::ActionEvent(NULL, "cancel")); - else - { - chatWindow->requestChatFocus(); - used = true; - } - break; - case KeyboardConfig::KEY_OK: - // Submits the text and proceeds to the next dialog - if (npcStringDialog->isVisible()) - npcStringDialog->action(gcn::ActionEvent(NULL, "ok")); - // Proceed to the next dialog option, or close the window - else if (npcTextDialog->isVisible()) - npcTextDialog->action(gcn::ActionEvent(NULL, "ok")); - // Choose the currently highlighted dialogue option - else if (npcListDialog->isVisible()) - npcListDialog->action(gcn::ActionEvent(NULL, "ok")); - // Submits the text and proceeds to the next dialog - else if (npcIntegerDialog->isVisible()) - npcIntegerDialog->action(gcn::ActionEvent(NULL, "ok")); - break; // Quitting confirmation dialog case KeyboardConfig::KEY_QUIT: if (!exitConfirm) @@ -598,7 +610,6 @@ void Game::handleInput() exitConfirm->action(gcn::ActionEvent(NULL, _("no"))); } break; - default: break; } diff --git a/src/keyboardconfig.cpp b/src/keyboardconfig.cpp index 68d51572..745a81db 100644 --- a/src/keyboardconfig.cpp +++ b/src/keyboardconfig.cpp @@ -95,7 +95,7 @@ static KeyData const keyData[KeyboardConfig::KEY_TOTAL] = { {"keyChat", SDLK_RETURN, _("Toggle Chat")}, {"keyChatScrollUp", SDLK_PAGEUP, _("Scroll Chat Up")}, {"keyChatScrollDown", SDLK_PAGEDOWN, _("Scroll Chat Down")}, - {"keyOK", SDLK_SPACE, _("Select OK")}, + {"keyOK", SDLK_RETURN, _("Select OK")}, {"keyQuit", SDLK_ESCAPE, _("Quit")} }; @@ -151,9 +151,10 @@ bool KeyboardConfig::hasConflicts() for (j = i, j++; j < KEY_TOTAL; j++) { // Allow for item shortcut and emote keys to overlap, but no other keys - if (!(((i >= KEY_SHORTCUT_1) && (i <= KEY_SHORTCUT_12)) && - ((j >= KEY_EMOTE_1) && (j <= KEY_EMOTE_12))) - && mKey[i].value == mKey[j].value + if (!((((i >= KEY_SHORTCUT_1) && (i <= KEY_SHORTCUT_12)) && + ((j >= KEY_EMOTE_1) && (j <= KEY_EMOTE_12))) || + ((i == KEY_TOGGLE_CHAT) && (j == KEY_OK))) && + (mKey[i].value == mKey[j].value) ) { return true; -- cgit v1.2.3-60-g2f50 From 9146b4bff88d2622907b7e9bba618ad9b12da7ce Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 5 Feb 2009 12:19:31 -0700 Subject: Modified the Colors setup pane to take as much space as it can. I left it minimal in the first place so that it could be redone as a theme window in the future, but there's no reason it should be as spread out as it was until it has been made into one. Signed-off-by: Ira Rice --- src/gui/setup_colours.cpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/gui/setup_colours.cpp b/src/gui/setup_colours.cpp index 07ec9086..695c3f74 100644 --- a/src/gui/setup_colours.cpp +++ b/src/gui/setup_colours.cpp @@ -58,7 +58,7 @@ Setup_Colours::Setup_Colours() : mRedText->addListener(this); mRedSlider = new Slider(0, 255); - mRedSlider->setWidth(90); + mRedSlider->setWidth(160); mRedSlider->setValue(mRedText->getValue()); mRedSlider->setActionEventId("slider_red"); mRedSlider->addActionListener(this); @@ -72,7 +72,7 @@ Setup_Colours::Setup_Colours() : mGreenText->addListener(this); mGreenSlider = new Slider(0, 255); - mGreenSlider->setWidth(90); + mGreenSlider->setWidth(160); mGreenSlider->setValue(mGreenText->getValue()); mGreenSlider->setActionEventId("slider_green"); mGreenSlider->addActionListener(this); @@ -86,7 +86,7 @@ Setup_Colours::Setup_Colours() : mBlueText->addListener(this); mBlueSlider = new Slider(0, 255); - mBlueSlider->setWidth(90); + mBlueSlider->setWidth(160); mBlueSlider->setValue(mBlueText->getValue()); mBlueSlider->setActionEventId("slider_blue"); mBlueSlider->addActionListener(this); @@ -97,18 +97,18 @@ Setup_Colours::Setup_Colours() : LayoutHelper h(this); ContainerPlacer place = h.getPlacer(0, 0); - place(0, 0, mScroll, 1, 3).setPadding(2); - place(1, 0, mRedLabel, 2); - place(3, 0, mRedSlider); - place(4, 0, mRedText).setPadding(1); - place(1, 1, mGreenLabel, 2); - place(3, 1, mGreenSlider); - place(4, 1, mGreenText).setPadding(1); - place(1, 2, mBlueLabel, 2); - place(3, 2, mBlueSlider); - place(4, 2, mBlueText).setPadding(1); - - setDimension(gcn::Rectangle(0, 0, 290, 150)); + place(0, 0, mScroll, 4, 3).setPadding(2); + place(0, 3, mRedLabel, 2); + place(2, 3, mRedSlider); + place(3, 3, mRedText).setPadding(1); + place(0, 4, mGreenLabel, 2); + place(2, 4, mGreenSlider); + place(3, 4, mGreenText).setPadding(1); + place(0, 5, mBlueLabel, 2); + place(2, 5, mBlueSlider); + place(3, 5, mBlueText).setPadding(1); + + setDimension(gcn::Rectangle(0, 0, 290, 250)); } Setup_Colours::~Setup_Colours() -- cgit v1.2.3-60-g2f50 From a05c3bbbae4fcb2fd353a9ba972e7caa7b8e566e Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 5 Feb 2009 12:35:32 -0700 Subject: Fixed the keyboard dialog list selection from cutting off before the scrollbar. Signed-off-by: Ira Rice --- src/gui/setup_colours.cpp | 1 - src/gui/setup_keyboard.cpp | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/gui/setup_colours.cpp b/src/gui/setup_colours.cpp index 695c3f74..d0ab426a 100644 --- a/src/gui/setup_colours.cpp +++ b/src/gui/setup_colours.cpp @@ -47,7 +47,6 @@ Setup_Colours::Setup_Colours() : mScroll = new ScrollArea(mColourBox); mScroll->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); - mScroll->setWidth(90); mRedLabel = new gcn::Label(_("Red: ")); diff --git a/src/gui/setup_keyboard.cpp b/src/gui/setup_keyboard.cpp index 7ff2ea7f..6a4363fe 100644 --- a/src/gui/setup_keyboard.cpp +++ b/src/gui/setup_keyboard.cpp @@ -78,11 +78,10 @@ Setup_Keyboard::Setup_Keyboard(): refreshKeys(); - mKeyList->setDimension(gcn::Rectangle(0, 0, 185, 140)); mKeyList->addActionListener(this); - mKeyList->setSelected(-1); ScrollArea *scrollArea = new ScrollArea(mKeyList); + scrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); mAssignKeyButton = new Button(_("Assign"), "assign", this); mAssignKeyButton->addActionListener(this); -- cgit v1.2.3-60-g2f50 From 3f84a6df4d205f3f81e5460850fd3156243d05ed Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 5 Feb 2009 13:01:59 -0700 Subject: Reduced the required checks slightly by handling the chat key and ok key together. Signed-off-by: Ira Rice --- src/game.cpp | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/game.cpp b/src/game.cpp index 7c038074..542c8396 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -515,7 +515,8 @@ void Game::handleInput() } } - if (keyboard.isKeyActive(keyboard.KEY_TOGGLE_CHAT)) + if (keyboard.isKeyActive(keyboard.KEY_TOGGLE_CHAT) || + keyboard.isKeyActive(keyboard.KEY_OK)) { // Input chat window if (!(chatWindow->isInputFocused() || @@ -543,16 +544,8 @@ void Game::handleInput() chatWindow->requestChatFocus(); used = true; } - } - } - - if (keyboard.isKeyActive(keyboard.KEY_OK)) - { - if (!(exitConfirm || helpWindow->isVisible() || - setupWindow->isVisible())) - { // Submits the text and proceeds to the next dialog - if (npcStringDialog->isVisible()) + else if (npcStringDialog->isVisible()) npcStringDialog->action(gcn::ActionEvent(NULL, "ok")); // Proceed to the next dialog option, or close the window else if (npcTextDialog->isVisible()) -- cgit v1.2.3-60-g2f50 From 5569b5ff92c022c901f27a2e9c563e2ace66557d Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 5 Feb 2009 13:10:06 -0700 Subject: Added a few translation strings to the char server handler, as well as remove the need for extensions.h in it. Signed-off-by: Ira Rice --- po/POTFILES.in | 1 + src/net/charserverhandler.cpp | 57 +++++++++++-------------------------------- 2 files changed, 15 insertions(+), 43 deletions(-) diff --git a/po/POTFILES.in b/po/POTFILES.in index a70d35d4..fcda80d4 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -41,6 +41,7 @@ src/gui/speechbubble.cpp src/gui/status.cpp src/gui/trade.cpp src/gui/updatewindow.cpp +src/net/charserverhandler.cpp src/net/playerhandler.cpp src/net/tradehandler.cpp src/resources/colordb.cpp diff --git a/src/net/charserverhandler.cpp b/src/net/charserverhandler.cpp index bd3685f3..345b8960 100644 --- a/src/net/charserverhandler.cpp +++ b/src/net/charserverhandler.cpp @@ -23,7 +23,6 @@ #include "messagein.h" #include "protocol.h" -#include "../extensions.h" #include "../game.h" #include "../localplayer.h" #include "../log.h" @@ -33,13 +32,9 @@ #include "../gui/char_select.h" #include "../gui/ok_dialog.h" +#include "../utils/gettext.h" #include "../utils/tostring.h" -/* - * Yeah, this is a global. Get over it. - */ -struct EXTENSIONS extensions; - CharServerHandler::CharServerHandler(): mCharCreateDialog(0) { @@ -72,61 +67,37 @@ void CharServerHandler::handleMessage(MessageIn *msg) switch (code) { case 0: - errorMessage = "Authentication failed"; + errorMessage = _("Authentication failed"); break; case 1: - errorMessage = "Map server(s) offline"; + errorMessage = _("Map server(s) offline"); break; case 2: - errorMessage = "This account is already logged in"; + errorMessage = _("This account is already logged in"); break; case 3: - errorMessage = "Speed hack detected"; + errorMessage = _("Speed hack detected"); break; case 8: - errorMessage = "Duplicated login"; + errorMessage = _("Duplicated login"); break; default: - errorMessage = "Unknown connection error"; + errorMessage = _("Unknown connection error"); break; } state = ERROR_STATE; break; - case 0x006b: - msg->skip(2); // Length word - flags = msg->readInt32(); // Aethyra extensions flags - logger->log("Server flags are: %x", flags); - extensions.aethyra_inventory = (bool)(flags & 0x01); - extensions.aethyra_spells = (bool)(flags & 0x02); - extensions.aethyra_misc = (bool)(flags & 0x04); - msg->skip(16); // Unused - - // Derive number of characters from message length - n_character = (msg->getLength() - 24) / 106; - - for (int i = 0; i < n_character; i++) - { - tempPlayer = readPlayerData(*msg, slot); - mCharInfo->select(slot); - mCharInfo->setEntry(tempPlayer); - logger->log("CharServer: Player: %s (%d)", - tempPlayer->getName().c_str(), slot); - } - - state = CHAR_SELECT_STATE; - break; - case 0x006c: switch (msg->readInt8()) { case 0: - errorMessage = "Access denied"; + errorMessage = _("Access denied"); break; case 1: - errorMessage = "Cannot use this ID"; + errorMessage = _("Cannot use this ID"); break; default: - errorMessage = "Unknown failure to select character"; + errorMessage = _("Unknown failure to select character"); break; } mCharInfo->unlock(); @@ -148,8 +119,8 @@ void CharServerHandler::handleMessage(MessageIn *msg) break; case 0x006e: - new OkDialog("Error", "Failed to create character. Most likely" - " the name is already taken."); + new OkDialog(_("Error"), _("Failed to create character. Most likely" + " the name is already taken.")); if (mCharCreateDialog) mCharCreateDialog->unlock(); @@ -160,12 +131,12 @@ void CharServerHandler::handleMessage(MessageIn *msg) mCharInfo->setEntry(0); mCharInfo->unlock(); n_character--; - new OkDialog("Info", "Player deleted"); + new OkDialog(_("Info"), _("Player deleted")); break; case 0x0070: mCharInfo->unlock(); - new OkDialog("Error", "Failed to delete character."); + new OkDialog(_("Error"), _("Failed to delete character.")); break; case 0x0071: -- cgit v1.2.3-60-g2f50 From 69d6f5fce3ee7ac1888c537e8e222431f8fc45da Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 5 Feb 2009 13:26:02 -0700 Subject: Put back the 0x06b packet, which apparently our server uses. Will investigate why we use it and what this packet is meant to do. Signed-off-by: Ira Rice --- src/net/charserverhandler.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/net/charserverhandler.cpp b/src/net/charserverhandler.cpp index 345b8960..932cf705 100644 --- a/src/net/charserverhandler.cpp +++ b/src/net/charserverhandler.cpp @@ -88,6 +88,27 @@ void CharServerHandler::handleMessage(MessageIn *msg) state = ERROR_STATE; break; + case 0x006b: + msg->skip(2); // Length word + flags = msg->readInt32(); // Aethyra extensions flags + logger->log("Server flags are: %x", flags); + msg->skip(16); // Unused + + // Derive number of characters from message length + n_character = (msg->getLength() - 24) / 106; + + for (int i = 0; i < n_character; i++) + { + tempPlayer = readPlayerData(*msg, slot); + mCharInfo->select(slot); + mCharInfo->setEntry(tempPlayer); + logger->log("CharServer: Player: %s (%d)", + tempPlayer->getName().c_str(), slot); + } + + state = CHAR_SELECT_STATE; + break; + case 0x006c: switch (msg->readInt8()) { case 0: -- cgit v1.2.3-60-g2f50 From f001a53b494e8b357eba6f7c0cad9afe3258dda8 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 5 Feb 2009 14:19:44 -0700 Subject: Exposed some more strings I found to be translatable. Signed-off-by: Ira Rice --- po/POTFILES.in | 6 ++++++ src/net/buysellhandler.cpp | 12 +++++++----- src/net/chathandler.cpp | 5 +++-- src/net/equipmenthandler.cpp | 6 ++++-- src/net/inventoryhandler.cpp | 10 ++++++---- src/net/loginhandler.cpp | 32 +++++++++++++++++++------------- src/net/maploginhandler.cpp | 8 +++++--- 7 files changed, 50 insertions(+), 29 deletions(-) diff --git a/po/POTFILES.in b/po/POTFILES.in index fcda80d4..295a6127 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -41,7 +41,13 @@ src/gui/speechbubble.cpp src/gui/status.cpp src/gui/trade.cpp src/gui/updatewindow.cpp +src/net/buysellhandler.cpp src/net/charserverhandler.cpp +src/net/chathandler.cpp +src/net/equipmenthandler.cpp +src/net/inventoryhandler.cpp +src/net/loginhandler.cpp +src/net/maploginhandler.cpp src/net/playerhandler.cpp src/net/tradehandler.cpp src/resources/colordb.cpp diff --git a/src/net/buysellhandler.cpp b/src/net/buysellhandler.cpp index 5292b6f9..67c79ec4 100644 --- a/src/net/buysellhandler.cpp +++ b/src/net/buysellhandler.cpp @@ -35,6 +35,8 @@ #include "../gui/chat.h" #include "../gui/sell.h" +#include "../utils/gettext.h" + extern BuyDialog *buyDialog; extern Window *buySellDialog; extern SellDialog *sellDialog; @@ -104,27 +106,27 @@ void BuySellHandler::handleMessage(MessageIn *msg) } } else { - chatWindow->chatLog("Nothing to sell", BY_SERVER); + chatWindow->chatLog(_("Nothing to sell"), BY_SERVER); current_npc = 0; } break; case SMSG_NPC_BUY_RESPONSE: if (msg->readInt8() == 0) { - chatWindow->chatLog("Thanks for buying", BY_SERVER); + chatWindow->chatLog(_("Thanks for buying"), BY_SERVER); } else { // Reset player money since buy dialog already assumed purchase // would go fine buyDialog->setMoney(player_node->mGp); - chatWindow->chatLog("Unable to buy", BY_SERVER); + chatWindow->chatLog(_("Unable to buy"), BY_SERVER); } break; case SMSG_NPC_SELL_RESPONSE: if (msg->readInt8() == 0) { - chatWindow->chatLog("Thanks for selling", BY_SERVER); + chatWindow->chatLog(_("Thanks for selling"), BY_SERVER); } else { - chatWindow->chatLog("Unable to sell", BY_SERVER); + chatWindow->chatLog(_("Unable to sell"), BY_SERVER); } break; } diff --git a/src/net/chathandler.cpp b/src/net/chathandler.cpp index bf5a5a37..25877907 100644 --- a/src/net/chathandler.cpp +++ b/src/net/chathandler.cpp @@ -33,6 +33,7 @@ #include "../gui/chat.h" +#include "../utils/gettext.h" #include "../utils/tostring.h" #include "../utils/trim.h" @@ -72,10 +73,10 @@ void ChatHandler::handleMessage(MessageIn *msg) //chatWindow->chatLog("Whisper sent", BY_SERVER); break; case 0x01: - chatWindow->chatLog("Whisper could not be sent, user is offline", BY_SERVER); + chatWindow->chatLog(_("Whisper could not be sent, user is offline"), BY_SERVER); break; case 0x02: - chatWindow->chatLog("Whisper could not be sent, ignored by user", BY_SERVER); + chatWindow->chatLog(_("Whisper could not be sent, ignored by user"), BY_SERVER); break; } break; diff --git a/src/net/equipmenthandler.cpp b/src/net/equipmenthandler.cpp index 973de0f6..319d1205 100644 --- a/src/net/equipmenthandler.cpp +++ b/src/net/equipmenthandler.cpp @@ -32,6 +32,8 @@ #include "../gui/chat.h" +#include "../utils/gettext.h" + EquipmentHandler::EquipmentHandler() { static const Uint16 _messages[] = { @@ -97,7 +99,7 @@ void EquipmentHandler::handleMessage(MessageIn *msg) logger->log("Equipping: %i %i %i", index, equipPoint, type); if (!type) { - chatWindow->chatLog("Unable to equip.", BY_SERVER); + chatWindow->chatLog(_("Unable to equip."), BY_SERVER); break; } @@ -135,7 +137,7 @@ void EquipmentHandler::handleMessage(MessageIn *msg) type = msg->readInt8(); if (!type) { - chatWindow->chatLog("Unable to unequip.", BY_SERVER); + chatWindow->chatLog(_("Unable to unequip."), BY_SERVER); break; } diff --git a/src/net/inventoryhandler.cpp b/src/net/inventoryhandler.cpp index 3ce0899a..46f03e28 100644 --- a/src/net/inventoryhandler.cpp +++ b/src/net/inventoryhandler.cpp @@ -35,6 +35,8 @@ #include "../resources/iteminfo.h" +#include "../utils/gettext.h" +#include "../utils/strprintf.h" #include "../utils/tostring.h" InventoryHandler::InventoryHandler() @@ -139,13 +141,13 @@ void InventoryHandler::handleMessage(MessageIn *msg) itemType = msg->readInt8(); if (msg->readInt8() > 0) { - chatWindow->chatLog("Unable to pick up item", BY_SERVER); + chatWindow->chatLog(_("Unable to pick up item"), BY_SERVER); } else { const ItemInfo &itemInfo = ItemDB::get(itemId); const std::string amountStr = (amount > 1) ? toString(amount) : "a"; - chatWindow->chatLog("You picked up " + amountStr + " " + - itemInfo.getName(), BY_SERVER); + chatWindow->chatLog(strprintf(_("You picked up %s %s"), + amountStr.c_str(), itemInfo.getName().c_str()), BY_SERVER); if (Item *item = inventory->getItem(index)) { item->setId(itemId); @@ -182,7 +184,7 @@ void InventoryHandler::handleMessage(MessageIn *msg) amount = msg->readInt16(); if (msg->readInt8() == 0) { - chatWindow->chatLog("Failed to use item", BY_SERVER); + chatWindow->chatLog(_("Failed to use item"), BY_SERVER); } else { if (Item *item = inventory->getItem(index)) item->setQuantity(amount); diff --git a/src/net/loginhandler.cpp b/src/net/loginhandler.cpp index 6ad410ec..4f5f2acc 100644 --- a/src/net/loginhandler.cpp +++ b/src/net/loginhandler.cpp @@ -28,6 +28,8 @@ #include "../main.h" #include "../serverinfo.h" +#include "../utils/gettext.h" +#include "../utils/strprintf.h" #include "../utils/tostring.h" extern SERVER_INFO **server_info; @@ -56,16 +58,16 @@ void LoginHandler::handleMessage(MessageIn *msg) switch (code) { case 0: - errorMessage = "Authentication failed"; + errorMessage = _("Authentication failed"); break; case 1: - errorMessage = "No servers available"; + errorMessage = _("No servers available"); break; case 2: - errorMessage = "This account is already logged in"; + errorMessage = _("This account is already logged in"); break; default: - errorMessage = "Unknown connection error"; + errorMessage = _("Unknown connection error"); break; } state = ERROR_STATE; @@ -120,30 +122,34 @@ void LoginHandler::handleMessage(MessageIn *msg) switch (code) { case 0: - errorMessage = "Unregistered ID"; + errorMessage = _("Unregistered ID"); break; case 1: - errorMessage = "Wrong password"; + errorMessage = _("Wrong password"); break; case 2: - errorMessage = "Account expired"; + errorMessage = _("Account expired"); break; case 3: - errorMessage = "Rejected from server"; + errorMessage = _("Rejected from server"); break; case 4: - errorMessage = "You have been permanently banned from the game. Please contact the GM Team"; + errorMessage = _("You have been permanently banned from the" + " game. Please contact the GM Team"); break; case 6: - errorMessage = "You have been temporarily banned from the game until " - + msg->readString(20) + ".\n Please contact the GM team via the forums"; + errorMessage = strprintf(_("You have been temporarily " + "banned from the game until %s.\n" + " Please contact the GM team via " + "the forums"), + msg->readString(20).c_str()); break; case 9: - errorMessage = "This user name is already taken"; + errorMessage = _("This user name is already taken"); break; default: - errorMessage = "Unknown error"; + errorMessage = _("Unknown error"); break; } state = ERROR_STATE; diff --git a/src/net/maploginhandler.cpp b/src/net/maploginhandler.cpp index b851117e..b5192bd7 100644 --- a/src/net/maploginhandler.cpp +++ b/src/net/maploginhandler.cpp @@ -27,6 +27,8 @@ #include "../log.h" #include "../main.h" +#include "../utils/gettext.h" + MapLoginHandler::MapLoginHandler() { static const Uint16 _messages[] = { @@ -50,13 +52,13 @@ void MapLoginHandler::handleMessage(MessageIn *msg) switch (code) { case 0: - errorMessage = "Authentication failed"; + errorMessage = _("Authentication failed"); break; case 2: - errorMessage = "This account is already logged in"; + errorMessage = _("This account is already logged in"); break; default: - errorMessage = "Unknown connection error"; + errorMessage = _("Unknown connection error"); break; } state = ERROR_STATE; -- cgit v1.2.3-60-g2f50 From d4ff6679427caad730b4caee51f2ddad083cb818 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Thu, 5 Feb 2009 14:25:15 -0700 Subject: Forgot to check which key called the keyboard event for the ok or chat toggling. Signed-off-by: Ira Rice --- src/game.cpp | 37 ++++++++++++++++++++++--------------- 1 file changed, 22 insertions(+), 15 deletions(-) diff --git a/src/game.cpp b/src/game.cpp index 542c8396..28c29874 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -524,14 +524,33 @@ void Game::handleInput() weightNotice != NULL)) { // Quit by pressing Enter if the exit confirm is there - if (exitConfirm) + if (exitConfirm && + keyboard.isKeyActive(keyboard.KEY_TOGGLE_CHAT)) done = true; // Close the Browser if opened - else if (helpWindow->isVisible()) + else if (helpWindow->isVisible() && + keyboard.isKeyActive(keyboard.KEY_TOGGLE_CHAT)) helpWindow->setVisible(false); // Close the config window, cancelling changes if opened - else if (setupWindow->isVisible()) + else if (setupWindow->isVisible() && + keyboard.isKeyActive(keyboard.KEY_TOGGLE_CHAT)) setupWindow->action(gcn::ActionEvent(NULL, "cancel")); + // Submits the text and proceeds to the next dialog + else if (npcStringDialog->isVisible() && + keyboard.isKeyActive(keyboard.KEY_OK)) + npcStringDialog->action(gcn::ActionEvent(NULL, "ok")); + // Proceed to the next dialog option, or close the window + else if (npcTextDialog->isVisible() && + keyboard.isKeyActive(keyboard.KEY_OK)) + npcTextDialog->action(gcn::ActionEvent(NULL, "ok")); + // Choose the currently highlighted dialogue option + else if (npcListDialog->isVisible() && + keyboard.isKeyActive(keyboard.KEY_OK)) + npcListDialog->action(gcn::ActionEvent(NULL, "ok")); + // Submits the text and proceeds to the next dialog + else if (npcIntegerDialog->isVisible() && + keyboard.isKeyActive(keyboard.KEY_OK)) + npcIntegerDialog->action(gcn::ActionEvent(NULL, "ok")); else if (!(keyboard.getKeyValue( KeyboardConfig::KEY_TOGGLE_CHAT) == keyboard.getKeyValue( @@ -544,18 +563,6 @@ void Game::handleInput() chatWindow->requestChatFocus(); used = true; } - // Submits the text and proceeds to the next dialog - else if (npcStringDialog->isVisible()) - npcStringDialog->action(gcn::ActionEvent(NULL, "ok")); - // Proceed to the next dialog option, or close the window - else if (npcTextDialog->isVisible()) - npcTextDialog->action(gcn::ActionEvent(NULL, "ok")); - // Choose the currently highlighted dialogue option - else if (npcListDialog->isVisible()) - npcListDialog->action(gcn::ActionEvent(NULL, "ok")); - // Submits the text and proceeds to the next dialog - else if (npcIntegerDialog->isVisible()) - npcIntegerDialog->action(gcn::ActionEvent(NULL, "ok")); } } -- cgit v1.2.3-60-g2f50 From f0d6cd5a97593003fcca3c800ede409f6c55344c Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 6 Feb 2009 08:58:58 -0700 Subject: While this is not the ideal solution to the link problem, this commit at least ensures that the link will be in the correct location. Should work to fix things until a proper rewrite is figured out. Signed-off-by: Ira Rice --- src/gui/browserbox.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/gui/browserbox.cpp b/src/gui/browserbox.cpp index c51852bb..ecc22e5f 100644 --- a/src/gui/browserbox.cpp +++ b/src/gui/browserbox.cpp @@ -276,6 +276,7 @@ void BrowserBox::draw(gcn::Graphics *graphics) int x = 0, y = 0; int wrappedLines = 0; + int link = 0; TrueTypeFont *font = static_cast(getFont()); graphics->setColor(BLACK); @@ -333,6 +334,12 @@ void BrowserBox::draw(gcn::Graphics *graphics) int rgb = textColour->getColour(c, valid); if (c == '<') { + const int size = mLinks[link].x2 - mLinks[link].x1; + mLinks[link].x1 = x; + mLinks[link].y1 = y; + mLinks[link].x2 = mLinks[link].x1 + size; + mLinks[link].y2 = y + font->getHeight(); + link++; prevColor = selColor; } if (valid) -- cgit v1.2.3-60-g2f50 From b7c33d7ec26735bade5c6e8a2ff9d06586cc7d0c Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 6 Feb 2009 10:42:57 -0700 Subject: Updated strings list so that translators can update the translations. Signed-off-by: Ira Rice --- po/aethyra.pot | 28 ++++++++++++++-------------- po/ar.po | 28 ++++++++++++++-------------- po/ca.po | 28 ++++++++++++++-------------- po/cs.po | 28 ++++++++++++++-------------- po/da.po | 28 ++++++++++++++-------------- po/de.po | 28 ++++++++++++++-------------- po/en_GB.po | 28 ++++++++++++++-------------- po/eo.po | 28 ++++++++++++++-------------- po/es.po | 28 ++++++++++++++-------------- po/fi.po | 28 ++++++++++++++-------------- po/fr.po | 28 ++++++++++++++-------------- po/he.po | 28 ++++++++++++++-------------- po/hr.po | 28 ++++++++++++++-------------- po/id.po | 28 ++++++++++++++-------------- po/it.po | 28 ++++++++++++++-------------- po/ja.po | 28 ++++++++++++++-------------- po/nl.po | 28 ++++++++++++++-------------- po/pl.po | 28 ++++++++++++++-------------- po/pt.po | 28 ++++++++++++++-------------- po/pt_BR.po | 28 ++++++++++++++-------------- po/ru.po | 28 ++++++++++++++-------------- po/sk.po | 28 ++++++++++++++-------------- po/sv.po | 28 ++++++++++++++-------------- po/th.po | 28 ++++++++++++++-------------- po/zh_CN.po | 28 ++++++++++++++-------------- 25 files changed, 350 insertions(+), 350 deletions(-) diff --git a/po/aethyra.pot b/po/aethyra.pot index 46589cc6..4493bff5 100644 --- a/po/aethyra.pot +++ b/po/aethyra.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-06 10:40-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -27,7 +27,7 @@ msgstr "" msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "" @@ -893,15 +893,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -925,19 +925,19 @@ msgstr "" msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1684,23 +1684,23 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 msgid "Are you sure you want to quit?" msgstr "" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/ar.po b/po/ar.po index 67994789..438af05b 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-07-16 18:28+0000\n" "Last-Translator: صقر بن عبدالله \n" "Language-Team: Arabic \n" @@ -28,7 +28,7 @@ msgstr "شراء" msgid "Price: %d GP / Total: %d GP" msgstr "السعر: %d GP / الإجمالي: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "مغادرة" @@ -908,15 +908,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -940,20 +940,20 @@ msgstr "إيقاف" msgid "Rotate the stick" msgstr "تدوير العصا" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "حذف" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1718,24 +1718,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "هل أنت متأكّد من حذف هذه الشخصيّة؟" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/ca.po b/po/ca.po index 15966072..a6e67fba 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-07-03 17:21+0000\n" "Last-Translator: Habari \n" "Language-Team: Catalan \n" @@ -28,7 +28,7 @@ msgstr "" msgid "Price: %d GP / Total: %d GP" msgstr "preu %d GP / total %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "sortir" @@ -895,15 +895,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -927,19 +927,19 @@ msgstr "" msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1687,23 +1687,23 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 msgid "Are you sure you want to quit?" msgstr "" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/cs.po b/po/cs.po index 590d1f34..f1db339f 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-12-17 16:31+0000\n" "Last-Translator: Lubos \n" "Language-Team: Czech \n" @@ -28,7 +28,7 @@ msgstr "Nákup" msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "" @@ -903,15 +903,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -935,20 +935,20 @@ msgstr "" msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Odstranit" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1708,24 +1708,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Jste si jistí, že chcete vymazat tuto postavu?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/da.po b/po/da.po index de4e3525..d52ce0fd 100644 --- a/po/da.po +++ b/po/da.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-06 10:40-0700\n" "PO-Revision-Date: 2008-12-28 14:45+0000\n" "Last-Translator: GonzoDark AKA IchigoBlack \n" "Language-Team: Danish \n" @@ -28,7 +28,7 @@ msgstr "Køb" msgid "Price: %d GP / Total: %d GP" msgstr "Pris: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Afslut" @@ -930,16 +930,16 @@ msgstr "Farver:" msgid "Players" msgstr "Brugere" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 #, fuzzy msgid "Green: " msgstr "Til stede: " -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -963,20 +963,20 @@ msgstr "Stop" msgid "Rotate the stick" msgstr "Rotere joysticket" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "Tildel" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Standart" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "Tast Konfikt(er) Opdaget." -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "Løs problemet, ellers kan spillet risikere at opfører sig ustabilt." @@ -1753,24 +1753,24 @@ msgstr "Netværk Fejl" msgid "The connection to the server was lost, the program will now quit" msgstr "Forbindelsen til serveren er tabt, programmet vil nu lukke" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Er du sikker på at du gerne vil stoppe?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "nej" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "Ignorer indkomne handels anmodninger" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "Accepter indkomne handels anmodninger" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "Advarsel: guichan indput untagelse: %s" diff --git a/po/de.po b/po/de.po index e5cf7a96..7e1d3762 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2009-01-19 20:15+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: German\n" @@ -28,7 +28,7 @@ msgstr "Kaufen" msgid "Price: %d GP / Total: %d GP" msgstr "Preis: %d GP / Summe: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Beenden" @@ -909,15 +909,15 @@ msgstr "Schließen" msgid "Players" msgstr "Spieler" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -941,19 +941,19 @@ msgstr "Stopp" msgid "Rotate the stick" msgstr "Kreise den Steuerknüppel" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "Zuordnen" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "Standard" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1715,24 +1715,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Bist du sicher, dass du diesen Charakter löschen möchtest?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po index b728f113..a748b145 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-05-10 16:51+0000\n" "Last-Translator: Me \n" "Language-Team: English (United Kingdom) \n" @@ -28,7 +28,7 @@ msgstr "Buy" msgid "Price: %d GP / Total: %d GP" msgstr "Price: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Exit" @@ -908,15 +908,15 @@ msgstr "Colours" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -940,20 +940,20 @@ msgstr "Stop" msgid "Rotate the stick" msgstr "Rotate the stick" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Delete" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1718,24 +1718,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Are you sure you want to delete this character?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/eo.po b/po/eo.po index c8047348..f21279f8 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-11-10 22:03+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Esperanto \n" @@ -28,7 +28,7 @@ msgstr "" msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "" @@ -894,15 +894,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -926,19 +926,19 @@ msgstr "" msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1685,23 +1685,23 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 msgid "Are you sure you want to quit?" msgstr "" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/es.po b/po/es.po index 59a7442a..87507465 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-10-15 01:37+0000\n" "Last-Translator: catalania \n" "Language-Team: Spanish \n" @@ -28,7 +28,7 @@ msgstr "Comprar" msgid "Price: %d GP / Total: %d GP" msgstr "Precio: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Salir" @@ -908,15 +908,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -940,20 +940,20 @@ msgstr "Detener" msgid "Rotate the stick" msgstr "Gire el stick" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Eliminar" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1718,24 +1718,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "¿Seguro que quieres borrar este personaje?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/fi.po b/po/fi.po index 58fc324d..b5f9d80e 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-12-30 10:23+0000\n" "Last-Translator: ville-v \n" "Language-Team: Finnish \n" @@ -28,7 +28,7 @@ msgstr "Osta" msgid "Price: %d GP / Total: %d GP" msgstr "Kappalehinta: %d GP / Yhteensä: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Sulje" @@ -909,15 +909,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -941,20 +941,20 @@ msgstr "Lopeta" msgid "Rotate the stick" msgstr "Käytä ohjain ääriasennoissaan pyörittämällä" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Poista" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1719,24 +1719,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Oletko varma, että haluat poistaa tämän hahmon?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/fr.po b/po/fr.po index f1c00700..2e892886 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-12-26 10:43+0000\n" "Last-Translator: Johan Serre \n" "Language-Team: French\n" @@ -29,7 +29,7 @@ msgstr "Acheter" msgid "Price: %d GP / Total: %d GP" msgstr "Prix : %d PO / Total : %d PO" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Quitter" @@ -909,15 +909,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -941,20 +941,20 @@ msgstr "Stop" msgid "Rotate the stick" msgstr "Tourner le joystick" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Supprimer" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1723,24 +1723,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Êtes-vous certain de vouloir supprimer ce personnage ?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/he.po b/po/he.po index cf9af327..cb515b60 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-10-20 00:23+0000\n" "Last-Translator: Ddorda \n" "Language-Team: Hebrew \n" @@ -28,7 +28,7 @@ msgstr "קנה" msgid "Price: %d GP / Total: %d GP" msgstr "מחיר: %d זהב / סה\"כ %d זהב" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "יציאה" @@ -909,15 +909,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -941,20 +941,20 @@ msgstr "עצור" msgid "Rotate the stick" msgstr "סובב את המקל" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "מחק" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1719,24 +1719,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "האם אתה בטוח כי ברצונך למחוק את השחקן?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/hr.po b/po/hr.po index 952492b6..181f66e2 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-12-28 23:36+0000\n" "Last-Translator: Dino Paskvan \n" "Language-Team: Croatian \n" @@ -28,7 +28,7 @@ msgstr "Kupi" msgid "Price: %d GP / Total: %d GP" msgstr "Cijena: %d zlatnika / Ukupno: %d zlatnika" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Izlaz" @@ -901,15 +901,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -933,20 +933,20 @@ msgstr "" msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Obriši" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1704,24 +1704,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Da li ste sigurni da želite obrisati ovog lika?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/id.po b/po/id.po index b2c90547..43c1e9fc 100644 --- a/po/id.po +++ b/po/id.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-03-26 09:11+0000\n" "Last-Translator: ActiveFile \n" "Language-Team: Indonesian \n" @@ -28,7 +28,7 @@ msgstr "Beli" msgid "Price: %d GP / Total: %d GP" msgstr "Harga: %d GP / Jumlah: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Keluar" @@ -908,15 +908,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -940,20 +940,20 @@ msgstr "Berhenti" msgid "Rotate the stick" msgstr "Memutar tongkat" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Hapus" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1718,24 +1718,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Apakah anda bersungguh-sungguh ingin menghapus karakter ini?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/it.po b/po/it.po index b64401cb..3e5bf322 100644 --- a/po/it.po +++ b/po/it.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2007-12-03 01:45+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: Italian\n" @@ -30,7 +30,7 @@ msgstr "Compra" msgid "Price: %d GP / Total: %d GP" msgstr "Prezzo: %d GP / Totale: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Esci" @@ -910,15 +910,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -942,20 +942,20 @@ msgstr "Ferma" msgid "Rotate the stick" msgstr "Ruota la manopola" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Elimina" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1720,24 +1720,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Sei sicuro di voler cancellare questo personaggio?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/ja.po b/po/ja.po index dfd90392..9bbe1a7d 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-06-28 16:27+0000\n" "Last-Translator: fate \n" "Language-Team: Japanese \n" @@ -28,7 +28,7 @@ msgstr "買う" msgid "Price: %d GP / Total: %d GP" msgstr "価格: %d GP / 合計: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "終了" @@ -903,15 +903,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -935,20 +935,20 @@ msgstr "" msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "削除" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1705,24 +1705,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "このキャラは消してもいいですか?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/nl.po b/po/nl.po index 3d52dd57..acf9c36f 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2009-01-18 16:53+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: Dutch\n" @@ -28,7 +28,7 @@ msgstr "Kopen" msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Afsluiten" @@ -916,15 +916,15 @@ msgstr "Sluiten" msgid "Players" msgstr "Spelers" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -948,19 +948,19 @@ msgstr "Stoppen" msgid "Rotate the stick" msgstr "Maak rondjes met de stick" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "Toewijzen" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "Standaard" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1716,24 +1716,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Weet je zeker dat je deze personage wilt verwijderen?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/pl.po b/po/pl.po index 4c4dba5d..ce8c493e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-10-10 05:26+0000\n" "Last-Translator: Michał Trzebiatowski \n" "Language-Team: \n" @@ -30,7 +30,7 @@ msgstr "Kup" msgid "Price: %d GP / Total: %d GP" msgstr "Cena: %d GP / Razem: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Wyjdź" @@ -910,15 +910,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -942,20 +942,20 @@ msgstr "Zatrzymaj" msgid "Rotate the stick" msgstr "Obróć drążek" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Usuń" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1721,24 +1721,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Czy jesteś pewien, że chcesz usunąć tę postać?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/pt.po b/po/pt.po index db28b364..75116224 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-02-03 10:14+0000\n" "Last-Translator: Tiago Silva \n" "Language-Team: Portuguese \n" @@ -28,7 +28,7 @@ msgstr "Comprar" msgid "Price: %d GP / Total: %d GP" msgstr "Preço: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Sair" @@ -908,15 +908,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -940,20 +940,20 @@ msgstr "Parar" msgid "Rotate the stick" msgstr "Rode o manipulo" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Eliminar" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1726,24 +1726,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Tem a certeza que quer apagar este personagem" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 9e83d33d..c99e1076 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2009-01-21 20:48+0000\n" "Last-Translator: Bruno \n" "Language-Team: Brazilian Portuguese \n" @@ -28,7 +28,7 @@ msgstr "Comprar" msgid "Price: %d GP / Total: %d GP" msgstr "Preço: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Sair" @@ -922,15 +922,15 @@ msgstr "Fechar" msgid "Players" msgstr "Jogadores" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -954,19 +954,19 @@ msgstr "Parar" msgid "Rotate the stick" msgstr "Gire o bastão" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "Atribuir" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "Padrão" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "Conflitos nas teclas detectado." -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "Corrija-os, ou o jogo irá se comportar de forma estranha." @@ -1731,24 +1731,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Tem certeza que deseja excluir este personagem?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/ru.po b/po/ru.po index 6555f13f..8fce2cc6 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-01-08 11:50+0000\n" "Last-Translator: idle sign \n" "Language-Team: Russian \n" @@ -28,7 +28,7 @@ msgstr "Купить" msgid "Price: %d GP / Total: %d GP" msgstr "Стоимость: %d GP / Всегоl: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Выход" @@ -908,15 +908,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -940,20 +940,20 @@ msgstr "Стоп" msgid "Rotate the stick" msgstr "Вращайте рукоять" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Удалить" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1718,24 +1718,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Вы уверены, что хотите удалить этого персонажа?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/sk.po b/po/sk.po index 09c177ae..cdd98179 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-12-30 14:07+0000\n" "Last-Translator: TomasKovacik \n" "Language-Team: Slovak \n" @@ -28,7 +28,7 @@ msgstr "Kúpiť" msgid "Price: %d GP / Total: %d GP" msgstr "Cena: %d GP / Spolu: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Ukončiť" @@ -896,15 +896,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -928,20 +928,20 @@ msgstr "" msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Vymazať" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1693,24 +1693,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Naozaj chcete odstrániť túto postavu?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/sv.po b/po/sv.po index f364b1ae..c0d2f18c 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2009-01-29 01:20+0100\n" "Last-Translator: Kess Vargavind \n" "Language-Team: Swedish \n" @@ -28,7 +28,7 @@ msgstr "Köp" msgid "Price: %d GP / Total: %d GP" msgstr "Pris: %d GP / Totalt: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Avsluta" @@ -910,15 +910,15 @@ msgstr "" msgid "Players" msgstr "Spelare" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -942,19 +942,19 @@ msgstr "Stopp" msgid "Rotate the stick" msgstr "Rotera spaken" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "Tilldela" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "Förval" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "Samma tangent används på flera ställen." -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "Se till att använda olika tangenter, annars kan det bli konstigheter." @@ -1709,24 +1709,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Är du säker på att du vill ta bort den här karaktären?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/th.po b/po/th.po index 3781df0f..c10e234a 100644 --- a/po/th.po +++ b/po/th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2008-11-25 06:16+0000\n" "Last-Translator: Tharawut Paripaiboon \n" "Language-Team: Thai \n" @@ -28,7 +28,7 @@ msgstr "ซื้อ" msgid "Price: %d GP / Total: %d GP" msgstr "ราคา: %d GP / ทั้งหมด: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:590 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 #: ../src/keyboardconfig.cpp:99 msgid "Quit" msgstr "ออก" @@ -900,15 +900,15 @@ msgstr "" msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:52 +#: ../src/gui/setup_colours.cpp:51 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:66 +#: ../src/gui/setup_colours.cpp:65 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:80 +#: ../src/gui/setup_colours.cpp:79 msgid "Blue: " msgstr "" @@ -932,20 +932,20 @@ msgstr "" msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:87 +#: ../src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:91 +#: ../src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "ลบทิ้ง" -#: ../src/gui/setup_keyboard.cpp:120 +#: ../src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:121 +#: ../src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" @@ -1701,24 +1701,24 @@ msgstr "" msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:591 +#: ../src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "คุณแน่ใจแล้วหรือที่จะลบตัวละครนี้?" -#: ../src/game.cpp:598 +#: ../src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:727 +#: ../src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:734 +#: ../src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:770 +#: ../src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 49db6d7f..689c6a3b 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 09:19-0700\n" +"POT-Creation-Date: 2009-02-05 18:42-0700\n" "PO-Revision-Date: 2009-01-21 22:42+0800\n" "Last-Translator: Hong Hao \n" "Language-Team: Simplified Chinese Date: Fri, 6 Feb 2009 17:38:12 -0700 Subject: Sanitized item links so that at no point is the internal representation of the item link shown. This should help make it easier for people to represent the square brackets with item links, and prevent people from forging item links when they never see the internal representation of an item link. Should also reduce confusion from people who haven't upgraded their clients as well, as they wonder what all the junk is around the item name. Signed-off-by: Ira Rice --- src/gui/chat.cpp | 4 ++-- src/gui/chat.h | 2 +- src/gui/popupmenu.cpp | 21 ++++++++++----------- 3 files changed, 13 insertions(+), 14 deletions(-) diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index f4d9763b..b53552a6 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -735,10 +735,10 @@ void ChatWindow::setInputText(std::string input_str) requestChatFocus(); } -void ChatWindow::addItemText(int itemId, const std::string &item) +void ChatWindow::addItemText(const std::string &item) { std::ostringstream text; - text << "[@@" << itemId << "|" << item << "@@] "; + text << "[" << item << "] "; mChatInput->setText(mChatInput->getText() + text.str()); requestChatFocus(); } diff --git a/src/gui/chat.h b/src/gui/chat.h index 872c0041..2fadb014 100644 --- a/src/gui/chat.h +++ b/src/gui/chat.h @@ -179,7 +179,7 @@ class ChatWindow : public Window, public gcn::ActionListener, void setInputText(std::string input_str); /** Called to add item to chat */ - void addItemText(int itemid, const std::string &item); + void addItemText(const std::string &item); /** Override to reset mTmpVisible */ void setVisible(bool visible); diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp index cf6a7188..6c0e6ad6 100644 --- a/src/gui/popupmenu.cpp +++ b/src/gui/popupmenu.cpp @@ -75,27 +75,27 @@ void PopupMenu::showPopup(int x, int y, Being *being) // Players can be traded with. Later also attack, follow and // add as buddy will be options in this menu. const std::string &name = mBeing->getName(); - mBrowserBox->addRow(_("@@trade|Trade With ") + name + "@@"); - mBrowserBox->addRow(_("@@attack|Attack ") + name + "@@"); + mBrowserBox->addRow(strprintf(_("@@trade|Trade With %s@@"), name.c_str())); + mBrowserBox->addRow(strprintf(_("@@attack|Attack %s@@"), name.c_str())); mBrowserBox->addRow("##3---"); switch (player_relations.getRelation(name)) { case PlayerRelation::NEUTRAL: - mBrowserBox->addRow(_("@@friend|Befriend ") + name + "@@"); + mBrowserBox->addRow(strprintf(_("@@friend|Befriend %s@@"), name.c_str())); case PlayerRelation::FRIEND: - mBrowserBox->addRow(_("@@disregard|Disregard ") + name + "@@"); - mBrowserBox->addRow(_("@@ignore|Ignore ") + name + "@@"); + mBrowserBox->addRow(strprintf(_("@@disregard|Disregard %s@@"), name.c_str())); + mBrowserBox->addRow(strprintf(_("@@ignore|Ignore %s@@"), name.c_str())); break; case PlayerRelation::DISREGARDED: - mBrowserBox->addRow(_("@@unignore|Un-Ignore ") + name + "@@"); - mBrowserBox->addRow(_("@@ignore|Completely ignore ") + name + "@@"); + mBrowserBox->addRow(strprintf(_("@@unignore|Un-Ignore %s@@"), name.c_str())); + mBrowserBox->addRow(strprintf(_("@@ignore|Completely ignore %s@@"), name.c_str())); break; case PlayerRelation::IGNORED: - mBrowserBox->addRow(_("@@unignore|Un-Ignore ") + name + "@@"); + mBrowserBox->addRow(strprintf(_("@@unignore|Un-Ignore %s@@"), name.c_str())); break; } @@ -103,8 +103,7 @@ void PopupMenu::showPopup(int x, int y, Being *being) //mBrowserBox->addRow(_("@@buddy|Add ") + name + " to Buddy List@@"); mBrowserBox->addRow("##3---"); - mBrowserBox->addRow(_("@@party-invite|Invite ") + name + - " to party@@"); + mBrowserBox->addRow(strprintf(_("@@party-invite|Invite %s to party@@"), name.c_str())); } break; @@ -247,7 +246,7 @@ void PopupMenu::handleLink(const std::string& link) else if (link == "chat") { - chatWindow->addItemText(mItem->getId(), mItem->getInfo().getName()); + chatWindow->addItemText(mItem->getInfo().getName()); } else if (link == "drop") -- cgit v1.2.3-60-g2f50 From 876f55d0624008a87f0ee6cc2e40895a4fe9f90b Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Fri, 6 Feb 2009 21:52:19 -0700 Subject: Fixed the help function so that the help commands on help commands would work. Signed-off-by: Ira Rice --- src/gui/chat.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index b53552a6..067c9e08 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -434,7 +434,6 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) } else if (command == "help") { - msg.erase(0, 6); trim(msg); std::size_t space = msg.find(" "); std::string msg1; -- cgit v1.2.3-60-g2f50 From 074ca287804a56f776d641826b1ecfc1454b6c72 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Sat, 7 Feb 2009 10:05:16 -0700 Subject: Small tweak to item popup locations based on some feedback that they were a tad too close to the mouse. Signed-off-by: Ira Rice --- src/gui/itempopup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/itempopup.cpp b/src/gui/itempopup.cpp index 8651ede6..b7e015a4 100644 --- a/src/gui/itempopup.cpp +++ b/src/gui/itempopup.cpp @@ -206,10 +206,10 @@ void ItemPopup::view(int x, int y) { if (windowContainer->getWidth() < (x + getWidth() + 5)) x = windowContainer->getWidth() - getWidth(); - if ((y - getHeight() - 5) < 0) + if ((y - getHeight() - 10) < 0) y = 0; else - y = y - getHeight() - 5; + y = y - getHeight() - 10; setPosition(x, y); setVisible(true); requestMoveToTop(); -- cgit v1.2.3-60-g2f50 From 1b8c088a48822641b53c2a304372471a128c2841 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Sat, 7 Feb 2009 12:18:52 -0700 Subject: Added a text color preview to the setup color tab. Signed-off-by: Ira Rice --- src/gui/browserbox.cpp | 4 ++-- src/gui/browserbox.h | 2 +- src/gui/chat.cpp | 2 -- src/gui/colour.cpp | 9 ++++++++ src/gui/colour.h | 6 ++++++ src/gui/scrollarea.cpp | 15 ++++++++------ src/gui/scrollarea.h | 4 ++-- src/gui/setup_colours.cpp | 52 +++++++++++++++++++++++++++++++++++++---------- src/gui/setup_colours.h | 16 ++++++++------- 9 files changed, 79 insertions(+), 31 deletions(-) diff --git a/src/gui/browserbox.cpp b/src/gui/browserbox.cpp index ecc22e5f..5895d557 100644 --- a/src/gui/browserbox.cpp +++ b/src/gui/browserbox.cpp @@ -28,10 +28,10 @@ #include "linkhandler.h" #include "truetypefont.h" -BrowserBox::BrowserBox(unsigned int mode): +BrowserBox::BrowserBox(unsigned int mode, bool opaque): gcn::Widget(), mMode(mode), mHighMode(UNDERLINE | BACKGROUND), - mOpaque(true), + mOpaque(opaque), mUseLinksAndUserColors(true), mSelectedLink(-1), mMaxRows(0) diff --git a/src/gui/browserbox.h b/src/gui/browserbox.h index 15c2ab89..5dde402e 100644 --- a/src/gui/browserbox.h +++ b/src/gui/browserbox.h @@ -46,7 +46,7 @@ class BrowserBox : public gcn::Widget, public gcn::MouseListener /** * Constructor. */ - BrowserBox(unsigned int mode = AUTO_SIZE); + BrowserBox(unsigned int mode = AUTO_SIZE, bool opaque = true); /** * Destructor. diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 067c9e08..2363fc50 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -71,8 +71,6 @@ Window(""), mNetwork(network), mTmpVisible(false) mTextOutput->setLinkHandler(mItemLinkHandler); mScrollArea = new ScrollArea(mTextOutput); - mScrollArea->setPosition(mScrollArea->getFrameSize(), - mScrollArea->getFrameSize()); mScrollArea->setScrollPolicy(gcn::ScrollArea::SHOW_NEVER, gcn::ScrollArea::SHOW_ALWAYS); mScrollArea->setScrollAmount(0, 1); diff --git a/src/gui/colour.cpp b/src/gui/colour.cpp index 58d9d1c6..c4505c2f 100644 --- a/src/gui/colour.cpp +++ b/src/gui/colour.cpp @@ -93,6 +93,15 @@ std::string Colour::getElementAt(int i) return mColVector[i].text; } +char Colour::getColourCharAt(int i) +{ + if (i < 0 || i >= getNumberOfElements()) + { + return 'C'; + } + return mColVector[i].ch; +} + void Colour::addColour(const char c, const int rgb, const std::string &text) { int trueRgb = config.getValue("Colour" + text, rgb); diff --git a/src/gui/colour.h b/src/gui/colour.h index 1648e1e8..d0349b7d 100644 --- a/src/gui/colour.h +++ b/src/gui/colour.h @@ -87,6 +87,12 @@ class Colour : public gcn::ListModel */ int getColourAt(int i); + /** + * Get the character used by the colour for the element at index i in + * the current colour model + */ + char getColourCharAt(int i); + /** * Set the colour for the element at index i */ diff --git a/src/gui/scrollarea.cpp b/src/gui/scrollarea.cpp index e69b681c..09f7c5e7 100644 --- a/src/gui/scrollarea.cpp +++ b/src/gui/scrollarea.cpp @@ -35,15 +35,17 @@ ImageRect ScrollArea::background; ImageRect ScrollArea::vMarker; Image *ScrollArea::buttons[4][2]; -ScrollArea::ScrollArea(bool gc): +ScrollArea::ScrollArea(bool gc, bool opaque): gcn::ScrollArea(), + mOpaque(opaque), mGC(gc) { init(); } -ScrollArea::ScrollArea(gcn::Widget *widget, bool gc): +ScrollArea::ScrollArea(gcn::Widget *widget, bool gc, bool opaque): gcn::ScrollArea(widget), + mOpaque(opaque), mGC(gc) { init(); @@ -52,9 +54,8 @@ ScrollArea::ScrollArea(gcn::Widget *widget, bool gc): ScrollArea::~ScrollArea() { // Garbage collection - if (mGC) { + if (mGC) delete getContent(); - } instances--; @@ -88,8 +89,10 @@ void ScrollArea::init() const int bggridy[4] = {0, 3, 28, 31}; int a = 0, x, y; - for (y = 0; y < 3; y++) { - for (x = 0; x < 3; x++) { + for (y = 0; y < 3; y++) + { + for (x = 0; x < 3; x++) + { background.grid[a] = textbox->getSubImage( bggridx[x], bggridy[y], bggridx[x + 1] - bggridx[x] + 1, diff --git a/src/gui/scrollarea.h b/src/gui/scrollarea.h index ccc1e178..33ebc692 100644 --- a/src/gui/scrollarea.h +++ b/src/gui/scrollarea.h @@ -38,12 +38,12 @@ class ScrollArea : public gcn::ScrollArea /** * Constructor. */ - ScrollArea(bool gc = true); + ScrollArea(bool gc = true, bool opaque = true); /** * Constructor. */ - ScrollArea(gcn::Widget *content, bool gc = true); + ScrollArea(gcn::Widget *content, bool gc = true, bool opaque = true); /** * Destructor. diff --git a/src/gui/setup_colours.cpp b/src/gui/setup_colours.cpp index d0ab426a..acc28b1f 100644 --- a/src/gui/setup_colours.cpp +++ b/src/gui/setup_colours.cpp @@ -19,11 +19,15 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#include + #include #include #include +#include "browserbox.h" #include "colour.h" +#include "itemlinkhandler.h" #include "listbox.h" #include "scrollarea.h" #include "setup_colours.h" @@ -35,6 +39,7 @@ #include "../configuration.h" #include "../utils/gettext.h" +#include "../utils/tostring.h" Setup_Colours::Setup_Colours() : mSelected(-1) @@ -48,6 +53,18 @@ Setup_Colours::Setup_Colours() : mScroll = new ScrollArea(mColourBox); mScroll->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); + mPreview = new BrowserBox(BrowserBox::AUTO_WRAP); + mPreview->setOpaque(false); + + // Replace this later with a more appropriate link handler. For now, this'll + // do, as it'll do nothing when clicked on. + mPreview->setLinkHandler(new ItemLinkHandler()); + + mPreviewBox = new ScrollArea(mPreview); + mPreviewBox->setHeight(20); + mPreviewBox->setScrollPolicy(gcn::ScrollArea::SHOW_NEVER, + gcn::ScrollArea::SHOW_NEVER); + mRedLabel = new gcn::Label(_("Red: ")); mRedText = new TextField(); @@ -96,16 +113,17 @@ Setup_Colours::Setup_Colours() : LayoutHelper h(this); ContainerPlacer place = h.getPlacer(0, 0); - place(0, 0, mScroll, 4, 3).setPadding(2); - place(0, 3, mRedLabel, 2); - place(2, 3, mRedSlider); - place(3, 3, mRedText).setPadding(1); - place(0, 4, mGreenLabel, 2); - place(2, 4, mGreenSlider); - place(3, 4, mGreenText).setPadding(1); - place(0, 5, mBlueLabel, 2); - place(2, 5, mBlueSlider); - place(3, 5, mBlueText).setPadding(1); + place(0, 0, mScroll, 4, 7).setPadding(2); + place(0, 7, mPreviewBox, 4).setPadding(2); + place(0, 8, mRedLabel, 2); + place(2, 8, mRedSlider); + place(3, 8, mRedText).setPadding(1); + place(0, 9, mGreenLabel, 2); + place(2, 9, mGreenSlider); + place(3, 9, mGreenText).setPadding(1); + place(0, 10, mBlueLabel, 2); + place(2, 10, mBlueSlider); + place(3, 10, mBlueText).setPadding(1); setDimension(gcn::Rectangle(0, 0, 290, 250)); } @@ -133,6 +151,18 @@ void Setup_Colours::action(const gcn::ActionEvent &event) { mSelected = mColourBox->getSelected(); int col = textColour->getColourAt(mSelected); + char ch = textColour->getColourCharAt(mSelected); + std::string msg; + + if (ch == '<') + msg = toString("@@|") + + _("This is what the color looks like") + "@@"; + else + msg = "##" + toString(ch) + + _("This is what the color looks like"); + + mPreview->clearRows(); + mPreview->addRow(msg); setEntry(mRedSlider, mRedText, col >> 16); setEntry(mGreenSlider, mGreenText, (col >> 8) & 0xff); setEntry(mBlueSlider, mBlueText, col & 0xff); @@ -167,7 +197,7 @@ void Setup_Colours::action(const gcn::ActionEvent &event) } } -void Setup_Colours::setEntry(Slider *s, TextField *t, int value) +void Setup_Colours::setEntry(gcn::Slider *s, TextField *t, int value) { s->setValue(value); char buffer[100]; diff --git a/src/gui/setup_colours.h b/src/gui/setup_colours.h index f7984dd5..f56daa60 100644 --- a/src/gui/setup_colours.h +++ b/src/gui/setup_colours.h @@ -29,13 +29,13 @@ #include #include -#include "scrollarea.h" #include "setuptab.h" -#include "slider.h" #include "textfield.h" #include "../guichanfwd.h" +class BrowserBox; + class Setup_Colours : public SetupTab, public gcn::ActionListener, public TextFieldListener { @@ -49,25 +49,27 @@ class Setup_Colours : public SetupTab, public gcn::ActionListener, void listen(const TextField *tf); private: gcn::ListBox *mColourBox; - ScrollArea *mScroll; + gcn::ScrollArea *mScroll; + BrowserBox *mPreview; + gcn::ScrollArea *mPreviewBox; int mSelected; gcn::Label *mRedLabel; - Slider *mRedSlider; + gcn::Slider *mRedSlider; TextField *mRedText; int mRedValue; gcn::Label *mGreenLabel; - Slider *mGreenSlider; + gcn::Slider *mGreenSlider; TextField *mGreenText; int mGreenValue; gcn::Label *mBlueLabel; - Slider *mBlueSlider; + gcn::Slider *mBlueSlider; TextField *mBlueText; int mBlueValue; - void setEntry(Slider *s, TextField *t, int value); + void setEntry(gcn::Slider *s, TextField *t, int value); void updateColour(); }; #endif -- cgit v1.2.3-60-g2f50 From 53db43c9fd37c642bae49138b2e05a1de81ad1a7 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Sat, 7 Feb 2009 12:19:37 -0700 Subject: Removed some debug statements, as requested by KageJittai. Signed-off-by: Ira Rice --- src/effectmanager.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/effectmanager.cpp b/src/effectmanager.cpp index cf77de37..63796f73 100644 --- a/src/effectmanager.cpp +++ b/src/effectmanager.cpp @@ -69,7 +69,6 @@ bool EffectManager::trigger(int id, Being* being) { if ((*i).id == id) { - printf("Found effect, playing it"); rValue = true; if((*i).GFX != "") { @@ -92,7 +91,6 @@ bool EffectManager::trigger(int id, int x, int y) { if ((*i).id == id) { - printf("Found effect, playing it"); rValue = true; if((*i).GFX != "") particleEngine->addEffect((*i).GFX, x, y); -- cgit v1.2.3-60-g2f50 From fda9224156f68587c328ef80c74b6a765b3cb725 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Sat, 7 Feb 2009 13:30:02 -0700 Subject: Adjusted the status window to try to make it a little more translation friendly (Omphalia was reporting that the Total label was getting cut off in the German translation) Signed-off-by: Ira Rice --- src/gui/status.cpp | 46 +++++++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 21 deletions(-) diff --git a/src/gui/status.cpp b/src/gui/status.cpp index 8b760427..67a1e5d9 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -71,6 +71,8 @@ StatusWindow::StatusWindow(LocalPlayer *player): gcn::Label *mStatsTitleLabel = new gcn::Label(_("Stats")); gcn::Label *mStatsTotalLabel = new gcn::Label(_("Total")); gcn::Label *mStatsCostLabel = new gcn::Label(_("Cost")); + mStatsTotalLabel->setAlignment(gcn::Graphics::CENTER); + mStatsCostLabel->setAlignment(gcn::Graphics::CENTER); // Derived Stats mStatsAttackLabel = new gcn::Label(_("Attack:")); @@ -92,9 +94,11 @@ StatusWindow::StatusWindow(LocalPlayer *player): // New labels for (int i = 0; i < 6; i++) { - mStatsLabel[i] = new gcn::Label; + mStatsLabel[i] = new gcn::Label("0"); + mStatsLabel[i]->setAlignment(gcn::Graphics::CENTER); mStatsDisplayLabel[i] = new gcn::Label; mPointsLabel[i] = new gcn::Label("0"); + mPointsLabel[i]->setAlignment(gcn::Graphics::CENTER); } mRemainingStatsPointsLabel = new gcn::Label; @@ -123,30 +127,30 @@ StatusWindow::StatusWindow(LocalPlayer *player): place(7, 2, mJobBar, 3); place.getCell().matchColWidth(0, 1); place = getPlacer(0, 3); - place(0, 0, mStatsTitleLabel, 3); - place(4, 1, mStatsTotalLabel, 2); - place(7, 1, mStatsCostLabel, 2); + place(0, 0, mStatsTitleLabel, 5); + place(4, 1, mStatsTotalLabel, 5); + place(10, 1, mStatsCostLabel, 5); for(int i = 0; i < 6; i++) { place(0, 2 + i, mStatsLabel[i], 3).setPadding(5); - place(4, 2 + i, mStatsDisplayLabel[i]).setPadding(5); - place(6, 2 + i, mStatsButton[i]); - place(7, 2 + i, mPointsLabel[i]).setPadding(5); + place(6, 2 + i, mStatsDisplayLabel[i]).setPadding(5); + place(9, 2 + i, mStatsButton[i]); + place(12, 2 + i, mPointsLabel[i]).setPadding(5); } - place(10, 2, mStatsAttackLabel, 3).setPadding(5); - place(10, 3, mStatsDefenseLabel, 3).setPadding(5); - place(10, 4, mStatsMagicAttackLabel, 3).setPadding(5); - place(10, 5, mStatsMagicDefenseLabel, 3).setPadding(5); - place(10, 6, mStatsAccuracyLabel, 3).setPadding(5); - place(10, 7, mStatsEvadeLabel, 3).setPadding(5); - place(10, 8, mStatsReflexLabel, 3).setPadding(5); - place(13, 2, mStatsAttackPoints, 3).setPadding(5); - place(13, 3, mStatsDefensePoints, 3).setPadding(5); - place(13, 4, mStatsMagicAttackPoints, 3).setPadding(5); - place(13, 5, mStatsMagicDefensePoints, 3).setPadding(5); - place(13, 6, mStatsAccuracyPoints, 3).setPadding(5); - place(13, 7, mStatsEvadePoints, 3).setPadding(5); - place(13, 8, mStatsReflexPoints, 3).setPadding(5); + place(15, 2, mStatsAttackLabel, 5).setPadding(5); + place(15, 3, mStatsDefenseLabel, 5).setPadding(5); + place(15, 4, mStatsMagicAttackLabel, 5).setPadding(5); + place(15, 5, mStatsMagicDefenseLabel, 5).setPadding(5); + place(15, 6, mStatsAccuracyLabel, 5).setPadding(5); + place(15, 7, mStatsEvadeLabel, 5).setPadding(5); + place(15, 8, mStatsReflexLabel, 5).setPadding(5); + place(20, 2, mStatsAttackPoints, 3).setPadding(5); + place(20, 3, mStatsDefensePoints, 3).setPadding(5); + place(20, 4, mStatsMagicAttackPoints, 3).setPadding(5); + place(20, 5, mStatsMagicDefensePoints, 3).setPadding(5); + place(20, 6, mStatsAccuracyPoints, 3).setPadding(5); + place(20, 7, mStatsEvadePoints, 3).setPadding(5); + place(20, 8, mStatsReflexPoints, 3).setPadding(5); place(0, 8, mRemainingStatsPointsLabel, 3).setPadding(5); Layout &layout = getLayout(); -- cgit v1.2.3-60-g2f50 From df49049a3951421c39340a8ca4b8dba18056daf0 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Sat, 7 Feb 2009 13:56:23 -0700 Subject: More modifications based on critiques by Omphalia. Signed-off-by: Ira Rice --- src/gui/status.cpp | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/gui/status.cpp b/src/gui/status.cpp index 67a1e5d9..f808eadf 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -72,7 +72,6 @@ StatusWindow::StatusWindow(LocalPlayer *player): gcn::Label *mStatsTotalLabel = new gcn::Label(_("Total")); gcn::Label *mStatsCostLabel = new gcn::Label(_("Cost")); mStatsTotalLabel->setAlignment(gcn::Graphics::CENTER); - mStatsCostLabel->setAlignment(gcn::Graphics::CENTER); // Derived Stats mStatsAttackLabel = new gcn::Label(_("Attack:")); @@ -129,21 +128,21 @@ StatusWindow::StatusWindow(LocalPlayer *player): place = getPlacer(0, 3); place(0, 0, mStatsTitleLabel, 5); place(4, 1, mStatsTotalLabel, 5); - place(10, 1, mStatsCostLabel, 5); + place(11, 1, mStatsCostLabel, 5); for(int i = 0; i < 6; i++) { place(0, 2 + i, mStatsLabel[i], 3).setPadding(5); place(6, 2 + i, mStatsDisplayLabel[i]).setPadding(5); place(9, 2 + i, mStatsButton[i]); - place(12, 2 + i, mPointsLabel[i]).setPadding(5); + place(11, 2 + i, mPointsLabel[i]).setPadding(5); } - place(15, 2, mStatsAttackLabel, 5).setPadding(5); - place(15, 3, mStatsDefenseLabel, 5).setPadding(5); - place(15, 4, mStatsMagicAttackLabel, 5).setPadding(5); - place(15, 5, mStatsMagicDefenseLabel, 5).setPadding(5); - place(15, 6, mStatsAccuracyLabel, 5).setPadding(5); - place(15, 7, mStatsEvadeLabel, 5).setPadding(5); - place(15, 8, mStatsReflexLabel, 5).setPadding(5); + place(13, 2, mStatsAttackLabel, 7).setPadding(5); + place(13, 3, mStatsDefenseLabel, 7).setPadding(5); + place(13, 4, mStatsMagicAttackLabel, 7).setPadding(5); + place(13, 5, mStatsMagicDefenseLabel, 7).setPadding(5); + place(13, 6, mStatsAccuracyLabel, 7).setPadding(5); + place(13, 7, mStatsEvadeLabel, 7).setPadding(5); + place(13, 8, mStatsReflexLabel, 7).setPadding(5); place(20, 2, mStatsAttackPoints, 3).setPadding(5); place(20, 3, mStatsDefensePoints, 3).setPadding(5); place(20, 4, mStatsMagicAttackPoints, 3).setPadding(5); -- cgit v1.2.3-60-g2f50 From e973dd25b1181ddb554a56888c3c361f131b4b3a Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Sat, 7 Feb 2009 14:02:37 -0700 Subject: Added a bit more spacing for stat labels as well, which I didn't think about in the last commit. They may work for each of the languages already tested, but this will make sure that it's wide enough for the ones which haven't been tested. Signed-off-by: Ira Rice --- src/gui/status.cpp | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/src/gui/status.cpp b/src/gui/status.cpp index f808eadf..e0e43b36 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -127,29 +127,29 @@ StatusWindow::StatusWindow(LocalPlayer *player): place.getCell().matchColWidth(0, 1); place = getPlacer(0, 3); place(0, 0, mStatsTitleLabel, 5); - place(4, 1, mStatsTotalLabel, 5); - place(11, 1, mStatsCostLabel, 5); + place(5, 1, mStatsTotalLabel, 5); + place(12, 1, mStatsCostLabel, 5); for(int i = 0; i < 6; i++) { - place(0, 2 + i, mStatsLabel[i], 3).setPadding(5); - place(6, 2 + i, mStatsDisplayLabel[i]).setPadding(5); - place(9, 2 + i, mStatsButton[i]); - place(11, 2 + i, mPointsLabel[i]).setPadding(5); + place(0, 2 + i, mStatsLabel[i], 7).setPadding(5); + place(7, 2 + i, mStatsDisplayLabel[i]).setPadding(5); + place(10, 2 + i, mStatsButton[i]); + place(12, 2 + i, mPointsLabel[i]).setPadding(5); } - place(13, 2, mStatsAttackLabel, 7).setPadding(5); - place(13, 3, mStatsDefenseLabel, 7).setPadding(5); - place(13, 4, mStatsMagicAttackLabel, 7).setPadding(5); - place(13, 5, mStatsMagicDefenseLabel, 7).setPadding(5); - place(13, 6, mStatsAccuracyLabel, 7).setPadding(5); - place(13, 7, mStatsEvadeLabel, 7).setPadding(5); - place(13, 8, mStatsReflexLabel, 7).setPadding(5); - place(20, 2, mStatsAttackPoints, 3).setPadding(5); - place(20, 3, mStatsDefensePoints, 3).setPadding(5); - place(20, 4, mStatsMagicAttackPoints, 3).setPadding(5); - place(20, 5, mStatsMagicDefensePoints, 3).setPadding(5); - place(20, 6, mStatsAccuracyPoints, 3).setPadding(5); - place(20, 7, mStatsEvadePoints, 3).setPadding(5); - place(20, 8, mStatsReflexPoints, 3).setPadding(5); + place(14, 2, mStatsAttackLabel, 7).setPadding(5); + place(14, 3, mStatsDefenseLabel, 7).setPadding(5); + place(14, 4, mStatsMagicAttackLabel, 7).setPadding(5); + place(14, 5, mStatsMagicDefenseLabel, 7).setPadding(5); + place(14, 6, mStatsAccuracyLabel, 7).setPadding(5); + place(14, 7, mStatsEvadeLabel, 7).setPadding(5); + place(14, 8, mStatsReflexLabel, 7).setPadding(5); + place(21, 2, mStatsAttackPoints, 3).setPadding(5); + place(21, 3, mStatsDefensePoints, 3).setPadding(5); + place(21, 4, mStatsMagicAttackPoints, 3).setPadding(5); + place(21, 5, mStatsMagicDefensePoints, 3).setPadding(5); + place(21, 6, mStatsAccuracyPoints, 3).setPadding(5); + place(21, 7, mStatsEvadePoints, 3).setPadding(5); + place(21, 8, mStatsReflexPoints, 3).setPadding(5); place(0, 8, mRemainingStatsPointsLabel, 3).setPadding(5); Layout &layout = getLayout(); -- cgit v1.2.3-60-g2f50 From c42eba00701f28b3cf720d90c73d1cfc6c3815da Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Sat, 7 Feb 2009 15:09:11 -0700 Subject: Adjusted the shortcut window initialization so that all new shortcut window instances don't overlap by default. After that, it'll defer to the user's saved window positions. Signed-off-by: Ira Rice --- src/gui/shortcutwindow.cpp | 13 +++++++++---- src/gui/shortcutwindow.h | 2 ++ 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/gui/shortcutwindow.cpp b/src/gui/shortcutwindow.cpp index 91b33b72..dd8634f7 100644 --- a/src/gui/shortcutwindow.cpp +++ b/src/gui/shortcutwindow.cpp @@ -27,6 +27,8 @@ static const int SCROLL_PADDING = 0; +int ShortcutWindow::mInstances = 1; + ShortcutWindow::ShortcutWindow(const char *title, ShortcutContainer *content) { setWindowName(title); @@ -46,16 +48,19 @@ ShortcutWindow::ShortcutWindow(const char *title, ShortcutContainer *content) const int width = (int) config.getValue("screenwidth", 800); const int height = (int) config.getValue("screenheight", 600); - setDefaultSize(width - mItems->getBoxWidth() - border, - height - (mItems->getBoxHeight() * mItems->getMaxItems()) - - border, mItems->getBoxWidth() + border, - (mItems->getBoxHeight() * mItems->getMaxItems()) + border); + setDefaultSize(width - (mInstances * mItems->getBoxWidth()) - + (mInstances * border), height - (mItems->getBoxHeight() * + mItems->getMaxItems()) - border, mItems->getBoxWidth() + + border, (mItems->getBoxHeight() * mItems->getMaxItems()) + + border); mScrollArea = new ScrollArea(mItems); mScrollArea->setPosition(SCROLL_PADDING, SCROLL_PADDING); mScrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); mScrollArea->setOpaque(false); + mInstances++; + add(mScrollArea); loadWindowState(); diff --git a/src/gui/shortcutwindow.h b/src/gui/shortcutwindow.h index 2711ced5..64592328 100644 --- a/src/gui/shortcutwindow.h +++ b/src/gui/shortcutwindow.h @@ -55,6 +55,8 @@ class ShortcutWindow : public Window ShortcutContainer *mItems; ScrollArea *mScrollArea; + + static int mInstances; }; extern ShortcutWindow *itemShortcutWindow; -- cgit v1.2.3-60-g2f50 From 472494898ee15e92f16ea5f5667c11b6f46b0057 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Sat, 7 Feb 2009 15:21:33 -0700 Subject: While this commit isn't really needed, this cleans up the reported instances number so that it accurately reflects the number of instances, instead of always being +1. I wasn't intending on using that variable that way, but in case anyone does in the future, it'll at least be accurate. Signed-off-by: Ira Rice --- src/gui/shortcutwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/shortcutwindow.cpp b/src/gui/shortcutwindow.cpp index dd8634f7..5d49a3c6 100644 --- a/src/gui/shortcutwindow.cpp +++ b/src/gui/shortcutwindow.cpp @@ -27,7 +27,7 @@ static const int SCROLL_PADDING = 0; -int ShortcutWindow::mInstances = 1; +int ShortcutWindow::mInstances = 0; ShortcutWindow::ShortcutWindow(const char *title, ShortcutContainer *content) { @@ -39,6 +39,8 @@ ShortcutWindow::ShortcutWindow(const char *title, ShortcutContainer *content) mItems = content; + mInstances++; + const int border = SCROLL_PADDING * 2 + getPadding() * 2; setMinWidth(mItems->getBoxWidth() + border); setMinHeight(mItems->getBoxHeight() + border); @@ -59,8 +61,6 @@ ShortcutWindow::ShortcutWindow(const char *title, ShortcutContainer *content) mScrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); mScrollArea->setOpaque(false); - mInstances++; - add(mScrollArea); loadWindowState(); -- cgit v1.2.3-60-g2f50 From 303609031d8b70f0b20002b28e2de450e0ad7fb7 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Sat, 7 Feb 2009 16:09:54 -0700 Subject: Synced up the po files for the benefit of translators. There will likely be no more string changes before the next version release, which is why I'm updating it now. Signed-off-by: Ira Rice --- po/aethyra.pot | 1161 +++++++++++++++++++++++++++---------------------------- po/ar.po | 1163 +++++++++++++++++++++++++++---------------------------- po/ca.po | 1159 +++++++++++++++++++++++++++---------------------------- po/cs.po | 1161 +++++++++++++++++++++++++++---------------------------- po/da.po | 1161 +++++++++++++++++++++++++++---------------------------- po/de.po | 1171 +++++++++++++++++++++++++++---------------------------- po/en_GB.po | 1163 +++++++++++++++++++++++++++---------------------------- po/eo.po | 1159 +++++++++++++++++++++++++++---------------------------- po/es.po | 1163 +++++++++++++++++++++++++++---------------------------- po/fi.po | 1171 +++++++++++++++++++++++++++---------------------------- po/fr.po | 1171 +++++++++++++++++++++++++++---------------------------- po/he.po | 1171 +++++++++++++++++++++++++++---------------------------- po/hr.po | 1161 +++++++++++++++++++++++++++---------------------------- po/id.po | 1163 +++++++++++++++++++++++++++---------------------------- po/it.po | 1163 +++++++++++++++++++++++++++---------------------------- po/ja.po | 1160 +++++++++++++++++++++++++++---------------------------- po/nl.po | 1163 +++++++++++++++++++++++++++---------------------------- po/pl.po | 1163 +++++++++++++++++++++++++++---------------------------- po/pt.po | 1163 +++++++++++++++++++++++++++---------------------------- po/pt_BR.po | 1172 +++++++++++++++++++++++++++----------------------------- po/ru.po | 1163 +++++++++++++++++++++++++++---------------------------- po/sk.po | 1159 +++++++++++++++++++++++++++---------------------------- po/sv.po | 1163 +++++++++++++++++++++++++++---------------------------- po/th.po | 1159 +++++++++++++++++++++++++++---------------------------- po/zh_CN.po | 1164 +++++++++++++++++++++++++++---------------------------- 25 files changed, 14124 insertions(+), 14966 deletions(-) diff --git a/po/aethyra.pot b/po/aethyra.pot index 4493bff5..e21fcec0 100644 --- a/po/aethyra.pot +++ b/po/aethyra.pot @@ -1,5 +1,5 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Copyright (C) YEAR The Mana World Development Team # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-06 10:40-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,2166 +16,2135 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 msgid "Select Server" msgstr "" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 msgid "Chat" msgstr "" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 msgid "Highlight" msgstr "" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 msgid "Party" msgstr "" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 msgid "Server" msgstr "" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "" -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "" -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "" -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 msgid "Reset" msgstr "" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, c-format +msgid "@@trade|Trade With %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:79 -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, c-format +msgid "@@attack|Attack %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " +#: src/gui/popupmenu.cpp:106 +#, c-format +msgid "@@party-invite|Invite %s to party@@" msgstr "" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 msgid "Recorder" msgstr "" -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 msgid "Already recording." msgstr "" -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 msgid "Recording..." msgstr "" -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "" -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 msgid "Name" msgstr "" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "fullscreen" msgstr "" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "" -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "" -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 msgid "use" msgstr "" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, c-format msgid "Job: %d" msgstr "" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, c-format msgid "Money: %d GP" msgstr "" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 msgid "Job:" msgstr "" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 msgid "Stats" msgstr "" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 msgid "Strength" msgstr "" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 msgid "Agility" msgstr "" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 msgid "Vitality" msgstr "" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 msgid "Intelligence" msgstr "" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 msgid "Dexterity" msgstr "" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 msgid " cancelled" msgstr "" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 msgid "Are you sure you want to quit?" msgstr "" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 msgid "Attack" msgstr "" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 msgid "Stop Attack" msgstr "" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 msgid "Hide Windows" msgstr "" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 msgid "Sit" msgstr "" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, c-format msgid "Item Shortcut %d" msgstr "" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 msgid "Help Window" msgstr "" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 msgid "Status Window" msgstr "" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 msgid "Inventory Window" msgstr "" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 msgid "Equipment WIndow" msgstr "" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 msgid "Chat Window" msgstr "" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 msgid "Setup Window" msgstr "" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 msgid "Debug Window" msgstr "" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 msgid "Emote Window" msgstr "" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, c-format msgid "Emote Shortcut %d" msgstr "" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 msgid "Select OK" msgstr "" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 msgid "Trying to connect to account server..." msgstr "" -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 msgid "Trying to connect to char server..." msgstr "" -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 msgid "Trying to connect to map server..." msgstr "" -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, c-format msgid "Map: %s" msgstr "" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 msgid "Connecting to map server..." msgstr "" -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 msgid "Invite to party" msgstr "" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 msgid " /create" msgstr "" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/ar.po b/po/ar.po index 438af05b..ff6acf02 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-07-16 18:28+0000\n" "Last-Translator: صقر بن عبدالله \n" "Language-Team: Arabic \n" @@ -17,2220 +17,2187 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "شراء" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "السعر: %d GP / الإجمالي: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "مغادرة" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "الوصف: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "التأثير: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "إيقاف" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "بيع" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "إلغاء" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "هل أنت متأكّد من حذف هذه الشخصيّة؟" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "إنتقاء الشخصيّة" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "الاسم: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "المستوى: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "المستوى: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "النقود: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "جديد" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "حذف" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "السّابق" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "التّالي" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "موافق" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "إنشاء شخصيّة" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "الاسم:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "لون الشعر:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "قصّة الشعر:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "إنشاء" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "إنتقاء الشخصيّة" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "إنشاء" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "الخادوم:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "تغيير OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "مرتفع" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "المنفذ:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "الخادوم:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "نعم" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "لا" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "جارِ الاتّصال..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "استخدام" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "العتاد" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "تجريد من العتاد" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "الجردة" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "استعمال العتاد" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "إسقاط" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "انتقاء كمّيّة من المواد للمتاجرة بها." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "انتقاء كمّيّة من المواد لإسقاطها." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "ولوج" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "كلمة السرّ:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "المنفذ:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "ترك" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "تسجيل" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "الحالة" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "مهارات" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "اختصار" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "تثبيت" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "خارطة صغيرة" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "تسجيل" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@تجارة|متاجرة مع %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@مهاجمة|هاجم %s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "الجردة" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@محادثة|تحدّث مع NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@إلغاء|إلغاء@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@اقتطاف|اقتطاف %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@استخدام|استخدام العتاد@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@استخدام|استخدام العتاد@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@استخدم|استخدم@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@إسقاط|إسقاط@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "جارِ الاتّصال..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "جارِ الاتّصال..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "جارِ الاتّصال..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "تأكيد:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "يجب أن يكون طول اسم المستخدم على الأقل %d محارف." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "يجب أن يكون طول اسم المستخدم أقل من %d محارف." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "يجب أن تكون طول كلمة السرّ على الأقل %d محارف." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "يجب أن يكون طول كلمة السرّ أقل من %d محارف." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "كلمات السرّ غير متطابقة." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "خطأ" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "صوت" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "حجم صوت المؤثرّات" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "حجم صوت الموسيقا" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "تطبيق" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "تصفير النوافذ" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "مرئية" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "سمعيّ" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "عصا الألعاب" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "إضغط على الزرّ لبدأ المعايرة" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "معايرة" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "تفعيل عصا الألعاب" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "إيقاف" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "تدوير العصا" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "حذف" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "الاسم:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "ملء الشاشة" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "مؤشّر مخصّص" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "حدّ FPS:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "عتمة واجهة المستخدم" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "نصف قطر اللفّ" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "كسل اللفّ" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "مؤثّرات محيطة" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "واقف" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "منخفض" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "مرتفع" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "ملء الشاشة" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "جارِ ملء الشاشة" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "يجب إعادة التشغيل لتفعّل التغييرات." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "تغيير OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "تطبيق التغيير على OpenGL يحتاج لإعادة تشغيل." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "يجب إعادة التشغيل لتفعّل التغييرات." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "يجب إعادة التشغيل لتفعّل التغييرات." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "مهارات" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "استخدام" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "المستوى: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "النقود: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "المستوى: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "الحالة" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "مهاجمة %+d" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "دفاع %+d" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "مهاجمة %+d" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "دفاع %+d" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "القوّة:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "خفّة الحركة:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "نشاط:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "ذكاء:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "المهارة:" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "إضافة" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "أنت تحصل على %d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "أنت تقدّم:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "إلغاء" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "هل أنت متأكّد من حذف هذه الشخصيّة؟" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "مهاجمة %+d" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "مهاجمة %+d" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "تصفير النوافذ" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "قسم" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "اختصار" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "تصفير النوافذ" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "الحالة" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "الجردة" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "العتاد" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "تصفير النوافذ" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "تصفير النوافذ" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "تصفير النوافذ" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "تصفير النوافذ" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "اختصار" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "إنتقاء الشخصيّة" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "جارِ الاتّصال..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "جارِ الاتّصال..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "جارِ الاتّصال..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "الاسم: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "جارِ الاتّصال..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "الجردة" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "إنشاء" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/ca.po b/po/ca.po index a6e67fba..15b1f650 100644 --- a/po/ca.po +++ b/po/ca.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-07-03 17:21+0000\n" "Last-Translator: Habari \n" "Language-Team: Catalan \n" @@ -17,2168 +17,2137 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "preu %d GP / total %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "sortir" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "nom" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 msgid "Select Server" msgstr "" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "canvi" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 msgid "Highlight" msgstr "" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 msgid "Party" msgstr "" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 msgid "Server" msgstr "" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "si" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "no" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "" -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "" -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "" -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 msgid "Reset" msgstr "" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, c-format +msgid "@@trade|Trade With %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:79 -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, c-format +msgid "@@attack|Attack %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " +#: src/gui/popupmenu.cpp:106 +#, c-format +msgid "@@party-invite|Invite %s to party@@" msgstr "" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 msgid "Recorder" msgstr "" -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 msgid "Already recording." msgstr "" -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 msgid "Recording..." msgstr "" -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "" -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "nom" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "fullscreen" msgstr "" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "" -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "" -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 msgid "use" msgstr "" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, c-format msgid "Job: %d" msgstr "" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, c-format msgid "Money: %d GP" msgstr "" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 msgid "Job:" msgstr "" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 msgid "Stats" msgstr "" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 msgid "Strength" msgstr "" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 msgid "Agility" msgstr "" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 msgid "Vitality" msgstr "" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 msgid "Intelligence" msgstr "" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 msgid "Dexterity" msgstr "" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 msgid " cancelled" msgstr "" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 msgid "Are you sure you want to quit?" msgstr "" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 msgid "Attack" msgstr "" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 msgid "Stop Attack" msgstr "" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 msgid "Hide Windows" msgstr "" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 msgid "Sit" msgstr "" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, c-format msgid "Item Shortcut %d" msgstr "" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 msgid "Help Window" msgstr "" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 msgid "Status Window" msgstr "" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 msgid "Inventory Window" msgstr "" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 msgid "Equipment WIndow" msgstr "" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 msgid "Chat Window" msgstr "" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 msgid "Setup Window" msgstr "" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 msgid "Debug Window" msgstr "" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 msgid "Emote Window" msgstr "" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, c-format msgid "Emote Shortcut %d" msgstr "" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 msgid "Select OK" msgstr "" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 msgid "Trying to connect to account server..." msgstr "" -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 msgid "Trying to connect to char server..." msgstr "" -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 msgid "Trying to connect to map server..." msgstr "" -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, c-format msgid "Map: %s" msgstr "" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 msgid "Connecting to map server..." msgstr "" -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 msgid "Invite to party" msgstr "" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 msgid " /create" msgstr "" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/cs.po b/po/cs.po index f1db339f..bcc34553 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-12-17 16:31+0000\n" "Last-Translator: Lubos \n" "Language-Team: Czech \n" @@ -17,2204 +17,2173 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Nákup" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Popis: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Prodej" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Zrušit" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Potvrďte vymazání postavy" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Jste si jistí, že chcete vymazat tuto postavu?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 #, fuzzy msgid "Select Character" msgstr "Vytvořit postavu" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Jméno: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Úroveň: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Úroveň: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Peníze: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Nová" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Odstranit" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Předchozí" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Další" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Vytvořit postavu" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Jméno:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Barva vlasů:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Styl vlasů:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Vytvořit" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Server:" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Vytvořit" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 msgid "Highlight" msgstr "" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Port:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Server:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Ano" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Ne" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Připojuji se..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Vybavení" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventář" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Vybavit" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Upustit" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Vyberte množství zboží, se kterým budete obchodovat." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Vyberte množství zboží, které chcete upustit." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Heslo:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Registrace" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Stav" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Dovednosti" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Zkratka" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Nastavení" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMapa" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registrace" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, c-format +msgid "@@trade|Trade With %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:79 -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, c-format +msgid "@@attack|Attack %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "Inventář" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Připojuji se..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Připojuji se..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Připojuji se..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "Muž" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "Žena" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Uživatelské jméno musí být nejméně %d znaků dlouhé." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Uživatelské jméno musí být kratší než %d znaků." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Heslo musí být kratší než %d znaků." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Hesla se neshodují." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Chyba" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Zvuk" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Klávesnice" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Kalibrovat" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Odstranit" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Jméno:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "fullscreen" msgstr "" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "" -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "" -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Dovednosti" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 msgid "use" msgstr "" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Úroveň: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Peníze: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Úroveň: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Stav" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "Útok %+d" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "Obrana %+d" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "Útok %+d" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "Obrana %+d" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Síla:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Vitalita:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Vitalita:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Inteligence:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 msgid "Dexterity" msgstr "" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Zrušit" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Jste si jistí, že chcete vymazat tuto postavu?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Útok %+d" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Útok %+d" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 msgid "Hide Windows" msgstr "" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Rozdělit" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Zkratka" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 msgid "Help Window" msgstr "" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Stav" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inventář" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Vybavení" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 msgid "Chat Window" msgstr "" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 msgid "Setup Window" msgstr "" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 msgid "Debug Window" msgstr "" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 msgid "Emote Window" msgstr "" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Zkratka" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Server:" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Připojuji se..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Připojuji se..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Připojuji se..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Jméno: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Připojuji se..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inventář" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Vytvořit" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/da.po b/po/da.po index d52ce0fd..abf406e0 100644 --- a/po/da.po +++ b/po/da.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-06 10:40-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-12-28 14:45+0000\n" "Last-Translator: GonzoDark AKA IchigoBlack \n" "Language-Team: Danish \n" @@ -17,426 +17,418 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Køb" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Pris: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Afslut" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Beskrivelse: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effekt: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Butik" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Sælg" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Fortryd" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Bekræft sletning af karakter" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Er du sikker på at du vil slette denne karakter?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Vælg Karakter" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Navn: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Niveau: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Niveau: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Penge: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Opret" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Slet" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Forrige" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Næste" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "Guld: %d" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Lav Bruger" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Navn:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Hårfarve:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Frisure:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Opret" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Vælg Server" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "OK" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Chat" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 #, fuzzy msgid "Global announcement: " msgstr "Global meddelelse: " -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, fuzzy, c-format msgid "Global announcement from %s: " msgstr "Global meddelelse fra %s: " -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "Hvisker til %s: %s" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "Prøver at sende en blank gruppe besked." -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "Ukendt genstand" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "Retur bringer focus på chatten." -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "Besked lukker chat." -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "Enter bringer nu focus på chatten." -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "Besked lukker nu chat." -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" "Mulighederne til /toggle er \"yes\", \"no\", \"true\", \"false\", \"1\", \"0" "\"." -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 #, fuzzy msgid "Unknown party command... Type \"/help\" party for more information." msgstr "Ukendt gruppe kommando... Skriv \"/help party\" for mere information." -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "Trylleformularen findes ikke!" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "Til stede: " -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "Fremmøde skrives til loggen" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "Ukendt kommando" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "Handel fejlede!" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "Emote fejlede!" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "Sæt dig fejlede!" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "Chat skabelsen fejlede!" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "Kunne ikke tilslutte sig gruppen!" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "Kan ikke råbe!" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "Du er ikke nået til det rette Niveau endnu!" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "Utilstrækkelig HP!" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "Utilstrækkelig SP!" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "Du har ingen memorandaer!" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "Det kan du ikke gøre lige nu!" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "Det ser ud til at du har behov for flere Zeny... ;-)" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "Du kan ikke bruge denne færdighed med dette slags våben!" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "Du har behov for en rød krystal mere" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "Du har behov for en blå krystal mere" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "Du har for meget på dig, til at kunne gøre dette" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "Hmm? Hvad er det?" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "Warp mislykkede..." -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "Kunne ikke stjæle noget som helst..." -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "Giften havde ingen effekt..." -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "Det nuværende gruppe præfiks er " -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "Gruppens præfiks skal være et bogstav langt. " -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "Kan ikke bruge '/' som præfikset" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Ændre præfikset til " -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "--Hjælp--" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "/announce: Global meddelelse (Kun for GM)" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "/clear: Rydder dette vindue" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "/help: Viser denne hjælp" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "/msg : Alternativ form for /whisper" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "/present: Får listen af tilstedeværende brugere" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "/toggle: Bestemmer om bringer focus på chat loggen." -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "/where: Viser bane navnet" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "/w : Kort form for /whisper" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" "/whisper : Sender en privat besked til det givne brugernavn" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "/who: Viser antalet af online brugere" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "For at få mere information, skriv /help " -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "Kommando: /announce " -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "*** kun tilgængelig for en GM ***" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "Denne kommando sender beskeden til alle brugere online." -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "Kommando: /clear" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "Denne commando rydder chat loggen" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "Kommando: /help" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "Denne kommando viser en liste over alle tilgængelige kommandoer" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "Kommando: /help " -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "Denne kommando viser hjælp for " -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "Kommando: /present" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." @@ -445,31 +437,31 @@ msgstr "" "lytteradius, og sender listen til enten record loggen, hvis du optager, " "ellers er det chat loggen." -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 #, fuzzy msgid "Command: /record " msgstr "Kommando: /clear" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 #, fuzzy msgid "This command starts recording the chat log to the file ." msgstr "Denne commando rydder chat loggen" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 #, fuzzy msgid "Command: /record" msgstr "Kommando: /clear" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 #, fuzzy msgid "This command finishes a recording session." msgstr "Denne kommando viser hjælp for " -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "Kommando /toggle " -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 #, fuzzy msgid "" "This command sets whether the return key should toggle thechat log, or " @@ -478,7 +470,7 @@ msgstr "" "Denne kommando bestemmer om retur, skal bruges til at fokusere på chat " "loggen, ellerom chat om chat loggen, automatisk skal slå fra." -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." @@ -487,938 +479,928 @@ msgstr "" "af chat vindue til, eller \"0\", \"no\", \"false\" for at slå fokusering af " "chat vindue fra." -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "Kommando: /toggle" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "Denne kommando viser fokusering af chat vinduets status." -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "kommando: /where" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "Denne kommando viser det nuværende bane navn." -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "Kommando: /msg " -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "Kommando: /whisper " -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "Kommando: /w " -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "Denne kommando sender beskeden til ." -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "Hvis navnet har mellemrum i det, skal det omringes med følgende (\")." -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "Kommando: /who" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" "Denne kommando viser det antal af online brugere, der nuværende er online." -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "Ukendt kommando" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "Skriv /help for at få en liste med kommandoer" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "GM" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "høj" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "Bruger" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "Hvisk" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "Er" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Gruppe" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Server" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "Logger" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "Hyperlink" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Ja" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Nej" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Opretter forbindelse..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "Kan ikke loade valgte-billede.png" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "Emote" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Brug" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Udstyr" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Tag af" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "Hjælp" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "Luk" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventarliste" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Tag på" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Smid" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 #, fuzzy msgid "Slots: " msgstr " g Pladser: " -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Vælg hvor mange genstande du vil bytte." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Vælg hvor mange genstande du vil smide." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Log Ind" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Adgangskode:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "Nuværende:" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Behold" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Registrer" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Status" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Færdigheder" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Genvej" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Opsætning" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniKort" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Nuværende:" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Byt Med " -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|Angrib " -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, fuzzy, c-format +msgid "@@friend|Befriend %s@@" msgstr "@@friend|Bliv ven med " -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, fuzzy, c-format +msgid "@@disregard|Disregard %s@@" msgstr "@@disregard|Se bort fra " -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, fuzzy, c-format +msgid "@@ignore|Ignore %s@@" msgstr "@@ignore|Bloker " -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, fuzzy, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "@@unignore|Fjern blokering " -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, fuzzy, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "@@ignore|Bloker fuldstændig " -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" msgstr "@@party-invite|Inviter " -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Snak Til NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Annuller@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Saml Op %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Tag af@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Tag på@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Brug@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Smid@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Opretter forbindelse..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Opretter forbindelse..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 #, fuzzy msgid "Failed to start recording." msgstr "Fejlede i at skifte til " -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Opretter forbindelse..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Bekræft:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "Mand" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "Kvinde" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "RegisterDialog::register Brugernavn er %s" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Brugernavnet skal mindst være %d bogstaver langt." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Brugernavnet skal være mindre end %d bogstaver langt." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Adgangskoden skal mindst være %d bogstaver langt." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Adgangskoden skal være mindre end %d bogstaver langt." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "De indtastede adgangskoder stemmer ikke overens." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Fejl" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Lyd" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Lydstyrke på effekter" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Lydstyrke på musik" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Anvend" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Nulstil Vinduer" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Lyd" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Tastatur" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 #, fuzzy msgid "Colors" msgstr "Farver:" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "Brugere" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 #, fuzzy msgid "Green: " msgstr "Til stede: " -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Tryk på knappen for at starte justeringen." -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Justering" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Aktiver joystick" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Stop" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Rotere joysticket" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "Tildel" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Standart" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "Tast Konfikt(er) Opdaget." -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "Løs problemet, ellers kan spillet risikere at opfører sig ustabilt." -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Navn:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "Relation" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "Neutral" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "Ven" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "Se bort fra" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "Ignorer" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "???" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "Gem bruger liste" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "Tillad handel" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "Tillad hviskere" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "Når ignorer:" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "Ingen opsætning tilgængelig" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "Alle opløsninger er tilgængelige" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Fuld Skærm" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Brugerdefineret Musepil" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "Partikel effekter" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "Snakke bobler" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "Vis navn" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "FPS grænse:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Gennemsigtighed" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Følsomhed på mus" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "Acceleration på mus" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Omgivende FX" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "Partikel Detalje" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "fra" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "lav" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "høj" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "mellem" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "maks" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "Fejlede i at skifte til " -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "vinduet" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Fuld Skærm" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "opsætning og genoprettelse af gammel opsætning fejlede også!" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Skifter til fuld skærm" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "Ændringerne kræver at du genstarter klienten." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Skrifter til OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "Ændringerne til OpenGL kræver at du genstarter klienten." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "Skærm opløsning ændret" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Ændringerne kræver at du genstarter klienten." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "Partikel effekt opsætningen er ændret" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Ændringerne kræver at du genstarter klienten, eller skifter bane." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "Færdigheds points: %d" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "Op" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "inc" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Brug" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "Fejl under loading af færdigheds fil: %s" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 #, fuzzy msgid "Speech" msgstr "Snakke" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Karriere: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Penge: %d GP" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Karriere: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Status" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "Total" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "Pris" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "Angrib:" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "Forsvar:" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "M.Angrib:" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "M.Forsvar:" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, fuzzy, c-format msgid "% Accuracy:" msgstr "% Nøjagtighed:" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, fuzzy, c-format msgid "% Evade:" msgstr "% Undvig:" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "% Refleks:" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Styrke" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Adræthed" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Helbred" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Intelligens" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "Behændighed" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "Held" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "Tilgode Status Points: %d" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "Handel: Dig" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "Handel" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Tilføj" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Du får %d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Du giver:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" "Fejlede i at tilføje genstand. Du kan ikke overlappe en slags genstand på " "vinduet." -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "Kunne ikke loade tekst fil: %s" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "Updatere..." -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "Spil" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "Kunne ikke loade nyhederne" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "curl fejl " -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr " host: " -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "Checksum for fil %s fejlede: (%lx/%lx)" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "Kunne ikke skabe mThread" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "##1 Opdateringsprocessen er ikke færdiggjort" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "##1 Det er varmt anbefalet at" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "##1 du prøver igen senere" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "%s allerede her" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "Udført" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "Besked" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" "Du bære på mere en halvdelen af din vægt. Du kan derfor ikke genvinde liv." -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "Du er død." -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" "Vi er ked af at måtte informere dig, om at din karakter var dræbt i kamp." -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "Du er ikke så levende som du engang har været." -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "De kolder hænder der tilhøre Grim Reaper, griber ud efter din sjæl" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "Game Over!" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "Indsæt en mønt for at fortsætte" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." @@ -1426,862 +1408,847 @@ msgstr "" "Nej, børn. Din karakter døde ikke rigtigt. Den.. err... tog til et bedre " "sted." -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "Din plan om at smadre fjendens våben, ved at benytte din hals fejlede." -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "Jeg går ud fra at dette ikke gik alt for godt." -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "Du vil gerne have dine ejendele identificeret?" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "Desværre, blev der aldrig fundet noget spor efter dig..." -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "Udslettet." -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "Det ser ud til at du fik du hoved udleveret til dig." -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "Du kvajede dig igen, smid din krop ned i kloakken og find dig en ny." -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "Du er ikke død endnu. Du hviler dig bare." -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "Du er ikke mere." -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "Du er holdt op med at være til." -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "Du er udløbet og er gået hen for at møde din skaber." -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "Du er en hård nød at knække, men desværre død." -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "Du siver langtsomt ud af din krop, du kan nu endelig slappe af." -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" "Hvis det ikke var fordi du var så animeret, kunne du sikker imponere Chuck " "Norris." -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "Din tid er ovre." -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "Drik noget syre." -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "Du har stillet træskoene." -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "Du har spist af dødens pølse for den sidste gang." -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "Du er en forhenværende spiller." -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "Du er tabt bag en vogn." -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "Du samlede op " -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "Tag først pile på" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "0x013b: Unbehandlet besked %i" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "Ansøg om lov til at handle" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr " vil gerne handle med dig, vil du acceptere?" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "Du kan ikke handle. Handle partneren er for langt væk." -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "Du kan ikke handle. Karakteren findes ikke." -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "Handlen blev annulleret af en ukendt grund." -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "Handel: Dig og " -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 #, fuzzy msgid "Trade with " msgstr "Handel med " -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr " afbrudt" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "Ubehandlet handel annullerede pakken" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "Fejlede i at tilføje genstand. Handels partneren bære på for meget." -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" "Fejlede i at tilføje genstand. Handels partneren har ikke flere frie pladser." -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "Fejlede i at tilføje genstand af en ukendt grund." -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "Handel annulleret." -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "Handel er komplet." -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "Prøver TMW's farve fil, %s." -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "ColorDB: Fejlede" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, fuzzy, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "ColorDB: Ny definition af genstand ID %d" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "Udlæser farve database..." -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "ColorDB: Fejl, ukendt dye ID# %d" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "startede emote database..." -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "Emote Database: Fejl under læsning af emotes.xml!" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "Emote Database: Emote med manglende ID i emotes.xml!" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "EmoteDB: Warning, unknown emote ID %d requested" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "Startede genstans database..." -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "ItemDB: Fejl under læsningen af items.xml!" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "ItemDB: Ugyldig eller manglende genstand ID i items.xml!" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "ItemDB: Ny definition af genstand ID %d" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "Unavngivet" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "Udlæser genstands databasen..." -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "ItemDB: Fejl, ukendt genstand ID# %d" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "ItemDB: Ignorerer ukendt lyd begivenhed '%s'" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "unavngivet" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "Starter monster database..." -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "Monster Database: Fejl under indlæsningen ad monster.xml!" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" "MonsterDB: Ukendt mål mus skriver \"%s\" for %s - at bruge en mellem størelse" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" "MonsterDB: Advarsel, lyd effekt %s for ukendt begivenhed %s af monster %s" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "MonsterDB: Advarsel, ukendt monster ID %d efterspurgt" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "Starter NPC database..." -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "NPC Database: Fejl under indlæsning af npcs.xml!" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "NPC Database: NPC med manglende ID i npcs.xml!" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "NPCDB: Advarsel, ukendt NPC ID %d efterspurgt" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "Skærmbillede gemt under ~/" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "Gemningen af skærmbilledet fejlede!" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "Fejl: kunne ikke gemme skærmbilledet." -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "Netværk Fejl" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "Forbindelsen til serveren er tabt, programmet vil nu lukke" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Er du sikker på at du gerne vil stoppe?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "nej" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "Ignorer indkomne handels anmodninger" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "Accepter indkomne handels anmodninger" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "Advarsel: guichan indput untagelse: %s" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Angrib:" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 #, fuzzy msgid "Talk" msgstr "Total" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Angrib:" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 #, fuzzy msgid "Target Player" msgstr "Bruger" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Nulstil Vinduer" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Opdel" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 #, fuzzy msgid "Screenshot" msgstr "Skærmbillede gemt under ~/" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Genvej" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Nulstil Vinduer" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Status" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inventarliste" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Udstyr" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 #, fuzzy msgid "Skill Window" msgstr "Færdigheds points: %d" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Nulstil Vinduer" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Nulstil Vinduer" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Nulstil Vinduer" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Emote fejlede!" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Genvej" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Vælg Server" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "Fejl: Ugyldigt opdaterings host: %s" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "Ugyldigt opdaterings host: " -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "Advarsel: ingen protocol var aktiv som opdate host" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "Fejl: %s kan ikke laves, men findes ikke!" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "Fejl under oprettelsen af opdateringen mappen!" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "Fejl: %s/%s kan ikke laves, men findes ikke!" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr " kan ikke laves, men det findes ikke! Lukker." -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "Starter Aethyra Version %s" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "Starter Aethyra - Version er ikke defineret" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "Starter SDL..." -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "Kunne ikke starte SDL: " -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr " kunne ikke blive sat til hjemmemappen! Lukker." -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "Kan ikke finde ressourcernes mappe\n" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "Starter configurationen..." -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "Kunne ikke definere " -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr " skærm opsætning: " -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "Advarsel: %s" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "aethyra" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "Opsætning: " -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr " -C --configfile : Configurations fil til brug" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr " -d --data : Mappen at indlæse spillets data fra" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" " -D --default : Overskriv login processen med normale indstillinger" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr " -h --help : Viser denne hjælp" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr " -H --updatehost : Brug denne opdaterings host" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr " -p --playername : Logind med denne bruger" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr " -P --password : Logind med denne adgangskode" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr " -u --skipupdate : Spring opdateringerne over" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr " -U --username : Logind med dette brugernavn" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr " -v --version : Viser den nuværende version" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "Aethyra version " -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "(lokalt build?, PACKAGE_VERSION er ikke defineret)" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Prøver at opretter forbindelse til bruger serveren..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "Brugernavn er %s" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Prøver at oprette forbindelse til karakter serveren..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "Husk den valgte karakter %s" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Prøver at oprette forbindelse til bane serveren..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Bane; %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "Kunne ikke indlæse %s som background" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "Blev smidt af serveren!" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Opretter forbindelse til bane serveren..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "Opretter forbindelse til karakter serveren..." -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "Opretter forbindelse til bruger serveren..." -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 #, fuzzy msgid "Could not create party." msgstr "Kunne ikke tilslutte sig gruppen!" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inventarliste" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, fuzzy, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr " vil gerne handle med dig, vil du acceptere?" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 #, fuzzy msgid "Command: /party " msgstr "Kommando: /help " -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Opret" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 #, fuzzy msgid "This command implements the partying function." msgstr "Denne kommando viser hjælp for " -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 #, fuzzy msgid "Command: /party new " msgstr "Kommando /toggle " -#: ../src/party.cpp:188 +#: src/party.cpp:188 #, fuzzy msgid "Command: /party create " msgstr "Kommando /toggle " -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 #, fuzzy msgid "This command sets the party prefix character." msgstr "Denne commando rydder chat loggen" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 #, fuzzy msgid "Command: /party prefix" msgstr "Kommando: /present" -#: ../src/party.cpp:201 +#: src/party.cpp:201 #, fuzzy msgid "This command reports the current party prefix character." msgstr "Denne commando rydder chat loggen" -#: ../src/party.cpp:209 +#: src/party.cpp:209 #, fuzzy msgid "Command: /party leave" msgstr "Kommando: /present" -#: ../src/party.cpp:210 +#: src/party.cpp:210 #, fuzzy msgid "This command causes the player to leave the party." msgstr "Denne kommando viser fokusering af chat vinduets status." -#: ../src/party.cpp:214 +#: src/party.cpp:214 #, fuzzy msgid "Unknown /party command." msgstr "Ukendt kommando" -#: ../src/party.cpp:215 +#: src/party.cpp:215 #, fuzzy msgid "Type /help party for a list of options." msgstr "Skriv /help for at få en liste med kommandoer" diff --git a/po/de.po b/po/de.po index 7e1d3762..0103b5a9 100644 --- a/po/de.po +++ b/po/de.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2009-01-19 20:15+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: German\n" @@ -17,2220 +17,2187 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-25 22:24+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Kaufen" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Preis: %d GP / Summe: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Beenden" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Beschreibung: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effekt: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 msgid "Shop" msgstr "Geschäft" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Verkaufen" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Abbrechen" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Bestätige Charakter-Löschung" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Bist du sicher, dass du diesen Charakter löschen möchtest?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Spielfigur auswählen" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Name : %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Stufe: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Geld: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Neu" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Löschen" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Zurück" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Weiter" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "Gold: %d" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Charakter erstellen" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Name :" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Haarfarbe" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Frisur" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Erstellen" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 msgid "Select Server" msgstr "Server auswählen" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "Ok" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Erstellen" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "Flüsternd zu %s: %s" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 #, fuzzy msgid "Unknown item" msgstr "Unbekannter Befehl" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "Unbekannter Befehl" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "Handel fehlgeschlagen!" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "Emote fehlgeschlagen!" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "Sitzen fehlgeschlagen!" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "Chat-Erstellung fehlgeschlagen!" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "Du kannst dies momentan nicht tun!" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "Schmalhans ist dein Küchenmeister... ;-)" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "Du kannst diese Fähigkeit nicht mit dieser Waffenart benutzen!" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "Du brauchst noch einen roten Edelstein!" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "Du brauchst noch einen blauen Edelstein!" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "Du schleppst zuviel herum um das zu machen!" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "Eha? Was ist das?" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "Warp fehlgeschlagen..." -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "Konnte nichts stehlen..." -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "Das Gift hatte keine Wirkung..." -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Ändere OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "Unbekannter Befehl." -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "Hoch" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 #, fuzzy msgid "Player" msgstr "Spieler" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 #, fuzzy msgid "Whisper" msgstr "%s flüstert:" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Los!" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Server:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Ja" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Nein" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Verbinde..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Benutzen" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Ausrüstung" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Ablegen" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "Hilfe" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "Schließen" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventar" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Ausrüsten" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Wegwerfen" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Wähle aus, wieviele Gegenstände Du tauschen möchtest." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Wähle aus, wieviele Gegenstände Du wegwerfen möchtest." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Anmelden" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Passwort:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Erinnern" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Registrieren" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Status" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Fertigkeiten" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Tastenkürzel" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Einstellungen" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Übersichtskarte" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registrieren" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Mit %s handeln@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|%s angreifen@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " -msgstr "" +#: src/gui/popupmenu.cpp:89 +#, fuzzy, c-format +msgid "@@ignore|Ignore %s@@" +msgstr "@@guild|%s einladen@@" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "@@party|%s in deine Gruppe einladen@@" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Mit NSC reden@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Abbrechen@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|%s aufheben@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Ausrüsten@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Nutzen@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Fallen lassen@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Verbinde..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Verbinde..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Verbinde..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Bestätigen:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "Männlich" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "Weiblich" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Der Nutzername muss aus mindestens %d Zeichen bestehen." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Der Nutzername muss kürzer als %d Zeichen sein." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Das Passwort muss aus mindestens %d bestehen." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Das Passwort muss kürzer als %d Zeichen sein." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Passwörter stimmen nicht überein." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Fehler" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Ton" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Lautstärke der Klangeffekte" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Latustärke der Musik" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Anwenden" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Fenster zurücksetzen" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Tastatur" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 #, fuzzy msgid "Colors" msgstr "Schließen" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "Spieler" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Knopf drücken um die Kalibrierung zu starten" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Kalibrieren" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Joystick aktivieren" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Stopp" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Kreise den Steuerknüppel" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "Zuordnen" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "Standard" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 msgid "Name" msgstr "Name" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "Beziehung" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "Neutral" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "Freund" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "Ignoriert" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "Spielerliste sichern" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "Handeln erlauben" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "Flüstern erlauben" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Vollbild" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Benutzerdefinierten Zeiger" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "FPS-Limit:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "GUI Transparenz" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Scroll-Radius" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "Scroll-Trägheit" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Hintergrundeffekte" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "Aus" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "Niedrig" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "Hoch" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "Mittel" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "max" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Vollbild" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Wechsle zum Vollbildmodus" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "Änderungen treten erst nach einem Neustart des Programmes in Kraft." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Ändere OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "" "Änderungen an OpenGL werden erst nach einem Neustart der Anwendung " "übernommen." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Änderungen treten erst nach einem Neustart des Programmes in Kraft." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Änderungen treten erst nach einem Neustart des Programmes in Kraft." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Fertigkeiten" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "Erhöhen" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Benutzen" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, c-format msgid "Job: %d" msgstr "" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, c-format msgid "Money: %d GP" msgstr "Geld: %d GP" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 msgid "Job:" msgstr "" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 msgid "Stats" msgstr "Statistiken" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "Gesamt" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "Preis" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 msgid "Attack:" msgstr "Angriff:" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 msgid "Defense:" msgstr "Verteidigung:" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 msgid "M.Attack:" msgstr "M.Angriff:" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 msgid "M.Defense:" msgstr "M.Verteidigung:" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "% Genauigkeit" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "% Ausweichen:" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "% Reaktion:" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 msgid "Strength" msgstr "Stärke" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 msgid "Agility" msgstr "Beweglichkeit" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 msgid "Vitality" msgstr "Gesundheit" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 msgid "Intelligence" msgstr "Intelligenz" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 msgid "Dexterity" msgstr "Ausdauer" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "Glück" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 #, fuzzy msgid "Trade: You" msgstr "Handeln" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "Handeln" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Hinzufügen" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Du erhälst %d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Du gibst:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "Aktualisiere..." -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "Los!" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "Fertig" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 #, fuzzy msgid "You are not that alive anymore." msgstr "Du kannst dies momentan nicht tun!" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 #, fuzzy msgid "Trade with " msgstr "Handeln" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Abbrechen" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 #, fuzzy msgid "Trade canceled." msgstr "Handel fehlgeschlagen!" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 #, fuzzy msgid "Trade completed." msgstr "Fertig" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "Unbenannt" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 #, fuzzy msgid "unnamed" msgstr "Unbenannt" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 #, fuzzy msgid "Saving screenshot failed!" msgstr "Sitzen fehlgeschlagen!" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Bist du sicher, dass du diesen Charakter löschen möchtest?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Angriff:" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 #, fuzzy msgid "Talk" msgstr "Gesamt" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Angriff:" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 #, fuzzy msgid "Target Player" msgstr "Spieler" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Fenster zurücksetzen" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Aufteilen" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Tastenkürzel" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Fenster zurücksetzen" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Status" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inventar" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Ausrüstung" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Fenster zurücksetzen" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Fenster zurücksetzen" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Fenster zurücksetzen" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Emote fehlgeschlagen!" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Tastenkürzel" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Server auswählen" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Verbinde zu [account server]..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Verbinde zu [character server]..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Verbinde zu [map server]..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Name : %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 msgid "Connecting to map server..." msgstr "Verbinde zu [map server]..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "Verbinde zu [character server]..." -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "Verbinde zu [account server]..." -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 #, fuzzy msgid "Could not create party." msgstr "Konnte nichts stehlen..." -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inventar" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Erstellen" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 #, fuzzy msgid "Unknown /party command." msgstr "Unbekannter Befehl." -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2329,11 +2296,5 @@ msgstr "" #~ msgid "Guilds" #~ msgstr "Gilden" -#~ msgid "@@guild|Invite %s@@" -#~ msgstr "@@guild|%s einladen@@" - -#~ msgid "@@party|Invite %s to join your party@@" -#~ msgstr "@@party|%s in deine Gruppe einladen@@" - #~ msgid "Visible names" #~ msgstr "Sichtbare Namen" diff --git a/po/en_GB.po b/po/en_GB.po index a748b145..672445dd 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-05-10 16:51+0000\n" "Last-Translator: Me \n" "Language-Team: English (United Kingdom) \n" @@ -17,2220 +17,2187 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Buy" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Price: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Exit" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Description: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effect: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Stop" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Sell" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancel" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Are you sure you want to delete this character?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Select Character" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Name: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Money: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "New" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Delete" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Previous" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Next" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Create Character" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Name:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Hair Colour:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Hair Style:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Create" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Select Character" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Create" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Changing OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "high" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Port:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Server:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Yes" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "No" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Connecting..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Use" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipment" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Unequip" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventory" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Equip" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Drop" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Select amount of items to trade." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Select amount of items to drop." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Login" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Password:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Keep" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Register" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Status" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Skills" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Shortcut" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Setup" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMap" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Register" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Trade With %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|Attack %s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "Inventory" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Talk To NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancel@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Pick Up %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equip@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Equip@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Use@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Drop@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Connecting..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Connecting..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Connecting..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Confirm:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "The username needs to be at least %d characters long." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "The username needs to be less than %d characters long." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "The password needs to be at least %d characters long." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "The password needs to be less than %d characters long." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Passwords do not match." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Error" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Sound" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Sfx volume" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Music volume" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Apply" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Reset Windows" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "Colours" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Press the button to start calibration" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Calibrate" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Enable joystick" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Stop" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Rotate the stick" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Delete" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Name:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Full screen" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Custom cursor" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "FPS Limit:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Gui opacity" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Scroll radius" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "Scroll laziness" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Ambient FX" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "off" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "low" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "high" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Full screen" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Switching to full screen" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "Restart needed for changes to take effect." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Changing OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "Applying change to OpenGL requires restart." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Restart needed for changes to take effect." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Restart needed for changes to take effect." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Skills" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Use" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Level: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Money: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Level: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Status" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "Attack %+d" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "Defense %+d" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "Attack %+d" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "Defense %+d" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Strength:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Agility:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Vitality:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Intelligence:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "Dexterity:" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Add" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "You get %d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "You give:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Cancel" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Are you sure you want to delete this character?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Attack %+d" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Attack %+d" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Reset Windows" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Split" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Shortcut" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Reset Windows" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Status" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inventory" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Equipment" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Reset Windows" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Reset Windows" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Reset Windows" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Reset Windows" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Shortcut" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Select Character" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Connecting..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Connecting..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Connecting..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Name: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Connecting..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inventory" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Create" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/eo.po b/po/eo.po index f21279f8..6817ba2f 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-11-10 22:03+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Esperanto \n" @@ -17,2166 +17,2135 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 msgid "Select Server" msgstr "" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 msgid "Chat" msgstr "" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 msgid "Highlight" msgstr "" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 msgid "Party" msgstr "" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 msgid "Server" msgstr "" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "" -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "" -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "" -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 msgid "Reset" msgstr "" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, c-format +msgid "@@trade|Trade With %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:79 -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, c-format +msgid "@@attack|Attack %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " +#: src/gui/popupmenu.cpp:106 +#, c-format +msgid "@@party-invite|Invite %s to party@@" msgstr "" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 msgid "Recorder" msgstr "" -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 msgid "Already recording." msgstr "" -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 msgid "Recording..." msgstr "" -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "" -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 msgid "Name" msgstr "" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "fullscreen" msgstr "" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "" -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "" -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 msgid "use" msgstr "" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, c-format msgid "Job: %d" msgstr "" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, c-format msgid "Money: %d GP" msgstr "" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 msgid "Job:" msgstr "" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 msgid "Stats" msgstr "" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 msgid "Strength" msgstr "" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 msgid "Agility" msgstr "" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 msgid "Vitality" msgstr "" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 msgid "Intelligence" msgstr "" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 msgid "Dexterity" msgstr "" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 msgid " cancelled" msgstr "" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 msgid "Are you sure you want to quit?" msgstr "" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 msgid "Attack" msgstr "" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 msgid "Stop Attack" msgstr "" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 msgid "Hide Windows" msgstr "" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 msgid "Sit" msgstr "" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, c-format msgid "Item Shortcut %d" msgstr "" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 msgid "Help Window" msgstr "" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 msgid "Status Window" msgstr "" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 msgid "Inventory Window" msgstr "" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 msgid "Equipment WIndow" msgstr "" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 msgid "Chat Window" msgstr "" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 msgid "Setup Window" msgstr "" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 msgid "Debug Window" msgstr "" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 msgid "Emote Window" msgstr "" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, c-format msgid "Emote Shortcut %d" msgstr "" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 msgid "Select OK" msgstr "" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 msgid "Trying to connect to account server..." msgstr "" -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 msgid "Trying to connect to char server..." msgstr "" -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 msgid "Trying to connect to map server..." msgstr "" -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, c-format msgid "Map: %s" msgstr "" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 msgid "Connecting to map server..." msgstr "" -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 msgid "Invite to party" msgstr "" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 msgid " /create" msgstr "" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/es.po b/po/es.po index 87507465..570532e7 100644 --- a/po/es.po +++ b/po/es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-10-15 01:37+0000\n" "Last-Translator: catalania \n" "Language-Team: Spanish \n" @@ -17,2220 +17,2187 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Comprar" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Precio: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Salir" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Descripción: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Efecto: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Detener" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Vender" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancelar" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "¿Seguro que quieres borrar este personaje?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Seleccionar personaje" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nombre: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Nivel: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nivel: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Dinero: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Nuevo" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Eliminar" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Anterior" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Siguiente" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Aceptar" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Crear Personaje" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Nombre:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Color de pelo:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "corte de pelo" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Crear" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Seleccionar personaje" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Crear" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Servidor:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Cambiar a OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "alto" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Puerto:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Servidor:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Sí" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "No" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Conectando…" -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Usar" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipo" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "quitarselo" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventario" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Equipar" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "tirar" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Seleccione objetos para comerciar." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Seleccione objetos para soltar." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "conectarse" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Contraseña:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Puerto:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Mantener" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Registrar" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Estado" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Habilidades" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Atajos" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Configuración" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Minimapa" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registrar" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Comerciar con %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|Atacar a %s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "Inventario" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Hablar al NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancelar@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Recoger %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equipar@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Equipar@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Usar@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Tirar@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Conectando…" -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Conectando…" -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Conectando…" -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Confirmar:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "El nombre de usuario debe tener al menos %d caracteres." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "El nombre de usuario puede tener como máximo %d caracteres." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "La contraseña debe tener al menos %d caracteres." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "La contraseña puede tener como máximo %d caracteres." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Las contraseñas no coinciden." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Error" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Sonido" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Volumen efectos" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Volumen musica" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Aplicar" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Reiniciar ventanas" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Vídeo" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Teclado" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Presione el botón para comenzar la calibración" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Calibrar" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Activar joystick" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Detener" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Gire el stick" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Eliminar" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Nombre:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Pantalla completa" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Cursor propio" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "Límite de FPS:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Transparencia menus" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Ratio de scroll" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "Velocidad de scroll" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Efectos ambientales" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "desactivado" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "bajo" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "alto" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Pantalla completa" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Cambiar a pantalla completa" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "Se necesita reiniciar para aplicar los cambios." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Cambiar a OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "Se necesita reiniciar para aplicar los cambios hechos a OpenGL." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Se necesita reiniciar para aplicar los cambios." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Se necesita reiniciar para aplicar los cambios." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Habilidades" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Usar" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Nivel: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Dinero: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Nivel: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Estado" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "Ataque %+d" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "Defensa %+d" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "Ataque %+d" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "Defensa %+d" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Fuerza:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Agilidad:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Vitalidad:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Inteligencia:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "Destreza:" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Añadir" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Tu consigues %d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Tu das:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Cancelar" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "¿Seguro que quieres borrar este personaje?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Ataque %+d" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Ataque %+d" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Reiniciar ventanas" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Dividir" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Atajos" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Reiniciar ventanas" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Estado" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inventario" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Equipo" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Reiniciar ventanas" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Reiniciar ventanas" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Reiniciar ventanas" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Reiniciar ventanas" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Atajos" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Seleccionar personaje" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Conectando…" -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Conectando…" -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Conectando…" -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nombre: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Conectando…" -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inventario" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Crear" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/fi.po b/po/fi.po index b5f9d80e..1372c5e0 100644 --- a/po/fi.po +++ b/po/fi.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-12-30 10:23+0000\n" "Last-Translator: ville-v \n" "Language-Team: Finnish \n" @@ -17,2221 +17,2188 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Osta" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Kappalehinta: %d GP / Yhteensä: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Sulje" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Kuvaus: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Vaikutus: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Lopeta" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Myy" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Peru" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Vahvista hahmon poistopyyntö" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Oletko varma, että haluat poistaa tämän hahmon?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 #, fuzzy msgid "Select Character" msgstr "Luo hahmo" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nimi: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Taso: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Taso: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Rahatilanne: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Uusi" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Poista" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Edellinen" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Seuraava" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Luo hahmo" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Nimi:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Hiusten väri:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Hiustyyli:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Luo" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Vaihda palvelinta" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Luo" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Palvelin:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Vaihdetaan OpenGL -toimintatilaan" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "korkea" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Portti:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Palvelin:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Kyllä" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Ei" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Yhdistetään..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Käytä" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Varusteet" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Poista varuste käytöstä" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Tavaraluettelo" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Ota käyttöön" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Pudota" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Anna vaihdettavien tavaroiden määrä." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Anna pudotettavien tavaroiden määrä." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Kirjaudu sisään" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Salasana:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Portti:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Rekisteröidy" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Hahmon tiedot" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Taidot" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Pikavalinnat" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Asetukset" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Apukartta" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Rekisteröidy" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "Epäpelattava hahmo" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Vaihda tavaroita %s kanssa@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|Hyökkää %s kimppuun@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " -msgstr "" +#: src/gui/popupmenu.cpp:89 +#, fuzzy, c-format +msgid "@@ignore|Ignore %s@@" +msgstr "@@guild|Kutsu %s mukaan kiltaan@@" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "@@party|Kutsu %s mukaan ryhmääsi@@" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Puhu epäpelattavalle hahmolle@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Peruuta@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Poimi %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Ota varuste käyttöön@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Ota varuste käyttöön@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Käytä@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Pudota maahan@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Yhdistetään..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Yhdistetään..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Yhdistetään..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Vahvista:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "Miespuolinen" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "Naispuolinen" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Käyttäjänimen tulee olla vähintään %d merkkiä pitkä" -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Käyttäjänimen tulee olla alle %d merkkiä pitkä." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Salasanan tulee olla vähintään %d merkkiä pitkä" -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Salasanan tulee olla alle %d merkkiä pitkä." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Salasanat eivät täsmää." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Virhe" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Ääni" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Äänitehosteiden voimakkuus" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Musiikin voimakkuus" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Käytä" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Palauta ikkunoiden oletusasetukset" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Kuva" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Ääni" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Peliohjain" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Näppäimistö" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Paina tätä nappia aloittaaksesi peliohjaimen kalibroinnin" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Kalibroi" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Peliohjaintuki päälle" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Lopeta" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Käytä ohjain ääriasennoissaan pyörittämällä" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Poista" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Nimi:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Kokoruututila" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Tyylitelty hiiren osoitin" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "Piirtonopeusrajoitin (kuvaa / sekunti)" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Käyttöliittymän läpinäkyvyys" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Kameran perässälaahaus" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "Kameran perässälaahauksen tiukkuus" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Taustaäänet" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "pois päältä" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "matala" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "korkea" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Kokoruututila" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Kokoruututilaan siirtyminen" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "Ohjelma pitää käynnistää uudelleen, jotta muutokset astuvat voimaan." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Vaihdetaan OpenGL -toimintatilaan" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "OpenGL -asetusten muutokset vaativat ohjelman uudelleenkäynnistyksen" -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Ohjelma pitää käynnistää uudelleen, jotta muutokset astuvat voimaan." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Ohjelma pitää käynnistää uudelleen, jotta muutokset astuvat voimaan." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Taidot" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Käytä" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Taso: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Rahatilanne: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Taso: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Hahmon tiedot" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "Hyökkäys %+d" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "Puolustus %+d" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "Hyökkäys %+d" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "Puolustus %+d" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Voima:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Ketteryys:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Elinvoima:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Älykkyys:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "Näppäryys:" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Lisää" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Sait %d GP" -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Annat:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Peru" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Oletko varma, että haluat poistaa tämän hahmon?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Hyökkäys %+d" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Hyökkäys %+d" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Palauta ikkunoiden oletusasetukset" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Jaa" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Pikavalinnat" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Palauta ikkunoiden oletusasetukset" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Hahmon tiedot" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Tavaraluettelo" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Varusteet" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Palauta ikkunoiden oletusasetukset" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Palauta ikkunoiden oletusasetukset" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Palauta ikkunoiden oletusasetukset" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Palauta ikkunoiden oletusasetukset" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Pikavalinnat" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Vaihda palvelinta" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Yhdistetään..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Yhdistetään..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Yhdistetään..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nimi: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Yhdistetään..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Tavaraluettelo" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Luo" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2281,12 +2248,6 @@ msgstr "" #~ msgid "Guilds" #~ msgstr "Kiltatoiminta" -#~ msgid "@@guild|Invite %s@@" -#~ msgstr "@@guild|Kutsu %s mukaan kiltaan@@" - -#~ msgid "@@party|Invite %s to join your party@@" -#~ msgstr "@@party|Kutsu %s mukaan ryhmääsi@@" - #~ msgid "@@split|Split@@" #~ msgstr "@@split|Pinon jako@@" diff --git a/po/fr.po b/po/fr.po index 2e892886..955e498d 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-12-26 10:43+0000\n" "Last-Translator: Johan Serre \n" "Language-Team: French\n" @@ -18,2224 +18,2191 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Acheter" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Prix : %d PO / Total : %d PO" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Quitter" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Description : %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effet : %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Stop" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Vendre" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Annuler" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Confirmer la suppression du personnage" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Êtes-vous certain de vouloir supprimer ce personnage ?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Choix du personnage" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nom : %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Niveau : %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Niveau : %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Argent : %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Nouveau" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Supprimer" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Précédent" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Suivant" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Création du personnage" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Nom :" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Couleur des cheveux" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Coiffure :" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Créer" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Choix du personnage" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Créer" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Serveur :" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Changement OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "complet" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Port :" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Serveur :" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Oui" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Non" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Connexion..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Utiliser" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Équipement" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Retirer" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventaire" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Équiper" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Lâcher" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Choisissez le nombre d'objets à troquer." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Choisissez le nombre d'objets à lâcher." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Connexion" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Mot de passe :" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Port :" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Conserver" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "S'inscrire" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Statut" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Compétences" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Raccourci" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Configuration" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Plan" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "S'inscrire" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "PNJ" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Troquer avec %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|Attaquer %s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " -msgstr "" +#: src/gui/popupmenu.cpp:89 +#, fuzzy, c-format +msgid "@@ignore|Ignore %s@@" +msgstr "@@guilde|Invite %s@@" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "@@partie| Invitation de %s à joindre votre partie @@" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Parler au PNJ@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Annuler@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Ramasser %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Équiper@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Équiper@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Utiliser@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Lâcher@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Connexion..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Connexion..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Connexion..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Vérification :" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "Masculin" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "Féminin" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Le nom d'utilisateur doit faire au moins %d caractères." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Le nom d'utilisateur doit faire moins de %d caractères." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Le mot de passe doit faire au moins %d caractères." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Le mot de passe doit faire moins de %d caractères." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Les deux mots de passe ne correspondent pas." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Erreur" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Son" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Volume des effets sonores" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Volume de la musique" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Appliquer" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Rétablir les fenêtres" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Vidéo" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Clavier" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Presser le bouton pour démarrer la calibration" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Calibrer" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Activer le joystick" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Stop" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Tourner le joystick" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Supprimer" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Nom :" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Plein écran" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Curseur personnalisé" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "Limite FPS :" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Opacité de l'interface" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Rayon du scrolling" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "Paresse du scrolling" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Effets ambiants" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "aucun" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "léger" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "complet" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Plein écran" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Passage en plein écran" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "" "Les changements ne seront pris en compte qu'au prochain démarrage du jeu." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Changement OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "" "Le changement OpenGL ne sera pris en compte qu'au prochain démarrage du jeu." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "" "Les changements ne seront pris en compte qu'au prochain démarrage du jeu." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "" "Les changements ne seront pris en compte qu'au prochain démarrage du jeu." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Compétences" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Utiliser" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Niveau : %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Argent : %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Niveau : %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Statut" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "Attaque %+d" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "Défense %+d" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "Attaque %+d" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "Défense %+d" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Force :" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Agilité :" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Vitalité :" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Intelligence :" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "Dextérité :" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Ajouter" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Vous obtenez %d PO." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Vous donnez :" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Annuler" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Êtes-vous certain de vouloir supprimer ce personnage ?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Attaque %+d" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Attaque %+d" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Rétablir les fenêtres" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Partager" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Raccourci" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Rétablir les fenêtres" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Statut" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inventaire" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Équipement" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Rétablir les fenêtres" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Rétablir les fenêtres" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Rétablir les fenêtres" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Rétablir les fenêtres" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Raccourci" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Choix du personnage" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Connexion..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Connexion..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Connexion..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nom : %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Connexion..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inventaire" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Créer" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2285,12 +2252,6 @@ msgstr "" #~ msgid "Guilds" #~ msgstr "Guildes" -#~ msgid "@@guild|Invite %s@@" -#~ msgstr "@@guilde|Invite %s@@" - -#~ msgid "@@party|Invite %s to join your party@@" -#~ msgstr "@@partie| Invitation de %s à joindre votre partie @@" - #~ msgid "@@split|Split@@" #~ msgstr "@@split|Partager@@" diff --git a/po/he.po b/po/he.po index cb515b60..ae443f32 100644 --- a/po/he.po +++ b/po/he.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-10-20 00:23+0000\n" "Last-Translator: Ddorda \n" "Language-Team: Hebrew \n" @@ -17,2221 +17,2188 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "קנה" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "מחיר: %d זהב / סה\"כ %d זהב" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "יציאה" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "תיאור: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "השפעה: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "עצור" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "מכר" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "ביטול" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "אשר מחיקת שחקן" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "האם אתה בטוח כי ברצונך למחוק את השחקן?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 #, fuzzy msgid "Select Character" msgstr "צור שחקן" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "שם: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "רמה: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "רמה: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "זהב: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "חדש" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "מחק" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "הקודם" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "הבא" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "אישור" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "צור שחקן" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "שם:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "צבע שיער:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "תיספורת:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "צור" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "החלף שרת" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "צור" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "שרת:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "משנה OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "גבוה" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "פורט:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "שרת:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "כן" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "לא" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "מתחבר..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "השתמש" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "ציוד" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "הורד" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "ציוד" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "החזק" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "השלך" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "בחר כמות חפצים לסחור." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "בחר כמות חפצים להשליך." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "התחברות" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "סיסמה:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "פורט:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "הרשם" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "מצב" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "כישורים" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "קיצור-דרך" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "הגדרות" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "מיני-מפה" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "הרשם" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|סחור עם %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|תקוף את %s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " -msgstr "" +#: src/gui/popupmenu.cpp:89 +#, fuzzy, c-format +msgid "@@ignore|Ignore %s@@" +msgstr "@@guild|הזמן את %s@@" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "@@party|הזמן את %s להצטרף למסיבה@@" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|דבר אל NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|ביטול@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|הרם %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|החזק@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|החזק@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Use@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|השלך@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "מתחבר..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "מתחבר..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "מתחבר..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "אשר:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "זכר" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "נקבה" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "שם המשתמש חייב להכיל לפחות %d תוים." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "שם המשתמש חייב להכיל פחות מ-%d תוים." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "הסיסמה חייבת להכיל לפחות %d תוים." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "הסיסמה חייבת להכיל פחות מ-%d תוים." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "הסיסמאות אינן תואמות." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "שגיאה" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "צליל" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "עוצמת SFX" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "עוצמת מוזיקה" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "אשר" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "אתחל חלונות" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "וידאו" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "שמע" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "ג'ויסטיק" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "מקלדת" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "לחץ על הכפתור בכדי להתחיל בכיול" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "כייל" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "אפשר ג'ויסטיק" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "עצור" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "סובב את המקל" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "מחק" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "שם:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "מסך מלא" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "‏OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "סמן-עכבר מותאם" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "הגבלת FPS:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "אטימות Gui" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "תווך גלילה" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "עצלנות גלילה" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "אופף FX" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "כבוי" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "נמוך" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "גבוה" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "מסך מלא" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "מחליף למסך מלא" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "נדרש איתחול כדי שהשינויים יהיו ברי-תוקף." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "משנה OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "אישור שינויים עבור OpenGL דורש איתחול." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "נדרש איתחול כדי שהשינויים יהיו ברי-תוקף." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "נדרש איתחול כדי שהשינויים יהיו ברי-תוקף." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "כישורים" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "השתמש" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "רמה: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "זהב: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "רמה: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "מצב" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "התקפה %+d" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "הגנה %+d" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "התקפה %+d" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "הגנה %+d" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "עוצמה:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "זריזות:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "חיוניות:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "תבונה:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "מיומנות:" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "הוסף" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "אתה מקבל %d זהב." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "אתה נותן:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "ביטול" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "האם אתה בטוח כי ברצונך למחוק את השחקן?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "התקפה %+d" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "התקפה %+d" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "אתחל חלונות" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "פצל" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "קיצור-דרך" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "אתחל חלונות" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "מצב" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "ציוד" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "ציוד" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "אתחל חלונות" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "אתחל חלונות" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "אתחל חלונות" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "אתחל חלונות" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "קיצור-דרך" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "החלף שרת" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "מתחבר..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "מתחבר..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "מתחבר..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "שם: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "מתחבר..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "ציוד" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "צור" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" @@ -2281,12 +2248,6 @@ msgstr "" #~ msgid "Guilds" #~ msgstr "גילדות" -#~ msgid "@@guild|Invite %s@@" -#~ msgstr "@@guild|הזמן את %s@@" - -#~ msgid "@@party|Invite %s to join your party@@" -#~ msgstr "@@party|הזמן את %s להצטרף למסיבה@@" - #~ msgid "@@split|Split@@" #~ msgstr "@@split|פצל@@" diff --git a/po/hr.po b/po/hr.po index 181f66e2..5ac00e68 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-12-28 23:36+0000\n" "Last-Translator: Dino Paskvan \n" "Language-Team: Croatian \n" @@ -17,2197 +17,2166 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Kupi" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Cijena: %d zlatnika / Ukupno: %d zlatnika" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Izlaz" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Opis: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Učinak: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Poništi" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Potvrdi Brisanje Lika" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Da li ste sigurni da želite obrisati ovog lika?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 #, fuzzy msgid "Select Character" msgstr "Stvori Lika" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Ime: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Nivo: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nivo: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Novac: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Novi" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Obriši" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Prethodni" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Slijedeći" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "U redu" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Stvori Lika" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Ime:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Boja kose:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Frizura:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Stvori" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 msgid "Select Server" msgstr "" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Stvori" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 msgid "Highlight" msgstr "" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 msgid "Party" msgstr "" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 msgid "Server" msgstr "" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Da" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Ne" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Spajanje..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Upotrijebi" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Oprema" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Skini opremu" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Zalihe" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Opremi" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Ispusti" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Odaberi količinu predmeta za razmjenu." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Odaberi količinu predmeta za ispuštanje." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Korisničko ime" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Lozinka" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Registriraj se" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Stanje" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Vještine" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Kratica" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Podešavanje" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Karta" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registriraj se" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, c-format +msgid "@@trade|Trade With %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:79 -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, c-format +msgid "@@attack|Attack %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "Zalihe" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "Skini opremu" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Spajanje..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Spajanje..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Spajanje..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "Muško" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "Žensko" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "" -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Greška" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Obriši" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Ime:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "fullscreen" msgstr "" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "" -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "" -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Vještine" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Upotrijebi" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Nivo: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Novac: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Nivo: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Stanje" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Snaga:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Okretnost:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Vitalnost:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Inteligencija:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "Spretnost:" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Poništi" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Da li ste sigurni da želite obrisati ovog lika?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 msgid "Attack" msgstr "" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 msgid "Stop Attack" msgstr "" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 msgid "Hide Windows" msgstr "" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Razdvoji" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Kratica" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 msgid "Help Window" msgstr "" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Stanje" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Zalihe" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Oprema" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 msgid "Chat Window" msgstr "" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 msgid "Setup Window" msgstr "" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 msgid "Debug Window" msgstr "" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 msgid "Emote Window" msgstr "" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Kratica" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 msgid "Select OK" msgstr "" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Spajanje..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Spajanje..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Spajanje..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Ime: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Spajanje..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Zalihe" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Stvori" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/id.po b/po/id.po index 43c1e9fc..95942b10 100644 --- a/po/id.po +++ b/po/id.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-03-26 09:11+0000\n" "Last-Translator: ActiveFile \n" "Language-Team: Indonesian \n" @@ -17,2214 +17,2181 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Beli" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Harga: %d GP / Jumlah: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Keluar" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Deskripsi: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Efek: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Berhenti" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Jual" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Batal" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Apakah anda bersungguh-sungguh ingin menghapus karakter ini?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Pilih Karakter" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nama: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Tingkatan: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Tingkatan: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Uang: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Buat baru" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Hapus" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Sebelumnya" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Berikutnya" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Buat Karakter" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Nama:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Warna Rambut:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Gaya Rambut:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Buat" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Pilih Karakter" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Buat" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Mengubah OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "tinggi" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Port:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Server:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Ya" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Tidak" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Menyambung..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Gunakan" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Perlengkapan" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventaris" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Jatuh" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Pilih jumlah item yang mau di perdagangkan" -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Pilih jumlah item yang mau di buang" -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Login" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Kata Sandi:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Pertahankan" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Mendaftar" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Status" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Keahlian" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Tombol Singkat" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Atur" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMap" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Mendaftar" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Dagang Dengan %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|Serang%s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "Inventaris" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Bicara dengan NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Batal@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Ambil %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Melengkapi@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Melengkapi@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Gunakan@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Buang@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Menyambung..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Menyambung..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Menyambung..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Konfirmasi:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Panjang username setidak-tidaknya %d karakter" -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Panjang kata-sandi setidak-tidaknya %d karakter" -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Kata sandi tidak sama." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Kesalahan" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Suara" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Volume sfx" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Volume Musik" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Terapkan" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Suara" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Tekan tombol untuk memulai kalibrasi" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Kalibrasi" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Membolehkan joistik" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Berhenti" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Memutar tongkat" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Hapus" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Nama:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Layar penuh" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "Batas FPS" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Radius gulungan" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "mati" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "rendah" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "tinggi" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Layar penuh" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Mengganti ke layar penuh" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "Memulai dari awal di butuhkan untuk melihat efek" -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Mengubah OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "Mendaftar perubahan ke OpenGL membutuhkan memulai dari awal" -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Memulai dari awal di butuhkan untuk melihat efek" -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Memulai dari awal di butuhkan untuk melihat efek" -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Keahlian" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Gunakan" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Tingkatan: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Uang: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Tingkatan: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Status" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "Serangan %+d" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "Pertahanan %+d" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "Serangan %+d" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "Pertahanan %+d" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Kekuatan" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Daya/Tenaga Hidup" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Daya/Tenaga Hidup" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Kecerdasan" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "Ketangkasan" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Tambah" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Anda mendapatkan %d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Anda memberikan:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Batal" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Apakah anda bersungguh-sungguh ingin menghapus karakter ini?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Serangan %+d" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Serangan %+d" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 msgid "Hide Windows" msgstr "" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Pecah" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Tombol Singkat" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 msgid "Help Window" msgstr "" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Status" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inventaris" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Perlengkapan" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 msgid "Chat Window" msgstr "" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 msgid "Setup Window" msgstr "" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 msgid "Debug Window" msgstr "" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 msgid "Emote Window" msgstr "" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Tombol Singkat" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Pilih Karakter" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Menyambung..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Menyambung..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Menyambung..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nama: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Menyambung..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inventaris" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Buat" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/it.po b/po/it.po index 3e5bf322..2b56c119 100644 --- a/po/it.po +++ b/po/it.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2007-12-03 01:45+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: Italian\n" @@ -19,2220 +19,2187 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Compra" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Prezzo: %d GP / Totale: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Esci" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Descrizione : %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effetto : %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Ferma" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Vendi" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancella" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Sei sicuro di voler cancellare questo personaggio?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Scelta Personaggio" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nome : %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Livello: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Livello: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Monete: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Nuovo" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Elimina" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Precedente" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Prossimo" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Crea Personaggio" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Nome :" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Colore Capelli" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Stile Capelli:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Create" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Scelta Personaggio" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Create" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Modifica OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "Alto" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Porta:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Server:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Si" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "No" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Connessione..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Usa" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipaggiamento" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Rimuovi" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventario" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Equipaggia" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Lascia" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Seleziona la quantità di oggetti da scambiare." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Seleziona la quantità di oggetti da lasciare." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Autenticazione" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Password:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Porta:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Mantieni" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Registra" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Stato" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Abilità" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Scorciatoia" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Impostazioni" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Mini mappa" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registra" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Scambia Con %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|Attacca %s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "Inventario" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Parla con NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancella@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Raccogli %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equipaggia@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Equipaggia@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@usa|Usa@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Lascia@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Connessione..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Connessione..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Connessione..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Conferma:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Il nome utente deve contenere almeno %d caratteri." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Il nome utente deve avere meno di %d caratteri." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "La password deve essere lunga almeno %d caratteri." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "La password deve contenere meno di %d caratteri." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Le password non corrispondono." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Errore" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Suono" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Volume effetti sonori" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Volume musica" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Applica" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Resetta finestre" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Premi il pulsante per cominciare la calibrazione" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Calibra" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Abilita joystick" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Ferma" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Ruota la manopola" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Elimina" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Nome :" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Schermo intero" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Cursore personalizzato" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "Limita FPS:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Opacità IU" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Raggio dello scroll" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "Lentezza dello scroll" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Suoni ambientali" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "Spento" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "Basso" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "Alto" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Schermo intero" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Modalità a schermo intero" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "Riavvio necessario affinchè i cambiamenti abbiano effetto." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Modifica OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "Applicare le modifiche ad OpenGL richiede il riavvio." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Riavvio necessario affinchè i cambiamenti abbiano effetto." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Riavvio necessario affinchè i cambiamenti abbiano effetto." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Abilità" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Usa" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Livello: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Monete: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Livello: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Stato" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "Attacco %+d" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "Difesa %+d" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "Attacco %+d" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "Difesa %+d" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Forza:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Agilità:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Vitalità:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Intelligenza:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "Destrezza:" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Aggiungi" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Ottieni %d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Dai:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Cancella" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Sei sicuro di voler cancellare questo personaggio?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Attacco %+d" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Attacco %+d" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Resetta finestre" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Lascia" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Scorciatoia" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Resetta finestre" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Stato" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inventario" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Equipaggiamento" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Resetta finestre" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Resetta finestre" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Resetta finestre" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Resetta finestre" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Scorciatoia" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Scelta Personaggio" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Connessione..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Connessione..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Connessione..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nome : %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Connessione..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inventario" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Create" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/ja.po b/po/ja.po index 9bbe1a7d..76d6d9e2 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-06-28 16:27+0000\n" "Last-Translator: fate \n" "Language-Team: Japanese \n" @@ -17,2196 +17,2164 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "買う" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "価格: %d GP / 合計: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "終了" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "名状: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "効用: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "取消" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "このキャラは消してもいいですか?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "キャラを選択" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "名前: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "レベル: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "レベル: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "GP: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "新規" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "削除" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "前へ" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "次へ" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "了解" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "キャラを作成" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "名前:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "髪の色:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "髪型:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "作成" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "キャラを選択" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "作成" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "サーバ:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 msgid "Highlight" msgstr "" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "ポート:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "サーバ:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "はい" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "いいえ" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "接続しています..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "使う" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "" -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "" -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "ログイン" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "パスワード:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "ポート:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "状態" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "セットアップ" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 msgid "Reset" msgstr "" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, c-format +msgid "@@trade|Trade With %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|%sを攻撃する@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " +#: src/gui/popupmenu.cpp:106 +#, c-format +msgid "@@party-invite|Invite %s to party@@" msgstr "" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|NPCを喋る@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|使う@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|使う@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "接続しています..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "接続しています..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "接続しています..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "パスワードが一致していません。" -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "エラー" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "音声" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "削除" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "名前:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "fullscreen" msgstr "" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "" -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "" -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "使う" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "レベル: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "GP: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "レベル: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "状態" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "筋力:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "素早さ:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "体力:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "知性:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "敏捷:" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "取消" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "このキャラは消してもいいですか?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 msgid "Attack" msgstr "" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 msgid "Stop Attack" msgstr "" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 msgid "Hide Windows" msgstr "" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "分割" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, c-format msgid "Item Shortcut %d" msgstr "" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 msgid "Help Window" msgstr "" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "状態" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 msgid "Inventory Window" msgstr "" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 msgid "Equipment WIndow" msgstr "" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 msgid "Chat Window" msgstr "" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 msgid "Setup Window" msgstr "" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 msgid "Debug Window" msgstr "" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 msgid "Emote Window" msgstr "" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, c-format msgid "Emote Shortcut %d" msgstr "" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "キャラを選択" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "接続しています..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "接続しています..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "接続しています..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "名前: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "接続しています..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 msgid "Invite to party" msgstr "" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "作成" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/nl.po b/po/nl.po index acf9c36f..e8a6e90c 100644 --- a/po/nl.po +++ b/po/nl.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2009-01-18 16:53+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: Dutch\n" @@ -17,2222 +17,2189 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-25 22:24+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Kopen" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Afsluiten" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Beschrijving: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effect: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 msgid "Shop" msgstr "Winkel" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Verkopen" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Annuleren" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Weet je zeker dat je deze personage wilt verwijderen?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Kies Personage" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Naam: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Geld: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Nieuw" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Verwijderen" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Vorige" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Volgende" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "OK" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "Goud: %d" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Personage Aanmaken" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Naam:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Haarkleur:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Haarstijl:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Aanmaken" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 msgid "Select Server" msgstr "Server Selecteren" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "OK" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Aanmaken" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 #, fuzzy msgid "Global announcement: " msgstr "/announce: Globale aankondiging (alleen voor GM)" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, fuzzy, c-format msgid "Global announcement from %s: " msgstr "/announce: Globale aankondiging (alleen voor GM)" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 #, fuzzy msgid "Unknown item" msgstr "Onbekende opdracht" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "Onbekende opdracht" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "Zitten niet mogelijk!" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "Het ziet ernaar uit dat je meer geld nodig hebt... ;-)" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "Je draagt teveel bij je om dit te doen!" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Veranderen van OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "/announce: Globale aankondiging (alleen voor GM)" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "/who: Geef het aantal online gebruikers weer" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "Commando: /announce " -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "Commando: /clear" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "Commando: /help" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "Commando: /help " -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 #, fuzzy msgid "Command: /present" msgstr "Commando: /where" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 #, fuzzy msgid "Command: /record " msgstr "Commando: /clear" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 #, fuzzy msgid "Command: /record" msgstr "Commando: /clear" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 #, fuzzy msgid "Command: /toggle " msgstr "Commando: /announce " -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 #, fuzzy msgid "Command: /toggle" msgstr "Commando: /clear" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "Commando: /where" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 #, fuzzy msgid "Command: /msg " msgstr "Commando: /announce " -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "Type /help voor een lijst van commando's." -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "hoog" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 #, fuzzy msgid "Player" msgstr "Spelers" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 #, fuzzy msgid "Whisper" msgstr "%s fluistert:" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Spelen" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Server:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Ja" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Nee" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Verbinden..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Gebruiken" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Uitrusting" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Afdoen" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "Sluiten" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventaris" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Uitrusten" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Neerleggen" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Selecteer het aantal exemplaren om te verhandelen" -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Selecteer het aantal exemplaren om neer te leggen" -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Inloggen" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Wachtwoord:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Poort:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Behouden" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Aanmelden" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Status" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Vaardigheden" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Sneltoets" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Configureren" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Kaartje" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Aanmelden" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Handelen met %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|%s aanvallen@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "Inventaris" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Praat met NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Annuleren@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|%s oppakken@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Uitrusten@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Gebruiken@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Neerleggen@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Verbinden..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Verbinden..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Verbinden..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Bevestigen:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "Mannelijk" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "Vrouwelijk" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "De gebruikersnaam moet uit ten minste %d tekens bestaan." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "De gebruikersnaam moet uit minder dan %d tekens bestaan." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Het wachtwoord moet uit ten minste %d tekens bestaan." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Het wachtwoord moet uit minder dan %d tekens bestaan." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Wachtwoorden komen niet overeen." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Fout" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Geluid" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Volume van geluiden" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Muziek volume" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Toepassen" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Vensters in beginstand" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Audio" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Toetsenbord" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 #, fuzzy msgid "Colors" msgstr "Sluiten" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "Spelers" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Druk op de knop om het kalibreren te starten" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Kalibreren" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Joystick activeren" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Stoppen" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Maak rondjes met de stick" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "Toewijzen" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "Standaard" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 msgid "Name" msgstr "Naam" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "Relatie" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "Neutraal" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "Vriend" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "Genegeerd" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Volledig scherm" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Aangepaste cursor" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "FPS limiet:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Dekking van de GUI" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Scroll radius" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "Scroll vertraging" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Omgevingseffecten" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "uit" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "laag" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "hoog" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "gemiddeld" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "max" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Volledig scherm" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Overgaan naar volledig scherm" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "De veranderingen worden pas actief na opnieuw opstarten" -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Veranderen van OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "Het wisselen van of naar OpenGL wordt pas actief na opnieuw opstarten" -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "De veranderingen worden pas actief na opnieuw opstarten" -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "De veranderingen worden pas actief na opnieuw opstarten" -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Vaardigheden" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Gebruiken" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, c-format msgid "Job: %d" msgstr "" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, c-format msgid "Money: %d GP" msgstr "Geld: %d GP" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 msgid "Job:" msgstr "" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 msgid "Stats" msgstr "" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "Totaal" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "Kosten" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 msgid "Strength" msgstr "" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 msgid "Agility" msgstr "" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 msgid "Vitality" msgstr "" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 msgid "Intelligence" msgstr "" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 msgid "Dexterity" msgstr "" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Toevoegen" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Jij krijgt %d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Je geeft:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "Actualiseren..." -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "Spelen" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "Voltooid" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Annuleren" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 #, fuzzy msgid "Trade completed." msgstr "Voltooid" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "Naamloos" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 #, fuzzy msgid "unnamed" msgstr "Naamloos" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 #, fuzzy msgid "Saving screenshot failed!" msgstr "Zitten niet mogelijk!" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Weet je zeker dat je deze personage wilt verwijderen?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 msgid "Attack" msgstr "" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 #, fuzzy msgid "Talk" msgstr "Totaal" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 msgid "Stop Attack" msgstr "" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 #, fuzzy msgid "Target Player" msgstr "Spelers" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Vensters in beginstand" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Splitsen" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Sneltoets" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Vensters in beginstand" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Status" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inventaris" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Uitrusting" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Vensters in beginstand" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Vensters in beginstand" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Vensters in beginstand" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Vensters in beginstand" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Sneltoets" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Server Selecteren" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Verbinden met de account server..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Verbinden met de karakter server..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Verbinden met de map server..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Naam: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "De verbinding met de server werd verbroken!" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 msgid "Connecting to map server..." msgstr "Verbinden met de map server..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "Verbinden met de karakter server..." -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "Verbinden met de account server..." -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inventaris" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 #, fuzzy msgid "Command: /party " msgstr "Commando: /help " -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Aanmaken" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 #, fuzzy msgid "Command: /party new " msgstr "Commando: /announce " -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 #, fuzzy msgid "Command: /party prefix" msgstr "Commando: /clear" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 #, fuzzy msgid "Command: /party leave" msgstr "Commando: /clear" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 #, fuzzy msgid "Unknown /party command." msgstr "Onbekende opdracht" -#: ../src/party.cpp:215 +#: src/party.cpp:215 #, fuzzy msgid "Type /help party for a list of options." msgstr "Type /help voor een lijst van commando's." diff --git a/po/pl.po b/po/pl.po index ce8c493e..081876f0 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: The Mana World 0.1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-10-10 05:26+0000\n" "Last-Translator: Michał Trzebiatowski \n" "Language-Team: \n" @@ -19,2221 +19,2188 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Kup" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Cena: %d GP / Razem: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Wyjdź" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Opis: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Efekt: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Zatrzymaj" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Sprzedaj" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Anuluj" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Czy jesteś pewien, że chcesz usunąć tę postać?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Wybierz postać" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Imię: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Poziom: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Poziom: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Pieniądze: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Nowa" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Usuń" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Poprzedni" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Następny" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Stwórz postać" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Imię:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Kolor włosów:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Fryzura:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Stwórz" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Wybierz postać" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Stwórz" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Serwer:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Zmień ustawienia OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "wysokie" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Port:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Serwer:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Tak" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Nie" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Łączenie..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Użyj" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Ekwipunek" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Zdejmij" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inwentarz" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Załóż" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Upuść" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Wybierz ilość przedmiotów do wymiany." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Wybierz ilość przedmiotów do upuszczenia." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Użytkownik" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Hasło:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Zachowaj" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Rejestruj" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Stan" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Zdolności" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Skrót" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Konfiguracja" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMapa" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Rejestruj" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Targ z %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|Atakuj %s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "Inwentarz" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Rozmawiaj z NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Anuluj@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Podnieś %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Załóż@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Załóż@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Użyj@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Upuść@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Łączenie..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Łączenie..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Łączenie..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Potwierdź:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "Mężczyzna" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "Kobieta" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Nazwa użytkownika musi być długa na conajmniej %d znaków." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Nazwa użytkownika musi mieć mniej niż %d znaków." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Hasło musi mieć conajmniej %d znaków." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Hasło nie może mieć więcej jak %d znaków." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Hasła nie zgadzają się." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Błąd" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Dźwięk" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Głośność efektów dźwiękowych" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Głośność muzyki" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Zastosuj" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Zresetuj okna" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Obraz" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Dźwięk" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Wciśnij przycisk aby rozpocząć kalibrację" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Kalibruj" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Włącz joystick" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Zatrzymaj" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Obróć drążek" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Usuń" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Imię:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Pełen ekran" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Własny kursor" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "Limit FPS:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Przezroczystość GUI" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Skok przy przewijaniu ekranu" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "Opóźnienie przy przewijaniu ekranu" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Dźwięki otoczenia" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "wyłączone" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "niskie" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "wysokie" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Pełen ekran" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Przełączanie na pełen ekran" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "Wymagane ponowne uruchomienia aby zastosować zmiany." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Zmień ustawienia OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "" "Zastosowywanie zmian w konfiguracji OpenGL wymaga ponownego uruchomienia." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Wymagane ponowne uruchomienia aby zastosować zmiany." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Wymagane ponowne uruchomienia aby zastosować zmiany." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Zdolności" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Użyj" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Poziom: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Pieniądze: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Poziom: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Stan" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "Atak %+d" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "Obrona %+d" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "Atak %+d" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "Obrona %+d" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Siła:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Zwinność:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Witalność:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Inteligencja:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "Zręczność:" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Dodaj" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Otrzymujesz %d GP" -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Dajesz:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Anuluj" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Czy jesteś pewien, że chcesz usunąć tę postać?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Atak %+d" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Atak %+d" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Zresetuj okna" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Podziel" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Skrót" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Zresetuj okna" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Stan" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inwentarz" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Ekwipunek" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Zresetuj okna" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Zresetuj okna" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Zresetuj okna" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Zresetuj okna" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Skrót" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Wybierz postać" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Łączenie..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Łączenie..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Łączenie..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Imię: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Łączenie..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inwentarz" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Stwórz" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/pt.po b/po/pt.po index 75116224..1bbee949 100644 --- a/po/pt.po +++ b/po/pt.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-02-03 10:14+0000\n" "Last-Translator: Tiago Silva \n" "Language-Team: Portuguese \n" @@ -17,2232 +17,2199 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Comprar" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Preço: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Sair" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Descrição: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Efeito: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Parar" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Vender" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancelar" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Tem a certeza que quer apagar este personagem" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Seleccione um Personagem" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nome: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Nível: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nível: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Dinheiro: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Novo" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Eliminar" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Anterior" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Seguinte" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Criar Personagem" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Nome:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Cor de Cabelo:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Estilo do Cabelo:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Criar" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Seleccione um Personagem" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Criar" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Servidor:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Mudando OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "elevado" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Porta:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Servidor:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Sim" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Não" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Conectando..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Usar" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipamento" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Desequipar" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventário" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Equipar" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Largar" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Seleccionar a quantidade de itens a negociar." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Seleccionar a quantidade de itens a largar." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Autenticar" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Senha:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Porta:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Manter" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Registo" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Estado" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Competências" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Atalho" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Configuração" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMapa" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registo" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Negociar com %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|Atacar %s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "Inventário" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Falar com o NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancelar@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Apanhar %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equipar@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Equipar@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Usar@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Largar@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Conectando..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Conectando..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Conectando..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Confirmar:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "O nome de utilizador necessita de pelo menos %d caracteres." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "O nome de utilizador só pode ter %d caracteres." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "A password necessita de pelo menos %d caracteres." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "A password só pode ter até %d caracteres." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "As senhas não coincidem." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Erro" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Som" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Volume dos Efeitos" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Volume da Música" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Aplicar" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Reiniciar Janelas" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Vídeo" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Áudio" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Pressione o botão para começar a calibragem" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Calibrar" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Habilitar Joystick" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Parar" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Rode o manipulo" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Eliminar" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Nome:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Ecrã completo" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Cursor personalizado" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "Limite de FPS:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Opacidade do Interface" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Efeitos Ambientais" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "desligado" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "baixo" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "elevado" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Ecrã completo" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Mudar para ecrã completo" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "É necessário reiniciar para as alterações terem efeito." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Mudando OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "É necessário reiniciar para as alterações ao OpenGl terem efeito." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "É necessário reiniciar para as alterações terem efeito." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "É necessário reiniciar para as alterações terem efeito." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Competências" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Usar" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Nível: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Dinheiro: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Nível: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Estado" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "" "Copy text \t\r\n" "Ataque %+d" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "" "Copy text \t\r\n" "Defesa %+d" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "" "Copy text \t\r\n" "Ataque %+d" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "" "Copy text \t\r\n" "Defesa %+d" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Força:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Agilidade:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Vitalidade:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Inteligência:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "Destreza:" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Adicionar" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Recebe %d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Dá:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Cancelar" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Tem a certeza que quer apagar este personagem" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "" "Copy text \t\r\n" "Ataque %+d" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "" "Copy text \t\r\n" "Ataque %+d" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Reiniciar Janelas" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Dividir" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Atalho" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Reiniciar Janelas" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Estado" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inventário" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Equipamento" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Reiniciar Janelas" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Reiniciar Janelas" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Reiniciar Janelas" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Reiniciar Janelas" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Atalho" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Seleccione um Personagem" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Conectando..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Conectando..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Conectando..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nome: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Conectando..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inventário" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Criar" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index c99e1076..82845f7b 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2009-01-21 20:48+0000\n" "Last-Translator: Bruno \n" "Language-Team: Brazilian Portuguese \n" @@ -17,2246 +17,2212 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-25 22:24+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Comprar" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Preço: %d GP / Total: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Sair" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Descrição: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Efeito: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 msgid "Shop" msgstr "Loja" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Vender" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Cancelar" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Confimar exclusão do personagem" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Tem certeza que deseja excluir este personagem?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Selecionar personagem" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Nome: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Nível: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "Nível de Trabalho: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Dinheiro: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Novo" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Excluir" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Anterior" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Próximo" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "Ouro: %d" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Criar Personagem" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Nome:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Cor do Cabelo:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Estilo do Cabelo:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Criar" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 msgid "Select Server" msgstr "Selecionar Servidor" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "OK" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Criar" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 #, fuzzy msgid "Global announcement: " msgstr "Anúncio geral:" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, fuzzy, c-format msgid "Global announcement from %s: " msgstr "Anúncio geral de %s:" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Servidor:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "Sussurrando para %s: %s" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 #, fuzzy msgid "Unknown item" msgstr "Comando desconhecido" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "Comando desconhecido" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "Falha na negociação!" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "Falha no Emote!" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "Falha ao sentar!" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "Falha ao criar Chat!" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "Impossivel entrar no grupo!" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "Impossivel gritar!" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "Você ainda não tem nivel necessário!" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "HP insuficiente!" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "SP insuficiente!" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "Você não tem nenhuma nota armazenada" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "Você não pode fazer isso agora!" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "Parece que você precisa de mais Zenyz... ;-)" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "Você não pode usar essa Skill com esse tipo de arma." -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "Você precisa de outra gema vermelha!" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "Você precisa de outra gema azul!" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "Você está com muita carga para fazer isso!" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "Hã? O que é isso?" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "Falha ao transportar..." -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "Não foi possível roubar nada..." -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "Veneno não surtiu efeito..." -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Trocando OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "--Ajuda--" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "/announce: Aviso geral (Apenas GM)" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "/clear: limpa esta janela" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "/help: Mostra esta ajuda" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 #, fuzzy msgid "/msg : Alternate form for /whisper" msgstr "/w : Forma mais curta para /whisper" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "/where: mostra o nome do mapa" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "/w : Forma mais curta para /whisper" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "/whisper : Envia uma mensagem particular" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "/who Mostra os jogadores online" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "Para mais informações, digite /help " -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "Comandos: /announce " -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "*** Disponivel apenas para GM's ***" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "Este comando envia uma mensagem para todos os jogadores online." -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "Comandos: /clear" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "Limpa os logs do chat anterior." -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "Comando: /help" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "Exibe uma lista de todos os comandos disponiveis." -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "Comando: /help " -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "Exibe o conteudo de ajuda de " -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 #, fuzzy msgid "Command: /present" msgstr "Comando: /where" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 #, fuzzy msgid "Command: /record " msgstr "Comandos: /clear" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 #, fuzzy msgid "This command starts recording the chat log to the file ." msgstr "Limpa os logs do chat anterior." -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 #, fuzzy msgid "Command: /record" msgstr "Comandos: /clear" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 #, fuzzy msgid "This command finishes a recording session." msgstr "Exibe o conteudo de ajuda de " -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 #, fuzzy msgid "Command: /toggle " msgstr "Comandos: /announce " -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 #, fuzzy msgid "Command: /toggle" msgstr "Comandos: /clear" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 #, fuzzy msgid "This command displays the return toggle status." msgstr "Mostra o nome do mapa atual." -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "Comando: /where" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "Mostra o nome do mapa atual." -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 #, fuzzy msgid "Command: /msg " msgstr "Comando: /w " -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "Comando: /whisper " -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "Comando: /w " -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "Envia uma mensagem para ." -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "Se possuir espaços, coloque dentro de parenteses (\")." -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "Comando: /who" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "Exibe o total de jogadores online." -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "Comando desconhecido." -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "Digite /help para uma lista de todos os comandos." -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "alto" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 #, fuzzy msgid "Player" msgstr "Jogadores" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 #, fuzzy msgid "Whisper" msgstr "%s sussura:" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Jogar" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Servidor:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Sim" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Não" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Conectando..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Usar" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipamento" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Desequipar" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "Ajuda" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "Fechar" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventório" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Equipar" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Descartar" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 #, fuzzy msgid "Slots: " msgstr "Pontos de habilidade: %d" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Selecionar montante de itens para negociar." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Selecionar montante de itens para descartar." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Login" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Senha:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Porta:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Manter" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Registrar" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Status" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Habilidades" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Atalho" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Configurar" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMapa" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registrar" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@Negociar|Negociar com %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@atacar|Atacar %s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -#, fuzzy -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, fuzzy, c-format +msgid "@@disregard|Disregard %s@@" msgstr "Desconsiderado" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " -msgstr "" +#: src/gui/popupmenu.cpp:89 +#, fuzzy, c-format +msgid "@@ignore|Ignore %s@@" +msgstr "@@guilda|convidar %s@@" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "@@grupo|Convidar %s para entrar para o seu grupo" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@falar|Falar com NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancelar|Cancelar@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pegar|Pegar %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 msgid "@@use|Unequip@@" msgstr "@@usar|Desequipar@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@usar|Equipar@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@usar|Usar@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@descartar|Descartar@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Conectando..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Conectando..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Conectando..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Confirmar:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "Homem" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "Mulher" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "O nome do usuário precisa ter pelo menos %d caracteres." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "O nome do usuário tem que ser inferior a %d caracteres." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "A senha deve ter pelo menos %d caracteres." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "A senha deve ser menor que %d caracteres." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Senhas não conferem." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Erro" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Som" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Volume Sfx" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Volume da Música" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Aplicar" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Restaurar janelas" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Vídeo" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Áudio" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Teclado" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 #, fuzzy msgid "Colors" msgstr "Fechar" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "Jogadores" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Aperto o botão para começar a calibração" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Calibrar" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Habilitar joystick" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Parar" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Gire o bastão" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "Atribuir" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "Padrão" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "Conflitos nas teclas detectado." -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "Corrija-os, ou o jogo irá se comportar de forma estranha." -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 msgid "Name" msgstr "Nome" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "Relação" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "Neutro" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "Amigo" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "Desconsiderado" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "Ignorado" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "Salvar lista de jogadores" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "Permitir trocas" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "Permitir sussuros" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "Quando ignorado:" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Tela cheia" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Cursor customizado" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 #, fuzzy msgid "Particle effects" msgstr "Detalhe de partículas" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "Limite FPS:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Opacidade da GUI" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Rolar radius" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "Rolar Laziness" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Ambiente FX" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "Detalhe de partículas" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "desligado" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "baixo" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "alto" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "médio" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "máximo" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Tela cheia" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Mudando para Tela cheia" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "É preciso reiniciar para as mudanças terem efeito." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Trocando OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "Aplicando mudança a OpenGL requer reiniciar o jogo." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "É preciso reiniciar para as mudanças terem efeito." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "É preciso reiniciar para as mudanças terem efeito." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Habilidades" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "Pontos de habilidade: %d" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "Acima" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Usar" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, c-format msgid "Job: %d" msgstr "Trabalho: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, c-format msgid "Money: %d GP" msgstr "Dinheiro: %d GP" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Trabalho: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 msgid "Stats" msgstr "Status" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "Total" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "Custo" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 msgid "Attack:" msgstr "Ataque:" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 msgid "Defense:" msgstr "Defesa:" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 msgid "M.Attack:" msgstr "M. Ataque:" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 msgid "M.Defense:" msgstr "M. Defesa:" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "% Acuracidade:" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "% Evasão:" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "% Reflexo:" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 msgid "Strength" msgstr "Força" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 msgid "Agility" msgstr "Agilidade" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 msgid "Vitality" msgstr "Vitalidade" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 msgid "Intelligence" msgstr "Inteligência" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 msgid "Dexterity" msgstr "Destreza" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "Sorte" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "Pontos de Status Restantes: %d" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 #, fuzzy msgid "Trade: You" msgstr "Comércio" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "Comércio" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Adicionar" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Voc pegou %d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Você dá:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" "Falha ao adicionar item. Você não pode duplicar um tipo de item na janela." -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "Atualizando..." -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "Jogar" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "Concluído" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 #, fuzzy msgid "You are not that alive anymore." msgstr "Você não pode fazer isso agora!" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 #, fuzzy msgid "You are no more." msgstr "Você não tem nenhuma nota armazenada" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 #, fuzzy msgid "You have ceased to be." msgstr "Você não tem nenhuma nota armazenada" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 #, fuzzy msgid "Trade with " msgstr "Comércio" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Cancelar" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 #, fuzzy msgid "Trade canceled." msgstr "Falha na negociação!" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 #, fuzzy msgid "Trade completed." msgstr "Concluído" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "Sem nome" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 #, fuzzy msgid "unnamed" msgstr "Sem nome" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 #, fuzzy msgid "Saving screenshot failed!" msgstr "Falha ao sentar!" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Tem certeza que deseja excluir este personagem?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Ataque:" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 #, fuzzy msgid "Talk" msgstr "Total" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Ataque:" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 #, fuzzy msgid "Target Player" msgstr "Jogadores" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Restaurar janelas" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Dividir" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Atalho" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Restaurar janelas" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Status" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inventório" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Equipamento" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 #, fuzzy msgid "Skill Window" msgstr "Pontos de habilidade: %d" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Restaurar janelas" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Restaurar janelas" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Restaurar janelas" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Falha no Emote!" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Atalho" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Selecionar Servidor" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 #, fuzzy msgid " -h --help : Display this help" msgstr "/help: Mostra esta ajuda" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Conectando ao servidor de contas..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Conectando ao servidor de personagens..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Conectando ao servidor de mapas..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Nome: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "Você foi desconectado do servidor!" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 msgid "Connecting to map server..." msgstr "Conectando ao servidor de mapas..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "Conectando ao servidor de personagens..." -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "Conectando ao servidor de contas..." -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 #, fuzzy msgid "Could not create party." msgstr "Impossivel entrar no grupo!" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inventório" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 #, fuzzy msgid "Command: /party " msgstr "Comando: /help " -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Criar" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 #, fuzzy msgid "This command implements the partying function." msgstr "Exibe o conteudo de ajuda de " -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 #, fuzzy msgid "Command: /party new " msgstr "Comandos: /announce " -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 #, fuzzy msgid "This command sets the party prefix character." msgstr "Limpa os logs do chat anterior." -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 #, fuzzy msgid "Command: /party prefix" msgstr "Comandos: /clear" -#: ../src/party.cpp:201 +#: src/party.cpp:201 #, fuzzy msgid "This command reports the current party prefix character." msgstr "Limpa os logs do chat anterior." -#: ../src/party.cpp:209 +#: src/party.cpp:209 #, fuzzy msgid "Command: /party leave" msgstr "Comandos: /clear" -#: ../src/party.cpp:210 +#: src/party.cpp:210 #, fuzzy msgid "This command causes the player to leave the party." msgstr "Limpa os logs do chat anterior." -#: ../src/party.cpp:214 +#: src/party.cpp:214 #, fuzzy msgid "Unknown /party command." msgstr "Comando desconhecido." -#: ../src/party.cpp:215 +#: src/party.cpp:215 #, fuzzy msgid "Type /help party for a list of options." msgstr "Digite /help para uma lista de todos os comandos." @@ -2359,11 +2325,5 @@ msgstr "Digite /help para uma lista de todos os comandos." #~ msgid "Guilds" #~ msgstr "Guildas" -#~ msgid "@@guild|Invite %s@@" -#~ msgstr "@@guilda|convidar %s@@" - -#~ msgid "@@party|Invite %s to join your party@@" -#~ msgstr "@@grupo|Convidar %s para entrar para o seu grupo" - #~ msgid "Visible names" #~ msgstr "Nomes visíveis" diff --git a/po/ru.po b/po/ru.po index 8fce2cc6..6f319b0e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-01-08 11:50+0000\n" "Last-Translator: idle sign \n" "Language-Team: Russian \n" @@ -17,2220 +17,2187 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Купить" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Стоимость: %d GP / Всегоl: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Выход" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Описание: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Эффект: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Стоп" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Продать" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Отмена" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Вы уверены, что хотите удалить этого персонажа?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Выбор персонажа" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Имя: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Уровень: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Уровень: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Деньги: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Новый" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Удалить" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Предыдущий" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Следующий" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Создать персонажа" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Имя:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Цвет волос:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Стрижка:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Создать" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 #, fuzzy msgid "Select Server" msgstr "Выбор персонажа" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Создать" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Сервер:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Переключение на OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "выс." -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Порт:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Сервер:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Да" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Нет" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Соединение..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Использовать" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Снаряжение" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Снять" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Инвентарь" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Надеть" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Сбросить" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Сколько предметов продать." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Сколько предметов сбросить." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Вход" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Пароль:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Порт:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Оставить" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Зарегистрироваться" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Состояние" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Умения" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Клавиша" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Настройка" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "МиниКарта" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Зарегистрироваться" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Торговать с %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|Атаковать %s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "Инвентарь" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Говорить с NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancelОтмена@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Подобрать %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Надеть@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Надеть@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Использовать@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Сбросить@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Соединение..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Соединение..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Соединение..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Подтвердите:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Имя пользователя должно содержать не менее %d символов." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Имя пользователя не должно содержать более %d символов." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Пароль должен содержать не менее %d символов." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Пароль не должен содержать более %d символов." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Пароли не совпадают." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Ошибка" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Звук" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Громкость эффектов" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Громкость музыки" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Применить" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Восстановить расположение окон" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Видео" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Аудио" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Джойстик" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Нажмите кнопку, чтобы начать калибровку" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Калибровать" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Использовать джойстик" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Стоп" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Вращайте рукоять" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Удалить" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Имя:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "На полный экран" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Выборочный курсор" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "Ограничение кадр/с:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Прозрачность интерфейса" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Радиус прокрутки" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "Заторможенность прокрутки" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Эффекты окружающей среды" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "выкл" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "низ." -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "выс." -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "На полный экран" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Переключение в полноэкранный режим" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "Для вступления в силу выбранных настроек требуется перезагрузка игры." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Переключение на OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "Переход к OpenGL требует перезагрузки игры." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Для вступления в силу выбранных настроек требуется перезагрузка игры." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Для вступления в силу выбранных настроек требуется перезагрузка игры." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Умения" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Использовать" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Уровень: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Деньги: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Уровень: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "Состояние" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 #, fuzzy msgid "Attack:" msgstr "Атака %+d" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 #, fuzzy msgid "Defense:" msgstr "Защита %+d" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 #, fuzzy msgid "M.Attack:" msgstr "Атака %+d" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 #, fuzzy msgid "M.Defense:" msgstr "Защита %+d" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Сила:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Выносливость:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Живучесть:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Интеллект:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "Ловкость:" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Добавить" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Вы получили %d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Вы отдаете:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Отмена" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Вы уверены, что хотите удалить этого персонажа?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Атака %+d" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Атака %+d" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Восстановить расположение окон" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Разделить" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Клавиша" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Восстановить расположение окон" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Состояние" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Инвентарь" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Снаряжение" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Восстановить расположение окон" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Восстановить расположение окон" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Восстановить расположение окон" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Восстановить расположение окон" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Клавиша" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Выбор персонажа" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Соединение..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Соединение..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Соединение..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Имя: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "Соединение..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Инвентарь" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Создать" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/sk.po b/po/sk.po index cdd98179..24575e2c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-12-30 14:07+0000\n" "Last-Translator: TomasKovacik \n" "Language-Team: Slovak \n" @@ -17,2177 +17,2146 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Kúpiť" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Cena: %d GP / Spolu: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Ukončiť" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Popis: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effekt: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Zrušiť" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Potvrdte zmazanie postavy" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Naozaj chcete odstrániť túto postavu?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 #, fuzzy msgid "Select Character" msgstr "Vytvoriť postavu" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Level: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Peniaze: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Nový" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Vymazať" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Predchádzajúci" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Nasledujúci" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ano" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Vytvoriť postavu" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Meno" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Farba vlasov:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Štýl vlasov:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Vytvoriť" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 msgid "Select Server" msgstr "" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Vytvoriť" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 msgid "Highlight" msgstr "" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 msgid "Party" msgstr "" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 msgid "Server" msgstr "" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "" -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "" -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "" -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 msgid "Reset" msgstr "" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, c-format +msgid "@@trade|Trade With %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:79 -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, c-format +msgid "@@attack|Attack %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " +#: src/gui/popupmenu.cpp:106 +#, c-format +msgid "@@party-invite|Invite %s to party@@" msgstr "" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 msgid "Recorder" msgstr "" -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 msgid "Already recording." msgstr "" -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 msgid "Recording..." msgstr "" -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "Muž" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "Žena" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "" -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "Vymazať" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "Meno" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "fullscreen" msgstr "" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "" -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "" -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 msgid "use" msgstr "" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, fuzzy, c-format msgid "Job: %d" msgstr "Level: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Peniaze: %d" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "Level: %d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 msgid "Stats" msgstr "" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Sila:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 msgid "Agility" msgstr "" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 msgid "Vitality" msgstr "" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Inteligencia:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 msgid "Dexterity" msgstr "" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Zrušiť" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Naozaj chcete odstrániť túto postavu?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 msgid "Attack" msgstr "" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 msgid "Stop Attack" msgstr "" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 msgid "Hide Windows" msgstr "" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 msgid "Sit" msgstr "" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, c-format msgid "Item Shortcut %d" msgstr "" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 msgid "Help Window" msgstr "" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 msgid "Status Window" msgstr "" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 msgid "Inventory Window" msgstr "" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 msgid "Equipment WIndow" msgstr "" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 msgid "Chat Window" msgstr "" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 msgid "Setup Window" msgstr "" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 msgid "Debug Window" msgstr "" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 msgid "Emote Window" msgstr "" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, c-format msgid "Emote Shortcut %d" msgstr "" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 msgid "Select OK" msgstr "" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 msgid "Trying to connect to account server..." msgstr "" -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 msgid "Trying to connect to char server..." msgstr "" -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 msgid "Trying to connect to map server..." msgstr "" -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, c-format msgid "Map: %s" msgstr "" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 msgid "Connecting to map server..." msgstr "" -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 msgid "Invite to party" msgstr "" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Vytvoriť" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/sv.po b/po/sv.po index c0d2f18c..d036a23d 100644 --- a/po/sv.po +++ b/po/sv.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2009-01-29 01:20+0100\n" "Last-Translator: Kess Vargavind \n" "Language-Team: Swedish \n" @@ -17,2213 +17,2180 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "Köp" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Pris: %d GP / Totalt: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "Avsluta" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "Beskrivning: %s" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "Effekt: %s" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 msgid "Shop" msgstr "Affär" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "Sälj" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "Avbryt" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "Bekräfta borttagning av karaktär" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "Är du säker på att du vill ta bort den här karaktären?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 msgid "Select Character" msgstr "Välj karaktär" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "Namn: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "Nivå: %d" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "Jobbnivå: %d" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "Pengar: %d" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "Ny" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "Ta bort" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "Föregående" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "Nästa" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "Ok" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "Guld: %d" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "Skapa karaktär" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "Namn:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "Hårfärg:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "Frisyr:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "Skapa" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 msgid "Select Server" msgstr "Välj server" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "Ok" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "Skapa" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "Globalt meddelande: " -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "Globalt meddelande från %s: " -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "Server:" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "Viskar till %s: %s" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "Okänt kommando" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "Byteshandel misslyckades!" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "Kan inte visa smiley!" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "Kan inte sitta ned!" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "Kan inte skicka chattmeddelande!" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "Kan inte ansluta till gruppen!" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "Kan inte skrika!" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "Du har inte nått en tillräckligt hög nivå än!" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "Otillräckligt med HP!" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "Otillräckligt med SP!" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "Du har inga anteckningar!" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "Du kan inte göra det just nu!" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "Verkar som att du behöver mer zeny... ;-)" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "Det går inte att använda den här förmågan med det där vapenslaget!" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "Du behöver en till röd juvel!" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "Du behöver en till blå juvel!" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "Du bär på för mycket för att kunna göra det här!" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "Öh? Vad är det där?" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "Kartförflyttning misslyckades..." -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "Kunde inte stjäla något..." -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "Giftet tog inte..." -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 #, fuzzy msgid "Changing prefix to " msgstr "Ändrar OpenGL" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "-- Hjälp --" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "/announce: Globalt meddelande (endast GM)" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "/clear: Tömmer det här fönstret på text" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "/help: Visar den här hjälptexten" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "/where: Visar namnet på kartan där du befinner dig" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "/w : Kortare variant av /whisper" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "/whisper : Skickar ett privat meddelande till en spelare" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "/who: Visar antalet inloggade spelare" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "För mer information skriv /help " -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "Kommando: /announce " -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "*** endast en GM kan använda det här kommandot ***" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" "Det här kommandot skickar meddelandet till alla inloggade spelare." -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "Kommando: /clear" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "Det här kommandot tömmer chattloggen." -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "Kommando: /help" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "Det här kommandot visar en lista över alla tillgängliga kommandon." -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "Kommando: /help " -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "Det här kommandot ger mer information om ." -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 #, fuzzy msgid "Command: /record " msgstr "Kommando: /clear" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 #, fuzzy msgid "This command starts recording the chat log to the file ." msgstr "Det här kommandot tömmer chattloggen." -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 #, fuzzy msgid "Command: /record" msgstr "Kommando: /clear" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "Kommando: /where" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "Det här kommandot visar namnet på den karta där du befinner dig." -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "Kommando: /whisper " -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "Kommando: /w " -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "Det här kommandot skickar meddelandet till karaktären ." -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" "Om innehåller mellanslag, måste du sätta citattecken (\") runt det." -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "Kommando: /who" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "Det här kommandot visar antalet spelare som är inloggade just nu." -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "Okänt kommando." -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "Skriv /help för en lista med kommandon." -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "hög" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "Port:" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "Server:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "Ja" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "Nej" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "Ansluter..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "Använd" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Utrustning" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "Avrusta" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "Hjälp" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "Stäng" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventarium" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "Utrusta" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "Släpp" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "Utrymme: " -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "Vikt: " -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "Välj antal föremål att handla med." -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "Välj antal föremål att släppa." -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "Användarnamn" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "Lösenord:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "Port:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "Behåll" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "Registrera" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "Status" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "Färdigheter" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Genvägar" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "Inställningar" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Minikarta" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "Registrera" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@trade|Handla med %s@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@attack|Attackera %s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "Inventarium" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Prata med NPC@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Avbryt@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Plocka upp %s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 msgid "@@use|Unequip@@" msgstr "@@use|Avrusta@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@use|Utrusta@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@use|Använd@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@drop|Släpp@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "Ansluter..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "Ansluter..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "Ansluter..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "Bekräfta:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "Man" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "Kvinna" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Användarnamnet måste vara minst %d tecken långt." -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Användarnamnet måste vara kortare än %d tecken." -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Lösenordet måste vara minst %d tecken långt." -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Lösenordet måste vara kortare än %d tecken." -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "Lösenorden stämmer inte överens." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "Fel" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "Ljud" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "Volym för ljudeffekter" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "Musikvolym" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "Verkställ" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "Återställ fönster" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "Video" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "Ljud" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "Joystick" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "Tangentbord" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "Spelare" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "Klicka på knappen för att starta kalibreringen" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "Kalibrera" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "Aktivera joystick" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "Stopp" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "Rotera spaken" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "Tilldela" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "Förval" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "Samma tangent används på flera ställen." -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "Se till att använda olika tangenter, annars kan det bli konstigheter." -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 msgid "Name" msgstr "Namn" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "Relation" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "Neutral" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "Vän" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "Förbisedd" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "Ignorerad" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "Kom ihåg spelarlista" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "Tillåt byteshandel" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "Tillåt viskningar" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "Vid ignorering:" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "Helskärm" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "Särskild muspekare" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "FPS-gräns:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Genomskinlighet" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "Rullningsradie" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "Tröghet för rullning" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "Omgivande FX" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "Partikeldetaljer" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "av" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "låg" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "hög" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "medium" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "maximal" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "Helskärm" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "Byte till helskärm" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "Omstart krävs för att ändringarna ska synas." -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "Ändrar OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "Ändringar i OpenGL kräver omstart." -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "Omstart krävs för att ändringarna ska synas." -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "Omstart krävs för att ändringarna ska synas." -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "Färdigheter" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "Färdighetspoäng: %d" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "Upp" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "Använd" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, c-format msgid "Job: %d" msgstr "Jobb: %d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, c-format msgid "Money: %d GP" msgstr "Pengar: %d GP" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 msgid "Job:" msgstr "Jobb:" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 msgid "Stats" msgstr "Statistik" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "Totalt" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "Kostnad" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 msgid "Attack:" msgstr "Attack:" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 msgid "Defense:" msgstr "Försvar:" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 msgid "M.Attack:" msgstr "M. attack:" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 msgid "M.Defense:" msgstr "M. försvar:" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, fuzzy, c-format msgid "% Accuracy:" msgstr "% Precision:" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, fuzzy, c-format msgid "% Evade:" msgstr "% Undvikan:" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "% Reflexer:" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 msgid "Strength" msgstr "Styrka" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 msgid "Agility" msgstr "Smidighet" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 msgid "Vitality" msgstr "Hälsa" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 msgid "Intelligence" msgstr "Intelligens" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 msgid "Dexterity" msgstr "Skicklighet" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "Tur" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "Återstående statuspoäng: %d" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "Byteshandla" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "Lägg till" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "Du får %d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "Du ger:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" "Kan inte lägga till vald sak. Det går inte att byteshandla med samma slags " "sak flera gånger." -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "Uppdaterar..." -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "Spela" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "Färdig" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "Avbryt" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "Namnlös" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "Namnlös" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "Är du säker på att du vill ta bort den här karaktären?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "Attack:" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 #, fuzzy msgid "Talk" msgstr "Totalt" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "Attack:" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 #, fuzzy msgid "Target Player" msgstr "Spelare" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "Återställ fönster" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "Dela" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "Genvägar" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "Återställ fönster" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "Status" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "Inventarium" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "Utrustning" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 #, fuzzy msgid "Skill Window" msgstr "Färdighetspoäng: %d" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "Återställ fönster" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "Återställ fönster" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "Återställ fönster" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "Kan inte visa smiley!" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "Genvägar" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "Välj server" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "Ansluter..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "Ansluter..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "Ansluter..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "Namn: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "Kopplades från servern!" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 msgid "Connecting to map server..." msgstr "Ansluter till kartservern..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "Ansluter till karaktärsservern..." -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "Ansluter till kontoservern..." -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "Inventarium" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "Skapa" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/th.po b/po/th.po index c10e234a..fc5931b0 100644 --- a/po/th.po +++ b/po/th.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2008-11-25 06:16+0000\n" "Last-Translator: Tharawut Paripaiboon \n" "Language-Team: Thai \n" @@ -17,2190 +17,2159 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\n" -#: ../src/gui/buy.cpp:42 ../src/gui/buy.cpp:45 ../src/gui/buy.cpp:60 -#: ../src/gui/buysell.cpp:34 +#: src/gui/buy.cpp:42 src/gui/buy.cpp:45 src/gui/buy.cpp:60 +#: src/gui/buysell.cpp:34 msgid "Buy" msgstr "ซื้อ" -#: ../src/gui/buy.cpp:57 ../src/gui/buy.cpp:238 ../src/gui/sell.cpp:59 -#: ../src/gui/sell.cpp:253 +#: src/gui/buy.cpp:57 src/gui/buy.cpp:238 src/gui/sell.cpp:59 +#: src/gui/sell.cpp:253 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "ราคา: %d GP / ทั้งหมด: %d GP" -#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:63 ../src/game.cpp:602 -#: ../src/keyboardconfig.cpp:99 +#: src/gui/buy.cpp:61 src/gui/sell.cpp:63 src/game.cpp:602 +#: src/keyboardconfig.cpp:99 msgid "Quit" msgstr "ออก" -#: ../src/gui/buy.cpp:62 ../src/gui/buy.cpp:205 ../src/gui/buy.cpp:223 -#: ../src/gui/sell.cpp:64 ../src/gui/sell.cpp:224 ../src/gui/sell.cpp:238 +#: src/gui/buy.cpp:62 src/gui/buy.cpp:205 src/gui/buy.cpp:223 +#: src/gui/sell.cpp:64 src/gui/sell.cpp:224 src/gui/sell.cpp:238 #, c-format msgid "Description: %s" msgstr "" -#: ../src/gui/buy.cpp:63 ../src/gui/buy.cpp:207 ../src/gui/buy.cpp:224 -#: ../src/gui/sell.cpp:65 ../src/gui/sell.cpp:226 ../src/gui/sell.cpp:239 +#: src/gui/buy.cpp:63 src/gui/buy.cpp:207 src/gui/buy.cpp:224 +#: src/gui/sell.cpp:65 src/gui/sell.cpp:226 src/gui/sell.cpp:239 #, c-format msgid "Effect: %s" msgstr "" -#: ../src/gui/buysell.cpp:30 +#: src/gui/buysell.cpp:30 msgid "Shop" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:42 ../src/gui/sell.cpp:62 +#: src/gui/buysell.cpp:34 src/gui/sell.cpp:42 src/gui/sell.cpp:62 msgid "Sell" msgstr "" -#: ../src/gui/buysell.cpp:34 ../src/gui/char_select.cpp:103 -#: ../src/gui/char_select.cpp:267 ../src/gui/char_server.cpp:57 -#: ../src/gui/connection.cpp:47 ../src/gui/item_amount.cpp:60 -#: ../src/gui/login.cpp:80 ../src/gui/npcintegerdialog.cpp:40 -#: ../src/gui/npclistdialog.cpp:49 ../src/gui/npcstringdialog.cpp:38 -#: ../src/gui/register.cpp:89 ../src/gui/setup.cpp:57 ../src/gui/trade.cpp:63 -#: ../src/gui/updatewindow.cpp:114 +#: src/gui/buysell.cpp:34 src/gui/char_select.cpp:103 +#: src/gui/char_select.cpp:267 src/gui/char_server.cpp:57 +#: src/gui/connection.cpp:47 src/gui/item_amount.cpp:60 src/gui/login.cpp:80 +#: src/gui/npcintegerdialog.cpp:40 src/gui/npclistdialog.cpp:49 +#: src/gui/npcstringdialog.cpp:38 src/gui/register.cpp:89 src/gui/setup.cpp:57 +#: src/gui/trade.cpp:63 src/gui/updatewindow.cpp:114 msgid "Cancel" msgstr "ยกเลิก" -#: ../src/gui/char_select.cpp:64 +#: src/gui/char_select.cpp:64 msgid "Confirm Character Delete" msgstr "ยืนยันการลบตัวละคร" -#: ../src/gui/char_select.cpp:65 +#: src/gui/char_select.cpp:65 msgid "Are you sure you want to delete this character?" msgstr "คุณแน่ใจแล้วหรือที่จะลบตัวละครนี้?" -#: ../src/gui/char_select.cpp:83 +#: src/gui/char_select.cpp:83 #, fuzzy msgid "Select Character" msgstr "สร้างตัวละคร" -#: ../src/gui/char_select.cpp:90 ../src/gui/char_select.cpp:177 -#: ../src/gui/char_select.cpp:189 +#: src/gui/char_select.cpp:90 src/gui/char_select.cpp:177 +#: src/gui/char_select.cpp:189 #, c-format msgid "Name: %s" msgstr "ชื่อ: %s" -#. ---------------------- -#. Status Part -#. ---------------------- -#. Status Part -#. ----------- -#: ../src/gui/char_select.cpp:91 ../src/gui/char_select.cpp:178 -#: ../src/gui/char_select.cpp:190 ../src/gui/status.cpp:50 -#: ../src/gui/status.cpp:162 +#: src/gui/char_select.cpp:91 src/gui/char_select.cpp:178 +#: src/gui/char_select.cpp:190 src/gui/status.cpp:50 src/gui/status.cpp:165 #, c-format msgid "Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:92 ../src/gui/char_select.cpp:179 -#: ../src/gui/char_select.cpp:191 +#: src/gui/char_select.cpp:92 src/gui/char_select.cpp:179 +#: src/gui/char_select.cpp:191 #, c-format msgid "Job Level: %d" msgstr "" -#: ../src/gui/char_select.cpp:93 ../src/gui/char_select.cpp:192 +#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:192 #, c-format msgid "Money: %d" msgstr "" -#: ../src/gui/char_select.cpp:95 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:193 +#: src/gui/char_select.cpp:95 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:193 msgid "New" msgstr "สร้างใหม่" -#: ../src/gui/char_select.cpp:96 ../src/gui/char_select.cpp:97 -#: ../src/gui/char_select.cpp:183 ../src/gui/setup_players.cpp:228 +#: src/gui/char_select.cpp:96 src/gui/char_select.cpp:97 +#: src/gui/char_select.cpp:183 src/gui/setup_players.cpp:228 msgid "Delete" msgstr "ลบทิ้ง" -#: ../src/gui/char_select.cpp:99 +#: src/gui/char_select.cpp:99 msgid "Previous" msgstr "ก่อนหน้า" -#: ../src/gui/char_select.cpp:100 +#: src/gui/char_select.cpp:100 msgid "Next" msgstr "ถัดไป" -#: ../src/gui/char_select.cpp:102 ../src/gui/item_amount.cpp:59 -#: ../src/gui/ok_dialog.cpp:40 ../src/gui/trade.cpp:62 +#: src/gui/char_select.cpp:102 src/gui/item_amount.cpp:59 +#: src/gui/ok_dialog.cpp:40 src/gui/trade.cpp:62 msgid "Ok" msgstr "ตกลง" -#: ../src/gui/char_select.cpp:180 +#: src/gui/char_select.cpp:180 #, c-format msgid "Gold: %d" msgstr "" -#: ../src/gui/char_select.cpp:249 +#: src/gui/char_select.cpp:249 msgid "Create Character" msgstr "สร้างตัวละคร" -#: ../src/gui/char_select.cpp:259 ../src/gui/login.cpp:51 -#: ../src/gui/register.cpp:76 +#: src/gui/char_select.cpp:259 src/gui/login.cpp:51 src/gui/register.cpp:76 msgid "Name:" msgstr "ชื่อ:" -#: ../src/gui/char_select.cpp:262 +#: src/gui/char_select.cpp:262 msgid "Hair Color:" msgstr "สีผม:" -#: ../src/gui/char_select.cpp:265 +#: src/gui/char_select.cpp:265 msgid "Hair Style:" msgstr "ทรงผม:" -#: ../src/gui/char_select.cpp:266 +#: src/gui/char_select.cpp:266 msgid "Create" msgstr "สร้าง" -#: ../src/gui/char_server.cpp:49 +#: src/gui/char_server.cpp:49 msgid "Select Server" msgstr "" -#: ../src/gui/char_server.cpp:56 ../src/gui/login.cpp:79 -#: ../src/gui/npcintegerdialog.cpp:39 ../src/gui/npclistdialog.cpp:48 -#: ../src/gui/npcstringdialog.cpp:37 ../src/gui/npc_text.cpp:48 +#: src/gui/char_server.cpp:56 src/gui/login.cpp:79 +#: src/gui/npcintegerdialog.cpp:39 src/gui/npclistdialog.cpp:48 +#: src/gui/npcstringdialog.cpp:37 src/gui/npc_text.cpp:48 msgid "OK" msgstr "" -#: ../src/gui/chat.cpp:55 ../src/gui/colour.cpp:31 -#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#: src/gui/chat.cpp:55 src/gui/colour.cpp:31 src/gui/menuwindow.cpp:62 +#: src/gui/menuwindow.cpp:97 #, fuzzy msgid "Chat" msgstr "สร้าง" -#: ../src/gui/chat.cpp:148 +#: src/gui/chat.cpp:146 msgid "Global announcement: " msgstr "" -#: ../src/gui/chat.cpp:153 +#: src/gui/chat.cpp:151 #, c-format msgid "Global announcement from %s: " msgstr "" -#: ../src/gui/chat.cpp:167 ../src/gui/login.cpp:53 ../src/gui/register.cpp:79 +#: src/gui/chat.cpp:165 src/gui/login.cpp:53 src/gui/register.cpp:79 msgid "Server:" msgstr "" -#: ../src/gui/chat.cpp:329 +#: src/gui/chat.cpp:327 #, c-format msgid "Whispering to %s: %s" msgstr "" -#: ../src/gui/chat.cpp:353 +#: src/gui/chat.cpp:351 msgid "Trying to send a blank party message." msgstr "" -#: ../src/gui/chat.cpp:388 ../src/resources/itemdb.cpp:57 +#: src/gui/chat.cpp:386 src/resources/itemdb.cpp:57 msgid "Unknown item" msgstr "" -#: ../src/gui/chat.cpp:482 +#: src/gui/chat.cpp:479 msgid "Return toggles chat." msgstr "" -#: ../src/gui/chat.cpp:483 +#: src/gui/chat.cpp:480 msgid "Message closes chat." msgstr "" -#: ../src/gui/chat.cpp:493 +#: src/gui/chat.cpp:490 msgid "Return now toggles chat." msgstr "" -#: ../src/gui/chat.cpp:501 +#: src/gui/chat.cpp:498 msgid "Message now closes chat." msgstr "" -#: ../src/gui/chat.cpp:506 +#: src/gui/chat.cpp:503 msgid "" "Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." msgstr "" -#: ../src/gui/chat.cpp:513 +#: src/gui/chat.cpp:510 msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: ../src/gui/chat.cpp:557 +#: src/gui/chat.cpp:554 msgid "No such spell!" msgstr "" -#: ../src/gui/chat.cpp:592 ../src/gui/chat.cpp:597 +#: src/gui/chat.cpp:589 src/gui/chat.cpp:594 msgid "Present: " msgstr "" -#: ../src/gui/chat.cpp:593 +#: src/gui/chat.cpp:590 msgid "Attendance written to record log." msgstr "" -#: ../src/gui/chat.cpp:602 +#: src/gui/chat.cpp:599 msgid "Unknown command" msgstr "" -#: ../src/gui/chat.cpp:614 +#: src/gui/chat.cpp:611 msgid "Trade failed!" msgstr "" -#: ../src/gui/chat.cpp:617 +#: src/gui/chat.cpp:614 msgid "Emote failed!" msgstr "" -#: ../src/gui/chat.cpp:620 +#: src/gui/chat.cpp:617 msgid "Sit failed!" msgstr "" -#: ../src/gui/chat.cpp:623 +#: src/gui/chat.cpp:620 msgid "Chat creating failed!" msgstr "" -#: ../src/gui/chat.cpp:626 +#: src/gui/chat.cpp:623 msgid "Could not join party!" msgstr "" -#: ../src/gui/chat.cpp:629 +#: src/gui/chat.cpp:626 msgid "Cannot shout!" msgstr "" -#: ../src/gui/chat.cpp:638 +#: src/gui/chat.cpp:635 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: ../src/gui/chat.cpp:641 +#: src/gui/chat.cpp:638 msgid "Insufficient HP!" msgstr "" -#: ../src/gui/chat.cpp:644 +#: src/gui/chat.cpp:641 msgid "Insufficient SP!" msgstr "" -#: ../src/gui/chat.cpp:647 +#: src/gui/chat.cpp:644 msgid "You have no memos!" msgstr "" -#: ../src/gui/chat.cpp:650 +#: src/gui/chat.cpp:647 msgid "You cannot do that right now!" msgstr "" -#: ../src/gui/chat.cpp:653 +#: src/gui/chat.cpp:650 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: ../src/gui/chat.cpp:656 +#: src/gui/chat.cpp:653 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: ../src/gui/chat.cpp:659 +#: src/gui/chat.cpp:656 msgid "You need another red gem!" msgstr "" -#: ../src/gui/chat.cpp:662 +#: src/gui/chat.cpp:659 msgid "You need another blue gem!" msgstr "" -#: ../src/gui/chat.cpp:665 +#: src/gui/chat.cpp:662 msgid "You're carrying to much to do this!" msgstr "" -#: ../src/gui/chat.cpp:668 +#: src/gui/chat.cpp:665 msgid "Huh? What's that?" msgstr "" -#: ../src/gui/chat.cpp:677 +#: src/gui/chat.cpp:674 msgid "Warp failed..." msgstr "" -#: ../src/gui/chat.cpp:680 +#: src/gui/chat.cpp:677 msgid "Could not steal anything..." msgstr "" -#: ../src/gui/chat.cpp:683 +#: src/gui/chat.cpp:680 msgid "Poison had no effect..." msgstr "" -#: ../src/gui/chat.cpp:766 +#: src/gui/chat.cpp:763 msgid "The current party prefix is " msgstr "" -#: ../src/gui/chat.cpp:771 +#: src/gui/chat.cpp:768 msgid "Party prefix must be one character long." msgstr "" -#: ../src/gui/chat.cpp:777 +#: src/gui/chat.cpp:774 msgid "Cannot use a '/' as the prefix." msgstr "" -#: ../src/gui/chat.cpp:782 +#: src/gui/chat.cpp:779 msgid "Changing prefix to " msgstr "" -#: ../src/gui/chat.cpp:792 +#: src/gui/chat.cpp:789 msgid "-- Help --" msgstr "" -#: ../src/gui/chat.cpp:795 +#: src/gui/chat.cpp:792 msgid "/announce: Global announcement (GM only)" msgstr "" -#: ../src/gui/chat.cpp:796 +#: src/gui/chat.cpp:793 msgid "/clear: Clears this window" msgstr "" -#: ../src/gui/chat.cpp:797 +#: src/gui/chat.cpp:794 msgid "/help: Display this help" msgstr "" -#: ../src/gui/chat.cpp:798 +#: src/gui/chat.cpp:795 msgid "/party : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 msgid "/msg : Alternate form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 msgid "Command: /present" msgstr "" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 msgid "Command: /record " msgstr "" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 msgid "This command starts recording the chat log to the file ." msgstr "" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 msgid "Command: /record" msgstr "" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 msgid "This command finishes a recording session." msgstr "" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 msgid "Command: /toggle " msgstr "" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 msgid "Command: /toggle" msgstr "" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 msgid "This command displays the return toggle status." msgstr "" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 msgid "Command: /msg " msgstr "" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "" -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 msgid "Highlight" msgstr "" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 msgid "Player" msgstr "" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 msgid "Whisper" msgstr "" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 msgid "Party" msgstr "" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 msgid "Server" msgstr "" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "ใช่" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "ไม่" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "กำลังเชื่อมต่อ..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "ใช้" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "ทิ้ง" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 msgid "Slots: " msgstr "" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "" -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "" -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "เข้าระบบ" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "รหัสผ่าน:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "สมัครสมาชิก" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "สถานะ" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "ตั้งค่า" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "สมัครสมาชิก" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, c-format +msgid "@@trade|Trade With %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:79 -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, c-format +msgid "@@attack|Attack %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, c-format +msgid "@@disregard|Disregard %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " +#: src/gui/popupmenu.cpp:106 +#, c-format +msgid "@@party-invite|Invite %s to party@@" msgstr "" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 msgid "@@use|Unequip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "กำลังเชื่อมต่อ..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "กำลังเชื่อมต่อ..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "กำลังเชื่อมต่อ..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "ยืนยัน:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "ชาย" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "หญิง" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "" -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "" -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "ผิดพลาด" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 msgid "Colors" msgstr "" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 #, fuzzy msgid "Default" msgstr "ลบทิ้ง" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 #, fuzzy msgid "Name" msgstr "ชื่อ:" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 msgid "Disregarded" msgstr "" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 msgid "Particle effects" msgstr "" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 msgid "Ambient FX" msgstr "" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "fullscreen" msgstr "" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "" -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "" -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 msgid "Restart your client for the change to take effect." msgstr "" -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 msgid "Restart your client or change maps for the change to take effect." msgstr "" -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 msgid "skills.xml" msgstr "" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "ใช้" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, c-format msgid "Job: %d" msgstr "" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, c-format msgid "Money: %d GP" msgstr "" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 msgid "Job:" msgstr "" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 #, fuzzy msgid "Stats" msgstr "สถานะ" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 msgid "Attack:" msgstr "" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 msgid "Defense:" msgstr "" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 msgid "M.Attack:" msgstr "" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 msgid "M.Defense:" msgstr "" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 #, fuzzy msgid "Strength" msgstr "Strength:" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 #, fuzzy msgid "Agility" msgstr "Agility:" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 #, fuzzy msgid "Vitality" msgstr "Vitality:" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 #, fuzzy msgid "Intelligence" msgstr "Intelligence:" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 #, fuzzy msgid "Dexterity" msgstr "Dexterity:" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 msgid "Trade: You" msgstr "" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "" -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "" -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 msgid "You are not that alive anymore." msgstr "" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 msgid "You are no more." msgstr "" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 msgid "You have ceased to be." msgstr "" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 msgid "Trade with " msgstr "" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "ยกเลิก" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 msgid "Trade canceled." msgstr "" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 msgid "Trade completed." msgstr "" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 msgid "unnamed" msgstr "" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 msgid "Saving screenshot failed!" msgstr "" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "คุณแน่ใจแล้วหรือที่จะลบตัวละครนี้?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 msgid "Attack" msgstr "" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 msgid "Talk" msgstr "" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 msgid "Stop Attack" msgstr "" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 msgid "Target Player" msgstr "" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 msgid "Hide Windows" msgstr "" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 msgid "Sit" msgstr "" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, c-format msgid "Item Shortcut %d" msgstr "" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 msgid "Help Window" msgstr "" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "สถานะ" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 msgid "Inventory Window" msgstr "" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 msgid "Equipment WIndow" msgstr "" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 msgid "Skill Window" msgstr "" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 msgid "Chat Window" msgstr "" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 msgid "Setup Window" msgstr "" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 msgid "Debug Window" msgstr "" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 msgid "Emote Window" msgstr "" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, c-format msgid "Emote Shortcut %d" msgstr "" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 msgid "Select OK" msgstr "" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 msgid " -h --help : Display this help" msgstr "" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "กำลังเชื่อมต่อ..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "กำลังเชื่อมต่อ..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "กำลังเชื่อมต่อ..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "ชื่อ: %s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 #, fuzzy msgid "Connecting to map server..." msgstr "กำลังเชื่อมต่อ..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "" -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "" -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 msgid "Could not create party." msgstr "" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 msgid "Invite to party" msgstr "" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 msgid "Command: /party " msgstr "" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "สร้าง" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 msgid "This command implements the partying function." msgstr "" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 msgid "Command: /party new " msgstr "" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 msgid "This command sets the party prefix character." msgstr "" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 msgid "Command: /party prefix" msgstr "" -#: ../src/party.cpp:201 +#: src/party.cpp:201 msgid "This command reports the current party prefix character." msgstr "" -#: ../src/party.cpp:209 +#: src/party.cpp:209 msgid "Command: /party leave" msgstr "" -#: ../src/party.cpp:210 +#: src/party.cpp:210 msgid "This command causes the player to leave the party." msgstr "" -#: ../src/party.cpp:214 +#: src/party.cpp:214 msgid "Unknown /party command." msgstr "" -#: ../src/party.cpp:215 +#: src/party.cpp:215 msgid "Type /help party for a list of options." msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 689c6a3b..23a46815 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-02-05 18:42-0700\n" +"Report-Msgid-Bugs-To: irarice@gmail.com\n" +"POT-Creation-Date: 2009-02-07 15:45-0700\n" "PO-Revision-Date: 2009-01-21 22:42+0800\n" "Last-Translator: Hong Hao \n" "Language-Team: Simplified Chinese : Party commands." msgstr "" -#: ../src/gui/chat.cpp:799 +#: src/gui/chat.cpp:796 #, fuzzy msgid "/msg : Alternate form for /whisper" msgstr "/w <昵称> <信息>: /whisper的缩写形式" -#: ../src/gui/chat.cpp:800 +#: src/gui/chat.cpp:797 msgid "/present: Get list of players present" msgstr "" -#: ../src/gui/chat.cpp:801 +#: src/gui/chat.cpp:798 msgid "/record : Start recording the chat to an external file." msgstr "" -#: ../src/gui/chat.cpp:803 +#: src/gui/chat.cpp:800 msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: ../src/gui/chat.cpp:805 +#: src/gui/chat.cpp:802 msgid "/where: Display map name" msgstr "/where: 显示地图名称" -#: ../src/gui/chat.cpp:806 +#: src/gui/chat.cpp:803 msgid "/w : Short form for /whisper" msgstr "/w <昵称> <信息>: /whisper的缩写形式" -#: ../src/gui/chat.cpp:807 +#: src/gui/chat.cpp:804 msgid "/whisper : Sends a private to " msgstr "/whisper <昵称> <信息>: 发送一条私密信息 <信息> 给 <昵称>" -#: ../src/gui/chat.cpp:809 +#: src/gui/chat.cpp:806 msgid "/who: Display number of online users" msgstr "/who: 显示在线用户数" -#: ../src/gui/chat.cpp:810 +#: src/gui/chat.cpp:807 msgid "For more information, type /help " msgstr "输入/help <指令> 获取更多帮助信息" -#: ../src/gui/chat.cpp:814 +#: src/gui/chat.cpp:811 msgid "Command: /announce " msgstr "指令: /announce <信息>" -#: ../src/gui/chat.cpp:815 +#: src/gui/chat.cpp:812 msgid "*** only available to a GM ***" msgstr "*** 只有GM可用 ***" -#: ../src/gui/chat.cpp:816 +#: src/gui/chat.cpp:813 msgid "This command sends the message to all players currently online." msgstr "该指令会发送<信息>给所有在线用户。" -#: ../src/gui/chat.cpp:821 +#: src/gui/chat.cpp:818 msgid "Command: /clear" msgstr "指令: /clear" -#: ../src/gui/chat.cpp:822 +#: src/gui/chat.cpp:819 msgid "This command clears the chat log of previous chat." msgstr "该指令可清除历史聊天记录。" -#: ../src/gui/chat.cpp:827 +#: src/gui/chat.cpp:824 msgid "Command: /help" msgstr "指令: /help" -#: ../src/gui/chat.cpp:828 +#: src/gui/chat.cpp:825 msgid "This command displays a list of all commands available." msgstr "该指令可显示所有可用指令。" -#: ../src/gui/chat.cpp:830 +#: src/gui/chat.cpp:827 msgid "Command: /help " msgstr "指令: /help <指令>" -#: ../src/gui/chat.cpp:831 +#: src/gui/chat.cpp:828 msgid "This command displays help on ." msgstr "该指令显现<指令>的帮助信息" -#: ../src/gui/chat.cpp:839 +#: src/gui/chat.cpp:836 #, fuzzy msgid "Command: /present" msgstr "指令: /where" -#: ../src/gui/chat.cpp:840 +#: src/gui/chat.cpp:837 msgid "" "This command gets a list of players within hearing and sends it to either " "the record log if recording, or the chat log otherwise." msgstr "" -#: ../src/gui/chat.cpp:846 +#: src/gui/chat.cpp:843 #, fuzzy msgid "Command: /record " msgstr "指令: /clear" -#: ../src/gui/chat.cpp:847 +#: src/gui/chat.cpp:844 #, fuzzy msgid "This command starts recording the chat log to the file ." msgstr "该指令可清除历史聊天记录。" -#: ../src/gui/chat.cpp:849 +#: src/gui/chat.cpp:846 #, fuzzy msgid "Command: /record" msgstr "指令: /clear" -#: ../src/gui/chat.cpp:850 +#: src/gui/chat.cpp:847 #, fuzzy msgid "This command finishes a recording session." msgstr "该指令显现<指令>的帮助信息" -#: ../src/gui/chat.cpp:854 +#: src/gui/chat.cpp:851 #, fuzzy msgid "Command: /toggle " msgstr "指令: /announce <信息>" -#: ../src/gui/chat.cpp:855 +#: src/gui/chat.cpp:852 msgid "" "This command sets whether the return key should toggle thechat log, or " "whether the chat log turns off automatically." msgstr "" -#: ../src/gui/chat.cpp:858 +#: src/gui/chat.cpp:855 msgid "" " can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0" "\", \"no\", \"false\" to turn the toggle off." msgstr "" -#: ../src/gui/chat.cpp:861 +#: src/gui/chat.cpp:858 #, fuzzy msgid "Command: /toggle" msgstr "指令: /clear" -#: ../src/gui/chat.cpp:862 +#: src/gui/chat.cpp:859 #, fuzzy msgid "This command displays the return toggle status." msgstr "该条指令显示当前地图名。" -#: ../src/gui/chat.cpp:866 +#: src/gui/chat.cpp:863 msgid "Command: /where" msgstr "指令: /where" -#: ../src/gui/chat.cpp:867 +#: src/gui/chat.cpp:864 msgid "This command displays the name of the current map." msgstr "该条指令显示当前地图名。" -#: ../src/gui/chat.cpp:872 +#: src/gui/chat.cpp:869 #, fuzzy msgid "Command: /msg " msgstr "指令: /w <昵称> <信息>" -#: ../src/gui/chat.cpp:873 +#: src/gui/chat.cpp:870 msgid "Command: /whisper " msgstr "指令: /whisper <昵称> <信息>" -#: ../src/gui/chat.cpp:874 +#: src/gui/chat.cpp:871 msgid "Command: /w " msgstr "指令: /w <昵称> <信息>" -#: ../src/gui/chat.cpp:875 +#: src/gui/chat.cpp:872 msgid "This command sends the message to ." msgstr "该条指令发送信息 " -#: ../src/gui/chat.cpp:877 +#: src/gui/chat.cpp:874 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "如果<昵称>之间有空格,用双引号(\")括起来。" -#: ../src/gui/chat.cpp:882 +#: src/gui/chat.cpp:879 msgid "Command: /who" msgstr "指令: /who" -#: ../src/gui/chat.cpp:883 +#: src/gui/chat.cpp:880 msgid "This command displays the number of players currently online." msgstr "该条指令可显现当前在线用户总数。" -#: ../src/gui/chat.cpp:888 +#: src/gui/chat.cpp:885 msgid "Unknown command." msgstr "未知命令" -#: ../src/gui/chat.cpp:889 +#: src/gui/chat.cpp:886 msgid "Type /help for a list of commands." msgstr "输入 /help 获取指令列表。" -#: ../src/gui/colour.cpp:32 +#: src/gui/colour.cpp:32 msgid "GM" msgstr "" -#: ../src/gui/colour.cpp:33 +#: src/gui/colour.cpp:33 #, fuzzy msgid "Highlight" msgstr "高" -#: ../src/gui/colour.cpp:34 +#: src/gui/colour.cpp:34 #, fuzzy msgid "Player" msgstr "玩家" -#: ../src/gui/colour.cpp:35 +#: src/gui/colour.cpp:35 #, fuzzy msgid "Whisper" msgstr "%s悄悄对你说:" -#: ../src/gui/colour.cpp:36 +#: src/gui/colour.cpp:36 msgid "Is" msgstr "" -#: ../src/gui/colour.cpp:37 +#: src/gui/colour.cpp:37 #, fuzzy msgid "Party" msgstr "开始" -#: ../src/gui/colour.cpp:38 +#: src/gui/colour.cpp:38 #, fuzzy msgid "Server" msgstr "服务器:" -#: ../src/gui/colour.cpp:39 +#: src/gui/colour.cpp:39 msgid "Logger" msgstr "" -#: ../src/gui/colour.cpp:40 +#: src/gui/colour.cpp:40 msgid "Hyperlink" msgstr "" -#: ../src/gui/confirm_dialog.cpp:40 +#: src/gui/confirm_dialog.cpp:40 msgid "Yes" msgstr "是" -#: ../src/gui/confirm_dialog.cpp:41 +#: src/gui/confirm_dialog.cpp:41 msgid "No" msgstr "否" -#: ../src/gui/connection.cpp:49 ../src/gui/updatewindow.cpp:112 +#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:112 msgid "Connecting..." msgstr "连接中..." -#: ../src/gui/emotecontainer.cpp:60 +#: src/gui/emotecontainer.cpp:60 msgid "Unable to load selection.png" msgstr "" -#: ../src/gui/emotewindow.cpp:36 ../src/gui/emotewindow.cpp:38 -#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +#: src/gui/emotewindow.cpp:36 src/gui/emotewindow.cpp:38 +#: src/gui/menuwindow.cpp:68 src/gui/menuwindow.cpp:121 msgid "Emote" msgstr "" -#: ../src/gui/emotewindow.cpp:45 ../src/gui/inventorywindow.cpp:62 -#: ../src/gui/inventorywindow.cpp:63 ../src/gui/inventorywindow.cpp:226 -#: ../src/gui/skill.cpp:144 +#: src/gui/emotewindow.cpp:45 src/gui/inventorywindow.cpp:62 +#: src/gui/inventorywindow.cpp:63 src/gui/inventorywindow.cpp:226 +#: src/gui/skill.cpp:144 msgid "Use" msgstr "使用" -#: ../src/gui/equipmentwindow.cpp:62 ../src/gui/menuwindow.cpp:64 -#: ../src/gui/menuwindow.cpp:105 +#: src/gui/equipmentwindow.cpp:62 src/gui/menuwindow.cpp:64 +#: src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "装备" -#: ../src/gui/equipmentwindow.cpp:77 ../src/gui/inventorywindow.cpp:66 -#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:221 +#: src/gui/equipmentwindow.cpp:77 src/gui/inventorywindow.cpp:66 +#: src/gui/inventorywindow.cpp:68 src/gui/inventorywindow.cpp:221 msgid "Unequip" msgstr "卸下装备" -#: ../src/gui/help.cpp:34 ../src/gui/help.cpp:39 +#: src/gui/help.cpp:34 src/gui/help.cpp:39 msgid "Help" msgstr "帮助" -#: ../src/gui/help.cpp:45 +#: src/gui/help.cpp:45 msgid "Close" msgstr "关闭" -#: ../src/gui/inventorywindow.cpp:50 ../src/gui/inventorywindow.cpp:54 -#: ../src/gui/menuwindow.cpp:65 ../src/gui/menuwindow.cpp:109 +#: src/gui/inventorywindow.cpp:50 src/gui/inventorywindow.cpp:54 +#: src/gui/menuwindow.cpp:65 src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "物品栏" -#: ../src/gui/inventorywindow.cpp:61 ../src/gui/inventorywindow.cpp:63 -#: ../src/gui/inventorywindow.cpp:223 +#: src/gui/inventorywindow.cpp:61 src/gui/inventorywindow.cpp:63 +#: src/gui/inventorywindow.cpp:223 msgid "Equip" msgstr "装备" -#: ../src/gui/inventorywindow.cpp:72 +#: src/gui/inventorywindow.cpp:72 msgid "Drop" msgstr "丢弃" -#: ../src/gui/inventorywindow.cpp:84 +#: src/gui/inventorywindow.cpp:84 #, fuzzy msgid "Slots: " msgstr "技能点数:%d" -#: ../src/gui/inventorywindow.cpp:85 ../src/gui/itempopup.cpp:111 +#: src/gui/inventorywindow.cpp:85 src/gui/itempopup.cpp:111 msgid "Weight: " msgstr "" -#: ../src/gui/item_amount.cpp:76 +#: src/gui/item_amount.cpp:76 msgid "Select amount of items to trade." msgstr "请选择交易的物品数量" -#: ../src/gui/item_amount.cpp:80 +#: src/gui/item_amount.cpp:80 msgid "Select amount of items to drop." msgstr "请选择丢弃的物品数量" -#: ../src/gui/itempopup.cpp:112 +#: src/gui/itempopup.cpp:112 msgid " grams" msgstr "" -#: ../src/gui/login.cpp:49 +#: src/gui/login.cpp:49 msgid "Login" msgstr "登录" -#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:77 +#: src/gui/login.cpp:52 src/gui/register.cpp:77 msgid "Password:" msgstr "密码:" -#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:80 +#: src/gui/login.cpp:54 src/gui/register.cpp:80 msgid "Port:" msgstr "端口:" -#: ../src/gui/login.cpp:55 +#: src/gui/login.cpp:55 msgid "Recent:" msgstr "" -#: ../src/gui/login.cpp:78 +#: src/gui/login.cpp:78 msgid "Keep" msgstr "保持" -#: ../src/gui/login.cpp:81 ../src/gui/register.cpp:72 -#: ../src/gui/register.cpp:88 +#: src/gui/login.cpp:81 src/gui/register.cpp:72 src/gui/register.cpp:88 msgid "Register" msgstr "注册" -#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 -#: ../src/gui/status.cpp:41 +#: src/gui/menuwindow.cpp:63 src/gui/menuwindow.cpp:101 src/gui/status.cpp:41 msgid "Status" msgstr "状态" -#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 -#: ../src/gui/skill.cpp:123 ../src/gui/skill.cpp:134 +#: src/gui/menuwindow.cpp:66 src/gui/menuwindow.cpp:113 src/gui/skill.cpp:123 +#: src/gui/skill.cpp:134 msgid "Skills" msgstr "技能" -#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 +#: src/gui/menuwindow.cpp:67 src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "快捷键" -#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 -#: ../src/gui/setup.cpp:49 ../src/main.cpp:788 +#: src/gui/menuwindow.cpp:69 src/gui/menuwindow.cpp:125 src/gui/setup.cpp:49 +#: src/main.cpp:788 msgid "Setup" msgstr "设置" -#: ../src/gui/minimap.cpp:39 ../src/gui/minimap.cpp:43 +#: src/gui/minimap.cpp:39 src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "小地图" -#: ../src/gui/npcintegerdialog.cpp:33 +#: src/gui/npcintegerdialog.cpp:33 msgid "NPC Number Request" msgstr "" -#: ../src/gui/npcintegerdialog.cpp:41 +#: src/gui/npcintegerdialog.cpp:41 #, fuzzy msgid "Reset" msgstr "注册" -#: ../src/gui/npclistdialog.cpp:36 ../src/gui/npc_text.cpp:34 +#: src/gui/npclistdialog.cpp:36 src/gui/npc_text.cpp:34 msgid "NPC" msgstr "NPC" -#: ../src/gui/npcstringdialog.cpp:33 +#: src/gui/npcstringdialog.cpp:33 msgid "NPC Text Request" msgstr "" -#: ../src/gui/popupmenu.cpp:78 -#, fuzzy -msgid "@@trade|Trade With " +#: src/gui/popupmenu.cpp:78 +#, fuzzy, c-format +msgid "@@trade|Trade With %s@@" msgstr "@@交易|与%s交易@@" -#: ../src/gui/popupmenu.cpp:79 -#, fuzzy -msgid "@@attack|Attack " +#: src/gui/popupmenu.cpp:79 +#, fuzzy, c-format +msgid "@@attack|Attack %s@@" msgstr "@@攻击|攻击%s@@" -#: ../src/gui/popupmenu.cpp:85 -msgid "@@friend|Befriend " +#: src/gui/popupmenu.cpp:85 +#, c-format +msgid "@@friend|Befriend %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:88 -#, fuzzy -msgid "@@disregard|Disregard " +#: src/gui/popupmenu.cpp:88 +#, fuzzy, c-format +msgid "@@disregard|Disregard %s@@" msgstr "无视" -#: ../src/gui/popupmenu.cpp:89 -msgid "@@ignore|Ignore " +#: src/gui/popupmenu.cpp:89 +#, c-format +msgid "@@ignore|Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:93 ../src/gui/popupmenu.cpp:98 -msgid "@@unignore|Un-Ignore " +#: src/gui/popupmenu.cpp:93 src/gui/popupmenu.cpp:98 +#, c-format +msgid "@@unignore|Un-Ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:94 -msgid "@@ignore|Completely ignore " +#: src/gui/popupmenu.cpp:94 +#, c-format +msgid "@@ignore|Completely ignore %s@@" msgstr "" -#: ../src/gui/popupmenu.cpp:106 -msgid "@@party-invite|Invite " -msgstr "" +#: src/gui/popupmenu.cpp:106 +#, fuzzy, c-format +msgid "@@party-invite|Invite %s to party@@" +msgstr "物品栏" -#. NPCs can be talked to (single option, candidate for removal -#. unless more options would be added) -#: ../src/gui/popupmenu.cpp:114 +#: src/gui/popupmenu.cpp:113 msgid "@@talk|Talk To NPC@@" msgstr "@@谈话|和NPC谈话@@" -#: ../src/gui/popupmenu.cpp:124 ../src/gui/popupmenu.cpp:140 -#: ../src/gui/popupmenu.cpp:298 +#: src/gui/popupmenu.cpp:123 src/gui/popupmenu.cpp:139 +#: src/gui/popupmenu.cpp:297 msgid "@@cancel|Cancel@@" msgstr "@@取消|取消@@" -#: ../src/gui/popupmenu.cpp:136 +#: src/gui/popupmenu.cpp:135 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@捡起|捡起%s@@" -#: ../src/gui/popupmenu.cpp:288 +#: src/gui/popupmenu.cpp:287 msgid "@@use|Unequip@@" msgstr "@@使用|卸载@@" -#: ../src/gui/popupmenu.cpp:290 +#: src/gui/popupmenu.cpp:289 msgid "@@use|Equip@@" msgstr "@@使用|装备@@" -#: ../src/gui/popupmenu.cpp:293 +#: src/gui/popupmenu.cpp:292 msgid "@@use|Use@@" msgstr "@@使用|使用@@" -#: ../src/gui/popupmenu.cpp:295 +#: src/gui/popupmenu.cpp:294 msgid "@@drop|Drop@@" msgstr "@@丢弃|丢弃@@" -#: ../src/gui/popupmenu.cpp:296 +#: src/gui/popupmenu.cpp:295 msgid "@@chat|Add to Chat@@" msgstr "" -#: ../src/gui/recorder.cpp:37 +#: src/gui/recorder.cpp:37 #, fuzzy msgid "Recorder" msgstr "连接中..." -#. -#. * Message should go after mStream is closed so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:79 +#: src/gui/recorder.cpp:79 msgid "Finishing recording." msgstr "" -#: ../src/gui/recorder.cpp:83 +#: src/gui/recorder.cpp:83 msgid "Not currently recording." msgstr "" -#: ../src/gui/recorder.cpp:88 +#: src/gui/recorder.cpp:88 #, fuzzy msgid "Already recording." msgstr "连接中..." -#. -#. * Message should go before mStream is opened so that it isn't -#. * recorded. -#. -#: ../src/gui/recorder.cpp:96 +#: src/gui/recorder.cpp:96 msgid "Starting to record..." msgstr "" -#: ../src/gui/recorder.cpp:104 +#: src/gui/recorder.cpp:104 msgid "Failed to start recording." msgstr "" -#: ../src/gui/recorder.h:39 +#: src/gui/recorder.h:39 #, fuzzy msgid "Recording..." msgstr "连接中..." -#: ../src/gui/recorder.h:40 +#: src/gui/recorder.h:40 msgid "Stop recording" msgstr "" -#: ../src/gui/register.cpp:78 +#: src/gui/register.cpp:78 msgid "Confirm:" msgstr "确认:" -#: ../src/gui/register.cpp:86 +#: src/gui/register.cpp:86 msgid "Male" msgstr "帅哥" -#: ../src/gui/register.cpp:87 +#: src/gui/register.cpp:87 msgid "Female" msgstr "美女" -#: ../src/gui/register.cpp:155 +#: src/gui/register.cpp:155 #, c-format msgid "RegisterDialog::register Username is %s" msgstr "" -#: ../src/gui/register.cpp:164 +#: src/gui/register.cpp:164 #, c-format msgid "The username needs to be at least %d characters long." msgstr "用户名至少需要%d个字符。" -#: ../src/gui/register.cpp:172 +#: src/gui/register.cpp:172 #, c-format msgid "The username needs to be less than %d characters long." msgstr "用户名不能少于%d个字符" -#: ../src/gui/register.cpp:180 +#: src/gui/register.cpp:180 #, c-format msgid "The password needs to be at least %d characters long." msgstr "密码需要至少%d个字符" -#: ../src/gui/register.cpp:188 +#: src/gui/register.cpp:188 #, c-format msgid "The password needs to be less than %d characters long." msgstr "密码不能少于%d个字符。" -#. Password does not match with the confirmation one -#: ../src/gui/register.cpp:195 +#: src/gui/register.cpp:195 msgid "Passwords do not match." msgstr "密码不一致." -#: ../src/gui/register.cpp:215 ../src/main.cpp:1056 +#: src/gui/register.cpp:215 src/main.cpp:1056 msgid "Error" msgstr "错误" -#: ../src/gui/setup_audio.cpp:41 +#: src/gui/setup_audio.cpp:41 msgid "Sound" msgstr "声音" -#: ../src/gui/setup_audio.cpp:47 +#: src/gui/setup_audio.cpp:47 msgid "Sfx volume" msgstr "音效声量" -#: ../src/gui/setup_audio.cpp:48 +#: src/gui/setup_audio.cpp:48 msgid "Music volume" msgstr "音乐声量" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Apply" msgstr "应用" -#: ../src/gui/setup.cpp:57 +#: src/gui/setup.cpp:57 msgid "Reset Windows" msgstr "重置窗口" -#: ../src/gui/setup.cpp:78 +#: src/gui/setup.cpp:78 msgid "Video" msgstr "视频" -#: ../src/gui/setup.cpp:82 +#: src/gui/setup.cpp:82 msgid "Audio" msgstr "音频" -#: ../src/gui/setup.cpp:86 +#: src/gui/setup.cpp:86 msgid "Joystick" msgstr "游戏杆" -#: ../src/gui/setup.cpp:90 +#: src/gui/setup.cpp:90 msgid "Keyboard" msgstr "键盘" -#: ../src/gui/setup.cpp:94 +#: src/gui/setup.cpp:94 #, fuzzy msgid "Colors" msgstr "关闭" -#: ../src/gui/setup.cpp:98 +#: src/gui/setup.cpp:98 msgid "Players" msgstr "玩家" -#: ../src/gui/setup_colours.cpp:51 +#: src/gui/setup_colours.cpp:68 msgid "Red: " msgstr "" -#: ../src/gui/setup_colours.cpp:65 +#: src/gui/setup_colours.cpp:82 msgid "Green: " msgstr "" -#: ../src/gui/setup_colours.cpp:79 +#: src/gui/setup_colours.cpp:96 msgid "Blue: " msgstr "" -#: ../src/gui/setup_joystick.cpp:38 ../src/gui/setup_joystick.cpp:79 +#: src/gui/setup_colours.cpp:159 src/gui/setup_colours.cpp:162 +msgid "This is what the color looks like" +msgstr "" + +#: src/gui/setup_joystick.cpp:38 src/gui/setup_joystick.cpp:79 msgid "Press the button to start calibration" msgstr "按下开始校准按钮" -#: ../src/gui/setup_joystick.cpp:39 ../src/gui/setup_joystick.cpp:77 +#: src/gui/setup_joystick.cpp:39 src/gui/setup_joystick.cpp:77 msgid "Calibrate" msgstr "校准" -#: ../src/gui/setup_joystick.cpp:40 +#: src/gui/setup_joystick.cpp:40 msgid "Enable joystick" msgstr "启用游戏杆" -#: ../src/gui/setup_joystick.cpp:84 +#: src/gui/setup_joystick.cpp:84 msgid "Stop" msgstr "停止" -#: ../src/gui/setup_joystick.cpp:85 +#: src/gui/setup_joystick.cpp:85 msgid "Rotate the stick" msgstr "旋转手柄" -#: ../src/gui/setup_keyboard.cpp:86 +#: src/gui/setup_keyboard.cpp:86 msgid "Assign" msgstr "分配" -#: ../src/gui/setup_keyboard.cpp:90 +#: src/gui/setup_keyboard.cpp:90 msgid "Default" msgstr "预设" -#: ../src/gui/setup_keyboard.cpp:119 +#: src/gui/setup_keyboard.cpp:119 msgid "Key Conflict(s) Detected." msgstr "检测到按键冲突。" -#: ../src/gui/setup_keyboard.cpp:120 +#: src/gui/setup_keyboard.cpp:120 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "解决按键冲突,否者游戏过程中可能发生奇怪行为。" -#: ../src/gui/setup_players.cpp:56 +#: src/gui/setup_players.cpp:56 msgid "Name" msgstr "姓名" -#: ../src/gui/setup_players.cpp:57 +#: src/gui/setup_players.cpp:57 msgid "Relation" msgstr "关系" -#: ../src/gui/setup_players.cpp:61 +#: src/gui/setup_players.cpp:61 msgid "Neutral" msgstr "中立" -#: ../src/gui/setup_players.cpp:62 +#: src/gui/setup_players.cpp:62 msgid "Friend" msgstr "好友" -#: ../src/gui/setup_players.cpp:63 +#: src/gui/setup_players.cpp:63 #, fuzzy msgid "Disregarded" msgstr "无视" -#: ../src/gui/setup_players.cpp:64 +#: src/gui/setup_players.cpp:64 msgid "Ignored" msgstr "忽略" -#: ../src/gui/setup_players.cpp:206 ../src/gui/skill.cpp:83 +#: src/gui/setup_players.cpp:206 src/gui/skill.cpp:83 msgid "???" msgstr "" -#: ../src/gui/setup_players.cpp:222 +#: src/gui/setup_players.cpp:222 msgid "Save player list" msgstr "保存玩家列表" -#: ../src/gui/setup_players.cpp:224 +#: src/gui/setup_players.cpp:224 msgid "Allow trading" msgstr "允许交易" -#: ../src/gui/setup_players.cpp:226 +#: src/gui/setup_players.cpp:226 msgid "Allow whispers" msgstr "允许私语" -#: ../src/gui/setup_players.cpp:257 +#: src/gui/setup_players.cpp:257 msgid "When ignoring:" msgstr "当忽略时:" -#: ../src/gui/setup_video.cpp:92 +#: src/gui/setup_video.cpp:92 msgid "No modes available" msgstr "" -#: ../src/gui/setup_video.cpp:94 +#: src/gui/setup_video.cpp:94 msgid "All resolutions available" msgstr "" -#: ../src/gui/setup_video.cpp:117 +#: src/gui/setup_video.cpp:117 msgid "Full screen" msgstr "全屏" -#: ../src/gui/setup_video.cpp:118 +#: src/gui/setup_video.cpp:118 msgid "OpenGL" msgstr "OpenGL" -#: ../src/gui/setup_video.cpp:119 +#: src/gui/setup_video.cpp:119 msgid "Custom cursor" msgstr "自定义鼠标" -#: ../src/gui/setup_video.cpp:120 +#: src/gui/setup_video.cpp:120 #, fuzzy msgid "Particle effects" msgstr "纹理细节" -#: ../src/gui/setup_video.cpp:121 +#: src/gui/setup_video.cpp:121 msgid "Speech bubbles" msgstr "" -#: ../src/gui/setup_video.cpp:122 +#: src/gui/setup_video.cpp:122 msgid "Show name" msgstr "" -#: ../src/gui/setup_video.cpp:124 +#: src/gui/setup_video.cpp:124 msgid "FPS Limit:" msgstr "FPS限制:" -#: ../src/gui/setup_video.cpp:145 +#: src/gui/setup_video.cpp:145 msgid "Gui opacity" msgstr "Gui 透明度" -#: ../src/gui/setup_video.cpp:146 +#: src/gui/setup_video.cpp:146 msgid "Scroll radius" msgstr "滑动半径" -#: ../src/gui/setup_video.cpp:147 +#: src/gui/setup_video.cpp:147 msgid "Scroll laziness" msgstr "滑动延迟" -#: ../src/gui/setup_video.cpp:148 +#: src/gui/setup_video.cpp:148 #, fuzzy msgid "Ambient FX" msgstr "雾化效果" -#: ../src/gui/setup_video.cpp:149 +#: src/gui/setup_video.cpp:149 msgid "Particle Detail" msgstr "纹理细节" -#: ../src/gui/setup_video.cpp:211 ../src/gui/setup_video.cpp:457 +#: src/gui/setup_video.cpp:211 src/gui/setup_video.cpp:457 msgid "off" msgstr "关闭" -#: ../src/gui/setup_video.cpp:214 ../src/gui/setup_video.cpp:225 -#: ../src/gui/setup_video.cpp:460 ../src/gui/setup_video.cpp:474 +#: src/gui/setup_video.cpp:214 src/gui/setup_video.cpp:225 +#: src/gui/setup_video.cpp:460 src/gui/setup_video.cpp:474 msgid "low" msgstr "低" -#: ../src/gui/setup_video.cpp:217 ../src/gui/setup_video.cpp:231 -#: ../src/gui/setup_video.cpp:463 ../src/gui/setup_video.cpp:480 +#: src/gui/setup_video.cpp:217 src/gui/setup_video.cpp:231 +#: src/gui/setup_video.cpp:463 src/gui/setup_video.cpp:480 msgid "high" msgstr "高" -#: ../src/gui/setup_video.cpp:228 ../src/gui/setup_video.cpp:477 +#: src/gui/setup_video.cpp:228 src/gui/setup_video.cpp:477 msgid "medium" msgstr "中" -#: ../src/gui/setup_video.cpp:234 ../src/gui/setup_video.cpp:483 +#: src/gui/setup_video.cpp:234 src/gui/setup_video.cpp:483 msgid "max" msgstr "最大" -#: ../src/gui/setup_video.cpp:303 +#: src/gui/setup_video.cpp:303 msgid "Failed to switch to " msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 msgid "windowed" msgstr "" -#: ../src/gui/setup_video.cpp:304 +#: src/gui/setup_video.cpp:304 #, fuzzy msgid "fullscreen" msgstr "全屏" -#: ../src/gui/setup_video.cpp:305 +#: src/gui/setup_video.cpp:305 msgid "mode and restoration of old mode also failed!" msgstr "" -#: ../src/gui/setup_video.cpp:312 +#: src/gui/setup_video.cpp:312 msgid "Switching to full screen" msgstr "切换到全屏" -#: ../src/gui/setup_video.cpp:313 +#: src/gui/setup_video.cpp:313 msgid "Restart needed for changes to take effect." msgstr "重启生效" -#. OpenGL can currently only be changed by restarting, notify user. -#: ../src/gui/setup_video.cpp:325 +#: src/gui/setup_video.cpp:325 msgid "Changing OpenGL" msgstr "改变成OpenGL" -#: ../src/gui/setup_video.cpp:326 +#: src/gui/setup_video.cpp:326 msgid "Applying change to OpenGL requires restart." msgstr "运用改变为OpenGL需要重新开始" -#. TODO: Find out why the drawing area doesn't resize without a restart. -#: ../src/gui/setup_video.cpp:398 +#: src/gui/setup_video.cpp:398 msgid "Screen resolution changed" msgstr "" -#: ../src/gui/setup_video.cpp:399 +#: src/gui/setup_video.cpp:399 #, fuzzy msgid "Restart your client for the change to take effect." msgstr "重启生效" -#: ../src/gui/setup_video.cpp:417 +#: src/gui/setup_video.cpp:417 msgid "Particle effect settings changed" msgstr "" -#: ../src/gui/setup_video.cpp:418 +#: src/gui/setup_video.cpp:418 #, fuzzy msgid "Restart your client or change maps for the change to take effect." msgstr "重启生效" -#: ../src/gui/skill.cpp:41 +#: src/gui/skill.cpp:41 #, fuzzy msgid "skills.xml" msgstr "技能" -#: ../src/gui/skill.cpp:142 ../src/gui/skill.cpp:186 +#: src/gui/skill.cpp:142 src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "技能点数:%d" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "Up" msgstr "升级" -#: ../src/gui/skill.cpp:143 +#: src/gui/skill.cpp:143 msgid "inc" msgstr "" -#: ../src/gui/skill.cpp:144 +#: src/gui/skill.cpp:144 #, fuzzy msgid "use" msgstr "使用" -#: ../src/gui/skill.cpp:262 +#: src/gui/skill.cpp:262 #, c-format msgid "Error loading skills file: %s" msgstr "" -#: ../src/gui/speechbubble.cpp:35 +#: src/gui/speechbubble.cpp:35 msgid "Speech" msgstr "" -#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:165 +#: src/gui/status.cpp:51 src/gui/status.cpp:168 #, c-format msgid "Job: %d" msgstr "职业:%d" -#: ../src/gui/status.cpp:52 ../src/gui/status.cpp:168 +#: src/gui/status.cpp:52 src/gui/status.cpp:171 #, c-format msgid "Money: %d GP" msgstr "金钱:%d 金币" -#: ../src/gui/status.cpp:54 +#: src/gui/status.cpp:54 msgid "HP:" msgstr "" -#: ../src/gui/status.cpp:57 +#: src/gui/status.cpp:57 msgid "Exp:" msgstr "" -#: ../src/gui/status.cpp:60 +#: src/gui/status.cpp:60 msgid "MP:" msgstr "" -#: ../src/gui/status.cpp:63 +#: src/gui/status.cpp:63 #, fuzzy msgid "Job:" msgstr "职业:%d" -#. ---------------------- -#. Stats Part -#. ---------------------- -#. Static Labels -#: ../src/gui/status.cpp:71 +#: src/gui/status.cpp:71 msgid "Stats" msgstr "状态" -#: ../src/gui/status.cpp:72 +#: src/gui/status.cpp:72 msgid "Total" msgstr "总计" -#: ../src/gui/status.cpp:73 +#: src/gui/status.cpp:73 msgid "Cost" msgstr "花费" -#. Derived Stats -#: ../src/gui/status.cpp:76 +#: src/gui/status.cpp:77 msgid "Attack:" msgstr "攻击:" -#: ../src/gui/status.cpp:77 +#: src/gui/status.cpp:78 msgid "Defense:" msgstr "防御:" -#: ../src/gui/status.cpp:78 +#: src/gui/status.cpp:79 msgid "M.Attack:" msgstr "魔攻:" -#: ../src/gui/status.cpp:79 +#: src/gui/status.cpp:80 msgid "M.Defense:" msgstr "魔防:" -#: ../src/gui/status.cpp:80 +#: src/gui/status.cpp:81 #, c-format msgid "% Accuracy:" msgstr "% Ac精确度:" -#: ../src/gui/status.cpp:81 +#: src/gui/status.cpp:82 #, c-format msgid "% Evade:" msgstr "% E回避率:" -#: ../src/gui/status.cpp:82 +#: src/gui/status.cpp:83 msgid "% Reflex:" msgstr "% 伤害反射:" -#: ../src/gui/status.cpp:208 +#: src/gui/status.cpp:211 msgid "Strength" msgstr "力量" -#: ../src/gui/status.cpp:209 +#: src/gui/status.cpp:212 msgid "Agility" msgstr "敏捷" -#: ../src/gui/status.cpp:210 +#: src/gui/status.cpp:213 msgid "Vitality" msgstr "生命" -#: ../src/gui/status.cpp:211 +#: src/gui/status.cpp:214 msgid "Intelligence" msgstr "智慧" -#: ../src/gui/status.cpp:212 +#: src/gui/status.cpp:215 msgid "Dexterity" msgstr "敏捷" -#: ../src/gui/status.cpp:213 +#: src/gui/status.cpp:216 msgid "Luck" msgstr "幸运" -#: ../src/gui/status.cpp:231 +#: src/gui/status.cpp:234 #, c-format msgid "Remaining Status Points: %d" msgstr "剩余状态点数:%d" -#: ../src/gui/trade.cpp:49 +#: src/gui/trade.cpp:49 #, fuzzy msgid "Trade: You" msgstr "交易" -#: ../src/gui/trade.cpp:54 ../src/gui/trade.cpp:64 +#: src/gui/trade.cpp:54 src/gui/trade.cpp:64 msgid "Trade" msgstr "交易" -#: ../src/gui/trade.cpp:61 +#: src/gui/trade.cpp:61 msgid "Add" msgstr "添加" -#: ../src/gui/trade.cpp:80 ../src/gui/trade.cpp:122 ../src/gui/trade.cpp:172 +#: src/gui/trade.cpp:80 src/gui/trade.cpp:122 src/gui/trade.cpp:172 #, c-format msgid "You get %d GP." msgstr "你得到%d GP." -#: ../src/gui/trade.cpp:81 +#: src/gui/trade.cpp:81 msgid "You give:" msgstr "你付出:" -#: ../src/gui/trade.cpp:250 +#: src/gui/trade.cpp:250 msgid "Failed adding item. You can not overlap one kind of item on the window." msgstr "添加物品失败。你不能覆盖窗口中的该类物品。" -#: ../src/gui/updatewindow.cpp:78 +#: src/gui/updatewindow.cpp:78 #, c-format msgid "Couldn't load text file: %s" msgstr "" -#: ../src/gui/updatewindow.cpp:93 +#: src/gui/updatewindow.cpp:93 msgid "Updating..." msgstr "更新..." -#: ../src/gui/updatewindow.cpp:115 +#: src/gui/updatewindow.cpp:115 msgid "Play" msgstr "开始" -#: ../src/gui/updatewindow.cpp:196 +#: src/gui/updatewindow.cpp:196 msgid "Couldn't load news" msgstr "" -#: ../src/gui/updatewindow.cpp:327 +#: src/gui/updatewindow.cpp:327 msgid "curl error " msgstr "" -#: ../src/gui/updatewindow.cpp:328 +#: src/gui/updatewindow.cpp:328 msgid " host: " msgstr "" -#: ../src/gui/updatewindow.cpp:363 +#: src/gui/updatewindow.cpp:363 #, c-format msgid "Checksum for file %s failed: (%lx/%lx)" msgstr "" -#: ../src/gui/updatewindow.cpp:413 +#: src/gui/updatewindow.cpp:413 msgid "Unable to create mThread" msgstr "" -#: ../src/gui/updatewindow.cpp:451 +#: src/gui/updatewindow.cpp:451 msgid "##1 The update process is incomplete." msgstr "" -#: ../src/gui/updatewindow.cpp:452 +#: src/gui/updatewindow.cpp:452 msgid "##1 It is strongly recommended that" msgstr "" -#: ../src/gui/updatewindow.cpp:453 +#: src/gui/updatewindow.cpp:453 msgid "##1 you try again later" msgstr "" -#: ../src/gui/updatewindow.cpp:507 +#: src/gui/updatewindow.cpp:507 #, c-format msgid "%s already here" msgstr "" -#: ../src/gui/updatewindow.cpp:520 +#: src/gui/updatewindow.cpp:520 msgid "Completed" msgstr "已完成" -#: ../src/net/playerhandler.cpp:193 ../src/net/playerhandler.cpp:248 +#: src/net/playerhandler.cpp:193 src/net/playerhandler.cpp:248 msgid "Message" msgstr "" -#: ../src/net/playerhandler.cpp:194 +#: src/net/playerhandler.cpp:194 msgid "" "You are carrying more then half your weight. You are unable to regain health." msgstr "" -#: ../src/net/playerhandler.cpp:218 +#: src/net/playerhandler.cpp:218 msgid "You are dead." msgstr "" -#: ../src/net/playerhandler.cpp:219 +#: src/net/playerhandler.cpp:219 msgid "We regret to inform you that your character was killed in battle." msgstr "" -#: ../src/net/playerhandler.cpp:220 +#: src/net/playerhandler.cpp:220 #, fuzzy msgid "You are not that alive anymore." msgstr "你现在无法办到!" -#: ../src/net/playerhandler.cpp:221 +#: src/net/playerhandler.cpp:221 msgid "The cold hands of the grim reaper are grabbing for your soul." msgstr "" -#: ../src/net/playerhandler.cpp:222 +#: src/net/playerhandler.cpp:222 msgid "Game Over!" msgstr "" -#: ../src/net/playerhandler.cpp:223 +#: src/net/playerhandler.cpp:223 msgid "Insert coin to continue" msgstr "" -#: ../src/net/playerhandler.cpp:224 +#: src/net/playerhandler.cpp:224 msgid "" "No, kids. Your character did not really die. It... err... went to a better " "place." msgstr "" -#: ../src/net/playerhandler.cpp:225 +#: src/net/playerhandler.cpp:225 msgid "" "Your plan of breaking your enemies weapon by bashing it with your throat " "failed." msgstr "" -#: ../src/net/playerhandler.cpp:226 +#: src/net/playerhandler.cpp:226 msgid "I guess this did not run too well." msgstr "" -#: ../src/net/playerhandler.cpp:227 +#: src/net/playerhandler.cpp:227 msgid "Do you want your possessions identified?" msgstr "" -#. Nethack reference -#: ../src/net/playerhandler.cpp:228 +#: src/net/playerhandler.cpp:228 msgid "Sadly, no trace of you was ever found..." msgstr "" -#. Secret of Mana reference -#: ../src/net/playerhandler.cpp:229 +#: src/net/playerhandler.cpp:229 msgid "Annihilated." msgstr "" -#. Final Fantasy VI reference -#: ../src/net/playerhandler.cpp:230 +#: src/net/playerhandler.cpp:230 msgid "Looks like you got your head handed to you." msgstr "" -#. Earthbound reference -#: ../src/net/playerhandler.cpp:231 +#: src/net/playerhandler.cpp:231 msgid "" "You screwed up again, dump your body down the tubes and get you another one." msgstr "" -#. Leisure Suit Larry 1 Reference -#: ../src/net/playerhandler.cpp:232 +#: src/net/playerhandler.cpp:232 msgid "You're not dead yet. You're just resting." msgstr "" -#. Monty Python reference from a couple of skits -#: ../src/net/playerhandler.cpp:233 +#: src/net/playerhandler.cpp:233 #, fuzzy msgid "You are no more." msgstr "没有备忘录" -#. Monty Python reference from the dead parrot sketch starting now -#: ../src/net/playerhandler.cpp:234 +#: src/net/playerhandler.cpp:234 #, fuzzy msgid "You have ceased to be." msgstr "没有备忘录" -#: ../src/net/playerhandler.cpp:235 +#: src/net/playerhandler.cpp:235 msgid "You've expired and gone to meet your maker." msgstr "" -#: ../src/net/playerhandler.cpp:236 +#: src/net/playerhandler.cpp:236 msgid "You're a stiff." msgstr "" -#: ../src/net/playerhandler.cpp:237 +#: src/net/playerhandler.cpp:237 msgid "Bereft of life, you rest in peace." msgstr "" -#: ../src/net/playerhandler.cpp:238 +#: src/net/playerhandler.cpp:238 msgid "If you weren't so animated, you'd be pushing up the daisies." msgstr "" -#: ../src/net/playerhandler.cpp:239 +#: src/net/playerhandler.cpp:239 msgid "Your metabolic processes are now history." msgstr "" -#: ../src/net/playerhandler.cpp:240 +#: src/net/playerhandler.cpp:240 msgid "You're off the twig." msgstr "" -#: ../src/net/playerhandler.cpp:241 +#: src/net/playerhandler.cpp:241 msgid "You've kicked the bucket." msgstr "" -#: ../src/net/playerhandler.cpp:242 +#: src/net/playerhandler.cpp:242 msgid "" "You've shuffled off your mortal coil, run down the curtain and joined the " "bleedin' choir invisibile." msgstr "" -#: ../src/net/playerhandler.cpp:243 +#: src/net/playerhandler.cpp:243 msgid "You are an ex-player." msgstr "" -#: ../src/net/playerhandler.cpp:244 +#: src/net/playerhandler.cpp:244 msgid "You're pining for the fjords." msgstr "" -#: ../src/net/playerhandler.cpp:267 +#: src/net/playerhandler.cpp:267 msgid "You picked up " msgstr "" -#: ../src/net/playerhandler.cpp:390 +#: src/net/playerhandler.cpp:390 msgid "Equip arrows first" msgstr "" -#: ../src/net/playerhandler.cpp:394 +#: src/net/playerhandler.cpp:394 #, c-format msgid "0x013b: Unhandled message %i" msgstr "" -#: ../src/net/tradehandler.cpp:91 +#: src/net/tradehandler.cpp:91 msgid "Request for trade" msgstr "" -#: ../src/net/tradehandler.cpp:93 +#: src/net/tradehandler.cpp:93 msgid " wants to trade with you, do you accept?" msgstr "" -#. Too far away -#: ../src/net/tradehandler.cpp:107 +#: src/net/tradehandler.cpp:107 msgid "Trading isn't possible. Trade partner is too far away." msgstr "" -#. Character doesn't exist -#: ../src/net/tradehandler.cpp:111 +#: src/net/tradehandler.cpp:111 msgid "Trading isn't possible. Character doesn't exist." msgstr "" -#. Invite request check failed... -#: ../src/net/tradehandler.cpp:115 +#: src/net/tradehandler.cpp:115 msgid "Trade cancelled due to an unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:121 +#: src/net/tradehandler.cpp:121 msgid "Trade: You and " msgstr "" -#: ../src/net/tradehandler.cpp:127 +#: src/net/tradehandler.cpp:127 #, fuzzy msgid "Trade with " msgstr "交易" -#: ../src/net/tradehandler.cpp:128 +#: src/net/tradehandler.cpp:128 #, fuzzy msgid " cancelled" msgstr "取消" -#. Shouldn't happen as well, but to be sure -#: ../src/net/tradehandler.cpp:135 +#: src/net/tradehandler.cpp:135 msgid "Unhandled trade cancel packet" msgstr "" -#. Add item failed - player overweighted -#: ../src/net/tradehandler.cpp:185 +#: src/net/tradehandler.cpp:185 msgid "Failed adding item. Trade partner is over weighted." msgstr "" -#. Add item failed - player has no free slot -#: ../src/net/tradehandler.cpp:190 +#: src/net/tradehandler.cpp:190 msgid "Failed adding item. Trade partner has no free slot." msgstr "" -#: ../src/net/tradehandler.cpp:194 +#: src/net/tradehandler.cpp:194 msgid "Failed adding item for unknown reason." msgstr "" -#: ../src/net/tradehandler.cpp:207 +#: src/net/tradehandler.cpp:207 #, fuzzy msgid "Trade canceled." msgstr "交易失败!" -#: ../src/net/tradehandler.cpp:214 +#: src/net/tradehandler.cpp:214 #, fuzzy msgid "Trade completed." msgstr "已完成" -#: ../src/resources/colordb.cpp:56 +#: src/resources/colordb.cpp:56 #, c-format msgid "Trying TMW's color file, %s." msgstr "" -#: ../src/resources/colordb.cpp:66 +#: src/resources/colordb.cpp:66 msgid "ColorDB: Failed" msgstr "" -#: ../src/resources/colordb.cpp:83 +#: src/resources/colordb.cpp:83 #, c-format msgid "ColorDB: Redefinition of dye ID %d" msgstr "" -#: ../src/resources/colordb.cpp:98 +#: src/resources/colordb.cpp:98 msgid "Unloading color database..." msgstr "" -#: ../src/resources/colordb.cpp:113 +#: src/resources/colordb.cpp:113 #, c-format msgid "ColorDB: Error, unknown dye ID# %d" msgstr "" -#: ../src/resources/emotedb.cpp:52 +#: src/resources/emotedb.cpp:52 msgid "Initializing emote database..." msgstr "" -#: ../src/resources/emotedb.cpp:59 +#: src/resources/emotedb.cpp:59 msgid "Emote Database: Error while loading emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:72 +#: src/resources/emotedb.cpp:72 msgid "Emote Database: Emote with missing ID in emotes.xml!" msgstr "" -#: ../src/resources/emotedb.cpp:131 +#: src/resources/emotedb.cpp:131 #, c-format msgid "EmoteDB: Warning, unknown emote ID %d requested" msgstr "" -#: ../src/resources/itemdb.cpp:54 +#: src/resources/itemdb.cpp:54 msgid "Initializing item database..." msgstr "" -#: ../src/resources/itemdb.cpp:62 +#: src/resources/itemdb.cpp:62 msgid "items.xml" msgstr "" -#: ../src/resources/itemdb.cpp:67 +#: src/resources/itemdb.cpp:67 msgid "ItemDB: Error while loading items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:79 +#: src/resources/itemdb.cpp:79 msgid "ItemDB: Invalid or missing item ID in items.xml!" msgstr "" -#: ../src/resources/itemdb.cpp:84 +#: src/resources/itemdb.cpp:84 #, c-format msgid "ItemDB: Redefinition of item ID %d" msgstr "" -#: ../src/resources/itemdb.cpp:102 +#: src/resources/itemdb.cpp:102 msgid "Unnamed" msgstr "未知物品" -#: ../src/resources/itemdb.cpp:140 +#: src/resources/itemdb.cpp:140 #, c-format msgid "ItemDB: Duplicate name of item found item %d" msgstr "" -#: ../src/resources/itemdb.cpp:166 +#: src/resources/itemdb.cpp:166 msgid "Unloading item database..." msgstr "" -#: ../src/resources/itemdb.cpp:184 +#: src/resources/itemdb.cpp:184 #, c-format msgid "ItemDB: Error, unknown item ID# %d" msgstr "" -#: ../src/resources/itemdb.cpp:240 +#: src/resources/itemdb.cpp:240 #, c-format msgid "ItemDB: Ignoring unknown sound event '%s'" msgstr "" -#: ../src/resources/monsterdb.cpp:44 +#: src/resources/monsterdb.cpp:44 #, fuzzy msgid "unnamed" msgstr "未知物品" -#: ../src/resources/monsterdb.cpp:46 +#: src/resources/monsterdb.cpp:46 msgid "Initializing monster database..." msgstr "" -#: ../src/resources/monsterdb.cpp:48 +#: src/resources/monsterdb.cpp:48 msgid "monsters.xml" msgstr "" -#: ../src/resources/monsterdb.cpp:53 +#: src/resources/monsterdb.cpp:53 msgid "Monster Database: Error while loading monster.xml!" msgstr "" -#: ../src/resources/monsterdb.cpp:84 +#: src/resources/monsterdb.cpp:84 #, c-format msgid "" "MonsterDB: Unknown target cursor type \"%s\" for %s - using medium sized one" msgstr "" -#: ../src/resources/monsterdb.cpp:121 +#: src/resources/monsterdb.cpp:121 #, c-format msgid "MonsterDB: Warning, sound effect %s for unknown event %s of monster %s" msgstr "" -#: ../src/resources/monsterdb.cpp:159 +#: src/resources/monsterdb.cpp:159 #, c-format msgid "MonsterDB: Warning, unknown monster ID %d requested" msgstr "" -#: ../src/resources/npcdb.cpp:48 +#: src/resources/npcdb.cpp:48 msgid "Initializing NPC database..." msgstr "" -#: ../src/resources/npcdb.cpp:55 +#: src/resources/npcdb.cpp:55 msgid "NPC Database: Error while loading npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:67 +#: src/resources/npcdb.cpp:67 msgid "NPC Database: NPC with missing ID in npcs.xml!" msgstr "" -#: ../src/resources/npcdb.cpp:125 +#: src/resources/npcdb.cpp:125 #, c-format msgid "NPCDB: Warning, unknown NPC ID %d requested" msgstr "" -#: ../src/game.cpp:390 +#: src/game.cpp:390 msgid "Screenshot saved to ~/" msgstr "" -#: ../src/game.cpp:395 +#: src/game.cpp:395 #, fuzzy msgid "Saving screenshot failed!" msgstr "原地休息失败!" -#: ../src/game.cpp:396 +#: src/game.cpp:396 msgid "Error: could not save screenshot." msgstr "" -#: ../src/game.cpp:471 +#: src/game.cpp:471 msgid "Network Error" msgstr "" -#: ../src/game.cpp:472 +#: src/game.cpp:472 msgid "The connection to the server was lost, the program will now quit" msgstr "" -#: ../src/game.cpp:603 +#: src/game.cpp:603 #, fuzzy msgid "Are you sure you want to quit?" msgstr "你确定想删除这个角色?" -#: ../src/game.cpp:610 +#: src/game.cpp:610 msgid "no" msgstr "" -#: ../src/game.cpp:738 +#: src/game.cpp:738 msgid "Ignoring incoming trade requests" msgstr "" -#: ../src/game.cpp:745 +#: src/game.cpp:745 msgid "Accepting incoming trade requests" msgstr "" -#: ../src/game.cpp:781 +#: src/game.cpp:781 #, c-format msgid "Warning: guichan input exception: %s" msgstr "" -#: ../src/keyboardconfig.cpp:42 +#: src/keyboardconfig.cpp:42 msgid "Move Up" msgstr "" -#: ../src/keyboardconfig.cpp:43 +#: src/keyboardconfig.cpp:43 msgid "Move Down" msgstr "" -#: ../src/keyboardconfig.cpp:44 +#: src/keyboardconfig.cpp:44 msgid "Move Left" msgstr "" -#: ../src/keyboardconfig.cpp:45 +#: src/keyboardconfig.cpp:45 msgid "Move Right" msgstr "" -#: ../src/keyboardconfig.cpp:46 +#: src/keyboardconfig.cpp:46 #, fuzzy msgid "Attack" msgstr "攻击:" -#: ../src/keyboardconfig.cpp:47 +#: src/keyboardconfig.cpp:47 msgid "Smilie" msgstr "" -#: ../src/keyboardconfig.cpp:48 +#: src/keyboardconfig.cpp:48 #, fuzzy msgid "Talk" msgstr "总计" -#: ../src/keyboardconfig.cpp:49 +#: src/keyboardconfig.cpp:49 #, fuzzy msgid "Stop Attack" msgstr "攻击:" -#: ../src/keyboardconfig.cpp:50 +#: src/keyboardconfig.cpp:50 msgid "Target Closest" msgstr "" -#: ../src/keyboardconfig.cpp:51 +#: src/keyboardconfig.cpp:51 msgid "Target NPC" msgstr "" -#: ../src/keyboardconfig.cpp:52 +#: src/keyboardconfig.cpp:52 #, fuzzy msgid "Target Player" msgstr "玩家" -#: ../src/keyboardconfig.cpp:53 +#: src/keyboardconfig.cpp:53 msgid "Pickup" msgstr "" -#: ../src/keyboardconfig.cpp:54 +#: src/keyboardconfig.cpp:54 #, fuzzy msgid "Hide Windows" msgstr "重置窗口" -#: ../src/keyboardconfig.cpp:55 +#: src/keyboardconfig.cpp:55 #, fuzzy msgid "Sit" msgstr "分离" -#: ../src/keyboardconfig.cpp:56 +#: src/keyboardconfig.cpp:56 msgid "Screenshot" msgstr "" -#: ../src/keyboardconfig.cpp:57 +#: src/keyboardconfig.cpp:57 msgid "Enable/Disable Trading" msgstr "" -#: ../src/keyboardconfig.cpp:58 +#: src/keyboardconfig.cpp:58 msgid "Find Path to Mouse" msgstr "" -#: ../src/keyboardconfig.cpp:59 ../src/keyboardconfig.cpp:60 -#: ../src/keyboardconfig.cpp:61 ../src/keyboardconfig.cpp:62 -#: ../src/keyboardconfig.cpp:63 ../src/keyboardconfig.cpp:64 -#: ../src/keyboardconfig.cpp:65 ../src/keyboardconfig.cpp:66 -#: ../src/keyboardconfig.cpp:67 ../src/keyboardconfig.cpp:68 -#: ../src/keyboardconfig.cpp:69 ../src/keyboardconfig.cpp:70 +#: src/keyboardconfig.cpp:59 src/keyboardconfig.cpp:60 +#: src/keyboardconfig.cpp:61 src/keyboardconfig.cpp:62 +#: src/keyboardconfig.cpp:63 src/keyboardconfig.cpp:64 +#: src/keyboardconfig.cpp:65 src/keyboardconfig.cpp:66 +#: src/keyboardconfig.cpp:67 src/keyboardconfig.cpp:68 +#: src/keyboardconfig.cpp:69 src/keyboardconfig.cpp:70 #, fuzzy, c-format msgid "Item Shortcut %d" msgstr "快捷键" -#: ../src/keyboardconfig.cpp:71 +#: src/keyboardconfig.cpp:71 #, fuzzy msgid "Help Window" msgstr "重置窗口" -#: ../src/keyboardconfig.cpp:72 +#: src/keyboardconfig.cpp:72 #, fuzzy msgid "Status Window" msgstr "状态" -#: ../src/keyboardconfig.cpp:73 +#: src/keyboardconfig.cpp:73 #, fuzzy msgid "Inventory Window" msgstr "物品栏" -#: ../src/keyboardconfig.cpp:74 +#: src/keyboardconfig.cpp:74 #, fuzzy msgid "Equipment WIndow" msgstr "装备" -#: ../src/keyboardconfig.cpp:75 +#: src/keyboardconfig.cpp:75 #, fuzzy msgid "Skill Window" msgstr "技能点数:%d" -#: ../src/keyboardconfig.cpp:76 +#: src/keyboardconfig.cpp:76 msgid "Minimap Window" msgstr "" -#: ../src/keyboardconfig.cpp:77 +#: src/keyboardconfig.cpp:77 #, fuzzy msgid "Chat Window" msgstr "重置窗口" -#: ../src/keyboardconfig.cpp:78 +#: src/keyboardconfig.cpp:78 msgid "Item Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:79 +#: src/keyboardconfig.cpp:79 #, fuzzy msgid "Setup Window" msgstr "重置窗口" -#: ../src/keyboardconfig.cpp:80 +#: src/keyboardconfig.cpp:80 #, fuzzy msgid "Debug Window" msgstr "重置窗口" -#: ../src/keyboardconfig.cpp:81 +#: src/keyboardconfig.cpp:81 #, fuzzy msgid "Emote Window" msgstr "发送表情失败!" -#: ../src/keyboardconfig.cpp:82 +#: src/keyboardconfig.cpp:82 msgid "Emote Shortcut Window" msgstr "" -#: ../src/keyboardconfig.cpp:83 ../src/keyboardconfig.cpp:84 -#: ../src/keyboardconfig.cpp:85 ../src/keyboardconfig.cpp:86 -#: ../src/keyboardconfig.cpp:87 ../src/keyboardconfig.cpp:88 -#: ../src/keyboardconfig.cpp:89 ../src/keyboardconfig.cpp:90 -#: ../src/keyboardconfig.cpp:91 ../src/keyboardconfig.cpp:92 -#: ../src/keyboardconfig.cpp:93 ../src/keyboardconfig.cpp:94 +#: src/keyboardconfig.cpp:83 src/keyboardconfig.cpp:84 +#: src/keyboardconfig.cpp:85 src/keyboardconfig.cpp:86 +#: src/keyboardconfig.cpp:87 src/keyboardconfig.cpp:88 +#: src/keyboardconfig.cpp:89 src/keyboardconfig.cpp:90 +#: src/keyboardconfig.cpp:91 src/keyboardconfig.cpp:92 +#: src/keyboardconfig.cpp:93 src/keyboardconfig.cpp:94 #, fuzzy, c-format msgid "Emote Shortcut %d" msgstr "快捷键" -#: ../src/keyboardconfig.cpp:95 +#: src/keyboardconfig.cpp:95 msgid "Toggle Chat" msgstr "" -#: ../src/keyboardconfig.cpp:96 +#: src/keyboardconfig.cpp:96 msgid "Scroll Chat Up" msgstr "" -#: ../src/keyboardconfig.cpp:97 +#: src/keyboardconfig.cpp:97 msgid "Scroll Chat Down" msgstr "" -#: ../src/keyboardconfig.cpp:98 +#: src/keyboardconfig.cpp:98 #, fuzzy msgid "Select OK" msgstr "选择服务器" -#: ../src/main.cpp:214 +#: src/main.cpp:214 #, c-format msgid "Error: Invalid update host: %s" msgstr "" -#: ../src/main.cpp:215 +#: src/main.cpp:215 msgid "Invalid update host: " msgstr "" -#: ../src/main.cpp:221 +#: src/main.cpp:221 msgid "Warning: no protocol was specified for the update host" msgstr "" -#: ../src/main.cpp:246 +#: src/main.cpp:246 #, c-format msgid "Error: %s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:248 ../src/main.cpp:254 +#: src/main.cpp:248 src/main.cpp:254 msgid "Error creating updates directory!" msgstr "" -#: ../src/main.cpp:252 +#: src/main.cpp:252 #, c-format msgid "Error: %s/%s can't be made, but doesn't exist!" msgstr "" -#: ../src/main.cpp:283 +#: src/main.cpp:283 msgid " can't be created, but it doesn't exist! Exiting." msgstr "" -#: ../src/main.cpp:292 +#: src/main.cpp:292 #, c-format msgid "Starting Aethyra Version %s" msgstr "" -#: ../src/main.cpp:294 +#: src/main.cpp:294 msgid "Starting Aethyra - Version not defined" msgstr "" -#. Initialize SDL -#: ../src/main.cpp:298 +#: src/main.cpp:298 msgid "Initializing SDL..." msgstr "" -#: ../src/main.cpp:300 +#: src/main.cpp:300 msgid "Could not initialize SDL: " msgstr "" -#: ../src/main.cpp:313 +#: src/main.cpp:313 msgid " couldn't be set as home directory! Exiting." msgstr "" -#: ../src/main.cpp:333 +#: src/main.cpp:333 #, c-format msgid "Can't find Resources directory\n" msgstr "" -#. Fill configuration with defaults -#: ../src/main.cpp:343 +#: src/main.cpp:343 msgid "Initializing configuration..." msgstr "" -#: ../src/main.cpp:426 +#: src/main.cpp:426 msgid "Couldn't set " msgstr "" -#: ../src/main.cpp:427 +#: src/main.cpp:427 msgid " video mode: " msgstr "" -#: ../src/main.cpp:457 +#: src/main.cpp:457 #, c-format msgid "Warning: %s" msgstr "" -#: ../src/main.cpp:499 +#: src/main.cpp:499 msgid "aethyra" msgstr "" -#: ../src/main.cpp:500 +#: src/main.cpp:500 msgid "Options: " msgstr "" -#: ../src/main.cpp:501 +#: src/main.cpp:501 msgid " -C --configfile : Configuration file to use" msgstr "" -#: ../src/main.cpp:502 +#: src/main.cpp:502 msgid " -d --data : Directory to load game data from" msgstr "" -#: ../src/main.cpp:503 +#: src/main.cpp:503 msgid " -D --default : Bypass the login process with default settings" msgstr "" -#: ../src/main.cpp:504 +#: src/main.cpp:504 #, fuzzy msgid " -h --help : Display this help" msgstr "/help: 显示帮助信息" -#: ../src/main.cpp:505 +#: src/main.cpp:505 msgid " -H --updatehost : Use this update host" msgstr "" -#: ../src/main.cpp:506 +#: src/main.cpp:506 msgid " -p --playername : Login with this player" msgstr "" -#: ../src/main.cpp:507 +#: src/main.cpp:507 msgid " -P --password : Login with this password" msgstr "" -#: ../src/main.cpp:508 +#: src/main.cpp:508 msgid " -u --skipupdate : Skip the update downloads" msgstr "" -#: ../src/main.cpp:509 +#: src/main.cpp:509 msgid " -U --username : Login with this username" msgstr "" -#: ../src/main.cpp:510 +#: src/main.cpp:510 msgid " -v --version : Display the version" msgstr "" -#: ../src/main.cpp:516 ../src/main.cpp:519 +#: src/main.cpp:516 src/main.cpp:519 msgid "Aethyra version " msgstr "" -#: ../src/main.cpp:520 +#: src/main.cpp:520 msgid "(local build?, PACKAGE_VERSION is not defined)" msgstr "" -#: ../src/main.cpp:616 +#: src/main.cpp:616 #, fuzzy msgid "Trying to connect to account server..." msgstr "正在连接 帐号 服务器..." -#: ../src/main.cpp:617 +#: src/main.cpp:617 #, c-format msgid "Username is %s" msgstr "" -#: ../src/main.cpp:671 +#: src/main.cpp:671 #, fuzzy msgid "Trying to connect to char server..." msgstr "正在连接 角色 服务器..." -#: ../src/main.cpp:693 +#: src/main.cpp:693 #, c-format msgid "Memorizing selected character %s" msgstr "" -#: ../src/main.cpp:699 +#: src/main.cpp:699 #, fuzzy msgid "Trying to connect to map server..." msgstr "正在连接 地图 服务器..." -#: ../src/main.cpp:700 +#: src/main.cpp:700 #, fuzzy, c-format msgid "Map: %s" msgstr "姓名:%s" -#: ../src/main.cpp:830 +#: src/main.cpp:830 #, c-format msgid "Couldn't load %s as wallpaper" msgstr "" -#: ../src/main.cpp:863 +#: src/main.cpp:863 msgid "Got disconnected from server!" msgstr "和服务器失去连接" -#: ../src/main.cpp:1068 +#: src/main.cpp:1068 msgid "Connecting to map server..." msgstr "正在连接 地图 服务器..." -#: ../src/main.cpp:1076 +#: src/main.cpp:1076 msgid "Connecting to character server..." msgstr "正在连接 角色 服务器..." -#: ../src/main.cpp:1084 +#: src/main.cpp:1084 msgid "Connecting to account server..." msgstr "正在连接 帐号 服务器..." -#: ../src/party.cpp:55 +#: src/party.cpp:55 msgid "Not yet implemented!" msgstr "" -#: ../src/party.cpp:64 +#: src/party.cpp:64 msgid "Party command not known." msgstr "" -#: ../src/party.cpp:71 +#: src/party.cpp:71 msgid "Party name is missing." msgstr "" -#: ../src/party.cpp:84 +#: src/party.cpp:84 msgid "Left party." msgstr "" -#: ../src/party.cpp:92 +#: src/party.cpp:92 msgid "Party successfully created." msgstr "" -#: ../src/party.cpp:97 +#: src/party.cpp:97 #, fuzzy msgid "Could not create party." msgstr "不能加入工会!" -#: ../src/party.cpp:106 +#: src/party.cpp:106 #, c-format msgid "%s is already a member of a party." msgstr "" -#: ../src/party.cpp:110 +#: src/party.cpp:110 #, c-format msgid "%s refused your invitation." msgstr "" -#: ../src/party.cpp:114 +#: src/party.cpp:114 #, c-format msgid "%s is now a member of your party." msgstr "" -#: ../src/party.cpp:126 +#: src/party.cpp:126 msgid "You can't have a blank party name!" msgstr "" -#: ../src/party.cpp:130 +#: src/party.cpp:130 #, fuzzy msgid "Invite to party" msgstr "物品栏" -#: ../src/party.cpp:131 +#: src/party.cpp:131 #, c-format msgid "%s invites you to join the %s party, do you accept?" msgstr "" -#: ../src/party.cpp:149 +#: src/party.cpp:149 #, c-format msgid "%s has left your party." msgstr "" -#: ../src/party.cpp:161 +#: src/party.cpp:161 msgid "Party chat received, but being is not a player" msgstr "" -#: ../src/party.cpp:173 +#: src/party.cpp:173 #, fuzzy msgid "Command: /party " msgstr "指令: /help <指令>" -#: ../src/party.cpp:174 +#: src/party.cpp:174 msgid "where can be one of:" msgstr "" -#: ../src/party.cpp:175 +#: src/party.cpp:175 msgid " /new" msgstr "" -#: ../src/party.cpp:176 +#: src/party.cpp:176 #, fuzzy msgid " /create" msgstr "建立" -#: ../src/party.cpp:177 +#: src/party.cpp:177 msgid " /prefix" msgstr "" -#: ../src/party.cpp:178 +#: src/party.cpp:178 msgid " /leave" msgstr "" -#: ../src/party.cpp:179 +#: src/party.cpp:179 #, fuzzy msgid "This command implements the partying function." msgstr "该指令显现<指令>的帮助信息" -#: ../src/party.cpp:181 +#: src/party.cpp:181 msgid "Type /help party for further help." msgstr "" -#: ../src/party.cpp:187 +#: src/party.cpp:187 #, fuzzy msgid "Command: /party new " msgstr "指令: /announce <信息>" -#: ../src/party.cpp:188 +#: src/party.cpp:188 msgid "Command: /party create " msgstr "" -#: ../src/party.cpp:189 +#: src/party.cpp:189 msgid "These commands create a new party " msgstr "" -#: ../src/party.cpp:196 +#: src/party.cpp:196 #, fuzzy msgid "This command sets the party prefix character." msgstr "该指令可清除历史聊天记录。" -#: ../src/party.cpp:198 +#: src/party.cpp:198 msgid "" "Any message preceded by is sent to the party instead of " "everyone." msgstr "" -#: ../src/party.cpp:200 +#: src/party.cpp:200 #, fuzzy msgid "Command: /party prefix" msgstr "指令: /clear" -#: ../src/party.cpp:201 +#: src/party.cpp:201 #, fuzzy msgid "This command reports the current party prefix character." msgstr "该指令可清除历史聊天记录。" -#: ../src/party.cpp:209 +#: src/party.cpp:209 #, fuzzy msgid "Command: /party leave" msgstr "指令: /clear" -#: ../src/party.cpp:210 +#: src/party.cpp:210 #, fuzzy msgid "This command causes the player to leave the party." msgstr "该指令可清除历史聊天记录。" -#: ../src/party.cpp:214 +#: src/party.cpp:214 #, fuzzy msgid "Unknown /party command." msgstr "未知命令" -#: ../src/party.cpp:215 +#: src/party.cpp:215 #, fuzzy msgid "Type /help party for a list of options." msgstr "输入 /help 获取指令列表。" -- cgit v1.2.3-60-g2f50 From 450edb5900a46ada0cc6292f0079a31ea5d04573 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Sat, 7 Feb 2009 21:51:35 -0700 Subject: Some more include cleanups. Signed-off-by: Ira Rice --- src/being.cpp | 6 ++++++ src/being.h | 32 +++++++++++++++++------------ src/beingmanager.cpp | 2 -- src/configlistener.h | 2 +- src/configuration.cpp | 2 -- src/configuration.h | 3 ++- src/effectmanager.cpp | 2 +- src/effectmanager.h | 5 ++--- src/engine.cpp | 10 ---------- src/engine.h | 2 -- src/equipment.cpp | 2 -- src/floor_item.cpp | 16 +++++++++++++++ src/floor_item.h | 22 ++++++++++---------- src/game.cpp | 7 +------ src/game.h | 1 - src/graphics.h | 8 ++++++-- src/gui/char_select.cpp | 2 ++ src/gui/debugwindow.cpp | 1 - src/gui/equipmentwindow.cpp | 1 - src/gui/gui.h | 1 - src/gui/inventorywindow.cpp | 1 - src/gui/itemshortcutcontainer.cpp | 1 - src/gui/setup_players.h | 2 +- src/gui/viewport.cpp | 1 - src/gui/viewport.h | 7 +++++-- src/guichanfwd.h | 3 ++- src/inventory.cpp | 42 +++++++++++++++++++-------------------- src/itemshortcut.cpp | 17 ++++++++-------- src/joystick.cpp | 2 -- src/joystick.h | 6 ++++-- src/keyboardconfig.cpp | 3 +-- src/keyboardconfig.h | 11 +++++----- src/localplayer.cpp | 8 ++++++-- src/localplayer.h | 8 ++++++-- src/log.cpp | 2 -- src/log.h | 1 - src/main.cpp | 4 ---- src/map.cpp | 5 +++++ src/map.h | 3 ++- src/monster.cpp | 3 +-- src/net/beinghandler.cpp | 1 - src/net/equipmenthandler.cpp | 1 - src/net/loginhandler.h | 1 - src/net/partyhandler.cpp | 1 - src/npc.cpp | 1 - src/openglgraphics.cpp | 5 ----- src/particle.cpp | 2 ++ src/particle.h | 2 -- src/particlecontainer.cpp | 5 +---- src/particlecontainer.h | 6 +----- src/particleemitter.cpp | 5 ++--- src/particleemitter.h | 4 ++-- src/particleemitterprop.h | 1 - src/party.cpp | 1 - src/player.cpp | 7 ++----- src/player.h | 2 +- src/player_relations.cpp | 5 +++-- src/player_relations.h | 5 ++--- src/properties.h | 3 +-- src/resources/animation.cpp | 2 -- src/resources/buddylist.h | 3 ++- src/resources/colordb.cpp | 2 -- src/resources/dye.cpp | 1 - src/resources/emotedb.cpp | 2 -- src/resources/image.h | 2 ++ src/resources/imageloader.cpp | 1 - src/resources/imagewriter.h | 2 -- src/resources/itemdb.cpp | 2 -- src/resources/itemdb.h | 2 ++ src/resources/mapreader.cpp | 1 + src/resources/mapreader.h | 2 -- src/resources/monsterdb.cpp | 2 +- src/resources/monsterdb.h | 2 +- src/resources/npcdb.cpp | 2 -- src/resources/resource.h | 3 +-- src/resources/soundeffect.h | 3 +-- src/simpleanimation.cpp | 10 +++++++++- src/simpleanimation.h | 11 +++------- src/text.cpp | 6 ++---- src/text.h | 10 +++++----- src/textmanager.cpp | 14 +++---------- src/textmanager.h | 5 +++-- src/textparticle.cpp | 2 ++ src/textparticle.h | 2 -- src/utils/tostring.h | 2 +- 85 files changed, 189 insertions(+), 222 deletions(-) diff --git a/src/being.cpp b/src/being.cpp index dc843e43..2b4ba767 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -25,6 +25,7 @@ #include "animatedsprite.h" #include "being.h" #include "configuration.h" +#include "effectmanager.h" #include "game.h" #include "graphics.h" #include "localplayer.h" @@ -34,7 +35,12 @@ #include "sound.h" #include "text.h" +#include "gui/speechbubble.h" + +#include "resources/colordb.h" + #include "resources/emotedb.h" +#include "resources/image.h" #include "resources/imageset.h" #include "resources/itemdb.h" #include "resources/iteminfo.h" diff --git a/src/being.h b/src/being.h index 812ffdd3..109a44ad 100644 --- a/src/being.h +++ b/src/being.h @@ -22,37 +22,39 @@ #ifndef BEING_H #define BEING_H -#include -#include +#include + #include + #include #include #include -#include "animatedsprite.h" -#include "effectmanager.h" -#include "map.h" #include "particlecontainer.h" #include "position.h" #include "sprite.h" -#include "gui/speechbubble.h" - -#include "resources/colordb.h" +#include "resources/spritedef.h" #define FIRST_IGNORE_EMOTE 14 #define STATUS_EFFECTS 32 class AnimatedSprite; +class Image; class ItemInfo; class Item; class Map; class Graphics; class Particle; +class Position; class SpeechBubble; class Text; -enum Gender { +typedef std::list Sprites; +typedef Sprites::iterator SpriteIterator; + +enum Gender +{ GENDER_MALE = 0, GENDER_FEMALE = 1, GENDER_UNSPECIFIED = 2 @@ -61,7 +63,8 @@ enum Gender { class Being : public Sprite { public: - enum Type { + enum Type + { UNKNOWN, PLAYER, NPC, @@ -71,7 +74,8 @@ class Being : public Sprite /** * Action the being is currently performing. */ - enum Action { + enum Action + { STAND, WALK, ATTACK, @@ -80,7 +84,8 @@ class Being : public Sprite HURT }; - enum Sprite { + enum Sprite + { BASE_SPRITE = 0, SHOE_SPRITE, BOTTOMCLOTHES_SPRITE, @@ -96,7 +101,8 @@ class Being : public Sprite VECTOREND_SPRITE }; - enum TargetCursorSize { + enum TargetCursorSize + { TC_SMALL = 0, TC_MEDIUM, TC_LARGE, diff --git a/src/beingmanager.cpp b/src/beingmanager.cpp index 9e620ca0..a417ee50 100644 --- a/src/beingmanager.cpp +++ b/src/beingmanager.cpp @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include "beingmanager.h" #include "localplayer.h" #include "monster.h" diff --git a/src/configlistener.h b/src/configlistener.h index 51d58144..ec7d6a2c 100644 --- a/src/configlistener.h +++ b/src/configlistener.h @@ -22,7 +22,7 @@ #ifndef CONFIGLISTENER_H #define CONFIGLISTENER_H -#include +#include /** * The listener interface for receiving notifications about changes to diff --git a/src/configuration.cpp b/src/configuration.cpp index 04cb4f36..f6c74428 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include "configlistener.h" #include "configuration.h" #include "log.h" diff --git a/src/configuration.h b/src/configuration.h index 0cc4e29f..da12e1e4 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -22,8 +22,9 @@ #ifndef CONFIGURATION_H #define CONFIGURATION_H -#include #include + +#include #include #include #include diff --git a/src/effectmanager.cpp b/src/effectmanager.cpp index 63796f73..0a04c33d 100644 --- a/src/effectmanager.cpp +++ b/src/effectmanager.cpp @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - +#include "being.h" #include "effectmanager.h" #include "log.h" #include "particle.h" diff --git a/src/effectmanager.h b/src/effectmanager.h index a9efcdbc..619b8e0d 100644 --- a/src/effectmanager.h +++ b/src/effectmanager.h @@ -25,15 +25,14 @@ #include #include -#include "being.h" - class Being; class EffectManager { public: - struct EffectDescription { + struct EffectDescription + { int id; std::string GFX; std::string SFX; diff --git a/src/engine.cpp b/src/engine.cpp index 29b8921a..c91e42f9 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -19,18 +19,12 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - -#include "being.h" #include "beingmanager.h" -#include "configuration.h" #include "engine.h" #include "flooritemmanager.h" #include "game.h" -#include "graphics.h" #include "localplayer.h" #include "log.h" -#include "main.h" #include "map.h" #include "particle.h" #include "sound.h" @@ -43,14 +37,10 @@ #include "net/protocol.h" #include "resources/mapreader.h" -#include "resources/monsterdb.h" #include "resources/resourcemanager.h" -#include "utils/dtor.h" #include "utils/tostring.h" -extern Minimap *minimap; - char itemCurrenyQ[10] = "0"; Engine::Engine(Network *network): diff --git a/src/engine.h b/src/engine.h index f2852351..7ad6d894 100644 --- a/src/engine.h +++ b/src/engine.h @@ -22,7 +22,6 @@ #ifndef _ENGINE_H #define _ENGINE_H -#include #include class Map; @@ -52,7 +51,6 @@ class Engine const std::string &getCurrentMapName() { return mMapName; } - /** * Sets the currently active map. */ diff --git a/src/equipment.cpp b/src/equipment.cpp index d5e0f656..b21115a3 100644 --- a/src/equipment.cpp +++ b/src/equipment.cpp @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include "equipment.h" #include "item.h" #include "inventory.h" diff --git a/src/floor_item.cpp b/src/floor_item.cpp index 0c4c1c10..fbe606b4 100644 --- a/src/floor_item.cpp +++ b/src/floor_item.cpp @@ -20,8 +20,12 @@ */ #include "floor_item.h" +#include "graphics.h" +#include "item.h" #include "map.h" +#include "resources/image.h" + FloorItem::FloorItem(unsigned int id, unsigned int itemId, unsigned short x, @@ -46,3 +50,15 @@ FloorItem::~FloorItem() delete mItem; } + +unsigned int FloorItem::getItemId() const +{ + return mItem->getId(); +} + +void FloorItem::draw(Graphics *graphics, int offsetX, int offsetY) const +{ + graphics->drawImage(mItem->getImage(), + mX * 32 + offsetX, + mY * 32 + offsetY); +} diff --git a/src/floor_item.h b/src/floor_item.h index a7299bfb..444c756a 100644 --- a/src/floor_item.h +++ b/src/floor_item.h @@ -22,11 +22,16 @@ #ifndef FLOORITEM_H #define FLOORITEM_H -#include "graphics.h" -#include "item.h" -#include "map.h" +#include + #include "sprite.h" -#include "resources/image.h" + +class Graphics; +class Image; +class Item; +class Map; + +typedef std::list Sprites; /** * An item lying on the floor. @@ -56,7 +61,7 @@ class FloorItem : public Sprite /** * Returns the item id. */ - unsigned int getItemId() const { return mItem->getId(); } + unsigned int getItemId() const; /** * Returns the x coordinate. @@ -80,12 +85,7 @@ class FloorItem : public Sprite * * @see Sprite::draw(Graphics, int, int) */ - void draw(Graphics *graphics, int offsetX, int offsetY) const - { - graphics->drawImage(mItem->getImage(), - mX * 32 + offsetX, - mY * 32 + offsetY); - } + void draw(Graphics *graphics, int offsetX, int offsetY) const; private: unsigned int mId; diff --git a/src/game.cpp b/src/game.cpp index 28c29874..e2064f58 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -25,9 +25,9 @@ #include #include -#include #include "beingmanager.h" +#include "configuration.h" #include "effectmanager.h" #include "emoteshortcut.h" #include "engine.h" @@ -55,7 +55,6 @@ #include "gui/help.h" #include "gui/inventorywindow.h" #include "gui/shortcutwindow.h" -#include "gui/shortcutcontainer.h" #include "gui/itemshortcutcontainer.h" #include "gui/menuwindow.h" #include "gui/minimap.h" @@ -73,7 +72,6 @@ #include "gui/trade.h" #include "gui/viewport.h" -#include "net/protocol.h" #include "net/beinghandler.h" #include "net/buysellhandler.h" #include "net/chathandler.h" @@ -87,14 +85,11 @@ #include "net/protocol.h" #include "net/skillhandler.h" #include "net/tradehandler.h" -#include "net/messageout.h" #include "resources/imagewriter.h" #include "utils/gettext.h" -extern Graphics *graphics; - class Map; std::string map_path; diff --git a/src/game.h b/src/game.h index 4f512d97..c9fc8d79 100644 --- a/src/game.h +++ b/src/game.h @@ -22,7 +22,6 @@ #ifndef GAME_ #define GAME_ -#include #include #include "configlistener.h" diff --git a/src/graphics.h b/src/graphics.h index 8009ceda..172032dc 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -46,14 +46,16 @@ struct SDL_Surface; * Sections 0, 2, 6 and 8 will remain as is. 1, 3, 4, 5 and 7 will be * repeated to fit the size of the widget. */ -struct ImageRect { +struct ImageRect +{ Image *grid[9]; }; /** * A central point of control for graphics. */ -class Graphics : public gcn::SDLGraphics { +class Graphics : public gcn::SDLGraphics +{ public: /** * Constructor. @@ -151,4 +153,6 @@ class Graphics : public gcn::SDLGraphics { bool mFullscreen, mHWAccel; }; +extern Graphics *graphics; + #endif diff --git a/src/gui/char_select.cpp b/src/gui/char_select.cpp index 4433b646..6626b848 100644 --- a/src/gui/char_select.cpp +++ b/src/gui/char_select.cpp @@ -41,6 +41,8 @@ #include "../net/charserverhandler.h" #include "../net/messageout.h" +#include "../resources/colordb.h" + #include "../utils/gettext.h" #include "../utils/strprintf.h" #include "../utils/trim.h" diff --git a/src/gui/debugwindow.cpp b/src/gui/debugwindow.cpp index 055d9963..5a5acfad 100644 --- a/src/gui/debugwindow.cpp +++ b/src/gui/debugwindow.cpp @@ -24,7 +24,6 @@ #include #include "debugwindow.h" -#include "gui.h" #include "viewport.h" #include "widgets/layout.h" diff --git a/src/gui/equipmentwindow.cpp b/src/gui/equipmentwindow.cpp index 5ba9501d..e553fbe7 100644 --- a/src/gui/equipmentwindow.cpp +++ b/src/gui/equipmentwindow.cpp @@ -26,7 +26,6 @@ #include "button.h" #include "equipmentwindow.h" -#include "gui.h" #include "itempopup.h" #include "playerbox.h" #include "viewport.h" diff --git a/src/gui/gui.h b/src/gui/gui.h index 9681d44a..5c0c24f7 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -115,7 +115,6 @@ class Gui : public gcn::Gui }; extern Gui *gui; /**< The GUI system */ -extern Viewport *viewport; /**< The viewport */ extern SDLInput *guiInput; /**< GUI input */ /** diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index a3572d4f..70b3efb5 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -27,7 +27,6 @@ #include #include "button.h" -#include "gui.h" #include "inventorywindow.h" #include "item_amount.h" #include "itemcontainer.h" diff --git a/src/gui/itemshortcutcontainer.cpp b/src/gui/itemshortcutcontainer.cpp index e152b03d..d3cc2c22 100644 --- a/src/gui/itemshortcutcontainer.cpp +++ b/src/gui/itemshortcutcontainer.cpp @@ -20,7 +20,6 @@ */ #include -#include "gui.h" #include "itemshortcutcontainer.h" #include "itempopup.h" #include "viewport.h" diff --git a/src/gui/setup_players.h b/src/gui/setup_players.h index 393fc6aa..2edc6983 100644 --- a/src/gui/setup_players.h +++ b/src/gui/setup_players.h @@ -53,7 +53,7 @@ private: PlayerTableModel *mPlayerTableModel; GuiTable *mPlayerTable; GuiTable *mPlayerTitleTable; - ScrollArea *mPlayerScrollArea; + gcn::ScrollArea *mPlayerScrollArea; gcn::CheckBox *mPersistIgnores; gcn::CheckBox *mDefaultTrading; diff --git a/src/gui/viewport.cpp b/src/gui/viewport.cpp index 11a0004b..25e69c43 100644 --- a/src/gui/viewport.cpp +++ b/src/gui/viewport.cpp @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "gui.h" #include "popupmenu.h" #include "viewport.h" diff --git a/src/gui/viewport.h b/src/gui/viewport.h index e352f765..522ea734 100644 --- a/src/gui/viewport.h +++ b/src/gui/viewport.h @@ -27,13 +27,14 @@ #include "windowcontainer.h" #include "../configlistener.h" +#include "../position.h" -class Map; class FloorItem; +class Graphics; class ImageSet; class Item; +class Map; class PopupMenu; -class Graphics; /** * The viewport on the map. Displays the current map and handles mouse input @@ -137,4 +138,6 @@ class Viewport : public WindowContainer, public gcn::MouseListener, PopupMenu *mPopupMenu; /**< Popup menu. */ }; +extern Viewport *viewport; /**< The viewport */ + #endif diff --git a/src/guichanfwd.h b/src/guichanfwd.h index 2e97db68..4863421c 100644 --- a/src/guichanfwd.h +++ b/src/guichanfwd.h @@ -22,7 +22,8 @@ #ifndef GUICHANFWD_H #define GUICHANFWD_H -namespace gcn { +namespace gcn +{ class ActionListener; class AllegroGraphics; class AllegroImage; diff --git a/src/inventory.cpp b/src/inventory.cpp index 8824e1ba..3ca26e1e 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -20,7 +20,6 @@ */ #include -#include #include "inventory.h" #include "item.h" @@ -28,7 +27,8 @@ struct SlotUsed : public std::unary_function { - bool operator()(const Item *item) const { + bool operator()(const Item *item) const + { return item && item->getId() != -1 && item->getQuantity() > 0; } }; @@ -59,10 +59,9 @@ Item* Inventory::getItem(int index) const Item* Inventory::findItem(int itemId) const { for (int i = 0; i < mSize; i++) - { if (mItems[i] && mItems[i]->getId() == itemId) return mItems[i]; - } + return NULL; } @@ -73,38 +72,41 @@ void Inventory::addItem(int id, int quantity, bool equipment) void Inventory::setItem(int index, int id, int quantity, bool equipment) { - if (index < 0 || index >= mSize) { + if (index < 0 || index >= mSize) + { logger->log("Warning: invalid inventory index: %d", index); return; } - if (!mItems[index] && id > 0) { + if (!mItems[index] && id > 0) + { Item *item = new Item(id, quantity, equipment); item->setInvIndex(index); mItems[index] = item; - } else if (id > 0) { + } + else if (id > 0) + { mItems[index]->setId(id); mItems[index]->setQuantity(quantity); mItems[index]->setEquipment(equipment); - } else if (mItems[index]) { + } + else if (mItems[index]) + { removeItemAt(index); } } void Inventory::clear() { - for (int i = 0; i < mSize; i++) { + for (int i = 0; i < mSize; i++) removeItemAt(i); - } } void Inventory::removeItem(int id) { - for (int i = 0; i < mSize; i++) { - if (mItems[i] && mItems[i]->getId() == id) { + for (int i = 0; i < mSize; i++) + if (mItems[i] && mItems[i]->getId() == id) removeItemAt(i); - } - } } void Inventory::removeItemAt(int index) @@ -115,11 +117,9 @@ void Inventory::removeItemAt(int index) bool Inventory::contains(Item *item) const { - for (int i = 0; i < mSize; i++) { - if (mItems[i] && mItems[i]->getId() == item->getId()) { + for (int i = 0; i < mSize; i++) + if (mItems[i] && mItems[i]->getId() == item->getId()) return true; - } - } return false; } @@ -138,11 +138,9 @@ int Inventory::getNumberOfSlotsUsed() const int Inventory::getLastUsedSlot() const { - for (int i = mSize - 1; i >= 0; i--) { - if (SlotUsed()(mItems[i])) { + for (int i = mSize - 1; i >= 0; i--) + if (SlotUsed()(mItems[i])) return i; - } - } return -1; } diff --git a/src/itemshortcut.cpp b/src/itemshortcut.cpp index 7bfbc88e..3404b0e3 100644 --- a/src/itemshortcut.cpp +++ b/src/itemshortcut.cpp @@ -33,9 +33,8 @@ ItemShortcut::ItemShortcut(): mItemSelected(-1) { for (int i = 0; i < SHORTCUT_ITEMS; i++) - { mItems[i] = -1; - } + load(); } @@ -51,9 +50,7 @@ void ItemShortcut::load() int itemId = (int) config.getValue("shortcut" + toString(i), -1); if (itemId != -1) - { mItems[i] = itemId; - } } } @@ -73,13 +70,15 @@ void ItemShortcut::useItem(int index) Item *item = player_node->getInventory()->findItem(mItems[index]); if (item && item->getQuantity()) { - if (item->isEquipment()) { - if (item->isEquipped()) { + if (item->isEquipment()) + { + if (item->isEquipped()) player_node->unequipItem(item); - } else { + else player_node->equipItem(item); - } - } else { + } + else + { player_node->useItem(item); } } diff --git a/src/joystick.cpp b/src/joystick.cpp index 1233c37f..7e9a2285 100644 --- a/src/joystick.cpp +++ b/src/joystick.cpp @@ -25,8 +25,6 @@ #include "joystick.h" #include "log.h" -#include - int Joystick::joystickCount = 0; void Joystick::init() diff --git a/src/joystick.h b/src/joystick.h index a7090293..4e5c3d23 100644 --- a/src/joystick.h +++ b/src/joystick.h @@ -30,14 +30,16 @@ class Joystick /** * Number of buttons we can handle. */ - enum { + enum + { MAX_BUTTONS = 6 }; /** * Directions, to be used as bitmask values. */ - enum { + enum + { UP = 1, DOWN = 2, LEFT = 4, diff --git a/src/keyboardconfig.cpp b/src/keyboardconfig.cpp index 745a81db..ecf47573 100644 --- a/src/keyboardconfig.cpp +++ b/src/keyboardconfig.cpp @@ -19,12 +19,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include "configuration.h" #include "keyboardconfig.h" #include "log.h" +#include "gui/sdlinput.h" #include "gui/setup_keyboard.h" #include "utils/gettext.h" diff --git a/src/keyboardconfig.h b/src/keyboardconfig.h index ba8039bf..bfcde31c 100644 --- a/src/keyboardconfig.h +++ b/src/keyboardconfig.h @@ -22,13 +22,9 @@ #ifndef KEYBOARDCONFIG_H #define KEYBOARDCONFIG_H +#include #include -#include - -#include "gui/sdlinput.h" -#include "gui/setup_keyboard.h" - /** * Each key represents a key function. Such as 'Move up', 'Attack' etc. */ @@ -40,6 +36,8 @@ struct KeyFunction int value; /** The actual value that is used. */ }; +class Setup_Keyboard; + class KeyboardConfig { public: @@ -148,7 +146,8 @@ class KeyboardConfig * The key assignment view gets arranged according to the order of * these values. */ - enum KeyAction { + enum KeyAction + { KEY_NO_VALUE = -1, KEY_MOVE_UP, KEY_MOVE_DOWN, diff --git a/src/localplayer.cpp b/src/localplayer.cpp index bc0b2b81..01de3b41 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -24,20 +24,24 @@ #include "equipment.h" #include "floor_item.h" #include "game.h" +#include "graphics.h" #include "inventory.h" #include "item.h" #include "localplayer.h" -#include "main.h" +#include "map.h" #include "monster.h" #include "particle.h" +#include "simpleanimation.h" #include "sound.h" -#include "monster.h" +#include "text.h" #include "gui/gui.h" #include "net/messageout.h" #include "net/protocol.h" +#include "resources/animation.h" +#include "resources/image.h" #include "resources/imageset.h" #include "resources/resourcemanager.h" diff --git a/src/localplayer.h b/src/localplayer.h index 7f5596e4..d6d5ad2e 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -22,8 +22,9 @@ #ifndef LOCALPLAYER_H #define LOCALPLAYER_H +#include + #include "player.h" -#include "simpleanimation.h" // TODO move into some sane place... #define MAX_SLOT 2 @@ -36,7 +37,9 @@ class FloorItem; class ImageSet; class Inventory; class Item; +class Map; class Network; +class SimpleAnimation; /** * The local player character. @@ -44,7 +47,8 @@ class Network; class LocalPlayer : public Player { public: - enum Attribute { + enum Attribute + { STR = 0, AGI, VIT, INT, DEX, LUK }; diff --git a/src/log.cpp b/src/log.cpp index e50edeb2..b0024f80 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include -#include #include #include diff --git a/src/log.h b/src/log.h index fcd48757..b06bdc89 100644 --- a/src/log.h +++ b/src/log.h @@ -22,7 +22,6 @@ #ifndef _LOG_H #define _LOG_H -#include #include class ChatWindow; diff --git a/src/main.cpp b/src/main.cpp index 65b61de2..73e0b0fe 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -28,8 +28,6 @@ #include -#include - #include #include @@ -65,7 +63,6 @@ #include "gui/register.h" #include "gui/sdlinput.h" #include "gui/setup.h" -#include "gui/textfield.h" #include "gui/updatewindow.h" #include "net/charserverhandler.h" @@ -82,7 +79,6 @@ #include "resources/npcdb.h" #include "resources/resourcemanager.h" -#include "utils/dtor.h" #include "utils/gettext.h" #include "utils/tostring.h" diff --git a/src/map.cpp b/src/map.cpp index 57b79ef4..716e9aee 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -68,6 +68,11 @@ TileAnimation::TileAnimation(Animation *ani): { } +TileAnimation::~TileAnimation() +{ + delete mLastImage; +} + void TileAnimation::update() { //update animation diff --git a/src/map.h b/src/map.h index bd4cb122..1423565f 100644 --- a/src/map.h +++ b/src/map.h @@ -27,9 +27,9 @@ #include "position.h" #include "properties.h" - #include "simpleanimation.h" +class Animation; class AmbientOverlay; class Graphics; class Image; @@ -72,6 +72,7 @@ class TileAnimation { public: TileAnimation(Animation *ani); + ~TileAnimation(); void update(); void addAffectedTile(MapLayer *layer, int index) { mAffected.push_back(std::make_pair(layer, index)); } diff --git a/src/monster.cpp b/src/monster.cpp index 4f2c97e7..33703817 100644 --- a/src/monster.cpp +++ b/src/monster.cpp @@ -28,8 +28,7 @@ #include "text.h" #include "resources/monsterdb.h" - -#include "utils/tostring.h" +#include "resources/monsterinfo.h" static const int NAME_X_OFFSET = 16; static const int NAME_Y_OFFSET = 16; diff --git a/src/net/beinghandler.cpp b/src/net/beinghandler.cpp index 69bc462c..69f462ec 100644 --- a/src/net/beinghandler.cpp +++ b/src/net/beinghandler.cpp @@ -32,7 +32,6 @@ #include "../game.h" #include "../localplayer.h" #include "../log.h" -#include "../main.h" #include "../npc.h" #include "../particle.h" #include "../player_relations.h" diff --git a/src/net/equipmenthandler.cpp b/src/net/equipmenthandler.cpp index 319d1205..9a3c396a 100644 --- a/src/net/equipmenthandler.cpp +++ b/src/net/equipmenthandler.cpp @@ -23,7 +23,6 @@ #include "messagein.h" #include "protocol.h" -#include "../beingmanager.h" #include "../equipment.h" #include "../inventory.h" #include "../item.h" diff --git a/src/net/loginhandler.h b/src/net/loginhandler.h index c847b4c1..df86b634 100644 --- a/src/net/loginhandler.h +++ b/src/net/loginhandler.h @@ -25,7 +25,6 @@ #include #include "messagehandler.h" -#include struct LoginData; diff --git a/src/net/partyhandler.cpp b/src/net/partyhandler.cpp index d4b7455b..2437d0a0 100644 --- a/src/net/partyhandler.cpp +++ b/src/net/partyhandler.cpp @@ -29,7 +29,6 @@ #include "../gui/confirm_dialog.h" #include "../beingmanager.h" -#include "../game.h" #include "../party.h" PartyHandler::PartyHandler(Party *party) : mParty(party) diff --git a/src/npc.cpp b/src/npc.cpp index cef98e45..7b7db125 100644 --- a/src/npc.cpp +++ b/src/npc.cpp @@ -20,7 +20,6 @@ */ #include "animatedsprite.h" -#include "graphics.h" #include "localplayer.h" #include "npc.h" #include "particle.h" diff --git a/src/openglgraphics.cpp b/src/openglgraphics.cpp index d3278c1a..e7e7b204 100644 --- a/src/openglgraphics.cpp +++ b/src/openglgraphics.cpp @@ -19,14 +19,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include #include -#include -#include - #include "log.h" -#include "main.h" #include "openglgraphics.h" #include "resources/image.h" diff --git a/src/particle.cpp b/src/particle.cpp index 4de9fe29..d89d0a3e 100644 --- a/src/particle.cpp +++ b/src/particle.cpp @@ -22,6 +22,8 @@ #include #include +#include + #include "animationparticle.h" #include "configuration.h" #include "imageparticle.h" diff --git a/src/particle.h b/src/particle.h index 87e4d69d..881bbb74 100644 --- a/src/particle.h +++ b/src/particle.h @@ -25,8 +25,6 @@ #include #include -#include - #include "guichanfwd.h" #include "sprite.h" #include "vector.h" diff --git a/src/particlecontainer.cpp b/src/particlecontainer.cpp index d100ba27..1ed51053 100644 --- a/src/particlecontainer.cpp +++ b/src/particlecontainer.cpp @@ -21,9 +21,9 @@ #include +#include "particle.h" #include "particlecontainer.h" - ParticleContainer::ParticleContainer(ParticleContainer *parent, bool delParent) : mDelParent(delParent), mNext(parent) @@ -103,9 +103,6 @@ void ParticleList::moveTo(float x, float y) } } - - - // -- particle vector ---------------------------------------- ParticleVector::ParticleVector(ParticleContainer *parent, bool delParent) : diff --git a/src/particlecontainer.h b/src/particlecontainer.h index 0181f6e1..4fb00027 100644 --- a/src/particlecontainer.h +++ b/src/particlecontainer.h @@ -25,8 +25,7 @@ #include #include -#include "particle.h" - +class Particle; /** * Set of particle effects. May be stacked with other ParticleContainers. All @@ -65,8 +64,6 @@ protected: ParticleContainer *mNext; /**< Contained container, if any */ }; - - /** * Linked list of particle effects. */ @@ -94,7 +91,6 @@ protected: std::list mElements; /**< Contained particle effects */ }; - /** * Particle container with indexing facilities */ diff --git a/src/particleemitter.cpp b/src/particleemitter.cpp index ca9f7bf5..fa5dcde4 100644 --- a/src/particleemitter.cpp +++ b/src/particleemitter.cpp @@ -19,19 +19,18 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include + #include "animationparticle.h" #include "imageparticle.h" #include "log.h" #include "particle.h" #include "particleemitter.h" -#include "resources/animation.h" #include "resources/image.h" #include "resources/imageset.h" #include "resources/resourcemanager.h" -#include - #define SIN45 0.707106781f #define DEG_RAD_FACTOR 0.017453293f diff --git a/src/particleemitter.h b/src/particleemitter.h index cc77f215..67b35ae2 100644 --- a/src/particleemitter.h +++ b/src/particleemitter.h @@ -26,10 +26,10 @@ #include "utils/xml.h" -#include "resources/animation.h" - #include "particleemitterprop.h" +#include "resources/animation.h" + class Image; class Map; class Particle; diff --git a/src/particleemitterprop.h b/src/particleemitterprop.h index fde78f8f..e68ac222 100644 --- a/src/particleemitterprop.h +++ b/src/particleemitterprop.h @@ -20,7 +20,6 @@ */ #include -#include /** * Returns a random numeric value that is larger than or equal min and smaller diff --git a/src/party.cpp b/src/party.cpp index 67262176..e9304ada 100644 --- a/src/party.cpp +++ b/src/party.cpp @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "beingmanager.h" #include "game.h" #include "localplayer.h" #include "party.h" diff --git a/src/player.cpp b/src/player.cpp index ca8c9f14..610dfeb1 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -19,16 +19,13 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include "animatedsprite.h" #include "game.h" -#include "graphics.h" -#include "log.h" #include "player.h" +#include "text.h" +#include "resources/colordb.h" #include "resources/itemdb.h" -#include "resources/iteminfo.h" #include "utils/strprintf.h" diff --git a/src/player.h b/src/player.h index 5fe9963a..f9911bb8 100644 --- a/src/player.h +++ b/src/player.h @@ -23,8 +23,8 @@ #define PLAYER_H #include "being.h" -#include "text.h" +class FlashText; class Graphics; class Map; diff --git a/src/player_relations.cpp b/src/player_relations.cpp index 057eea94..6386c246 100644 --- a/src/player_relations.cpp +++ b/src/player_relations.cpp @@ -21,12 +21,13 @@ #include +#include "being.h" #include "beingmanager.h" +#include "configuration.h" #include "graphics.h" +#include "player.h" #include "player_relations.h" -#include "gui/gui.h" - #define PLAYER_IGNORE_STRATEGY_NOP "nop" #define PLAYER_IGNORE_STRATEGY_EMOTE0 "emote0" #define DEFAULT_IGNORE_STRATEGY PLAYER_IGNORE_STRATEGY_EMOTE0 diff --git a/src/player_relations.h b/src/player_relations.h index 0f8bb4e3..1eb4ede6 100644 --- a/src/player_relations.h +++ b/src/player_relations.h @@ -27,9 +27,8 @@ #include #include -#include "being.h" -#include "configuration.h" -#include "player.h" +class Being; +class Player; struct PlayerRelation { diff --git a/src/properties.h b/src/properties.h index 91367552..4bad8e59 100644 --- a/src/properties.h +++ b/src/properties.h @@ -35,8 +35,7 @@ class Properties /** * Destructor. */ - virtual - ~Properties() {} + virtual ~Properties() {} /** * Get a map property. diff --git a/src/resources/animation.cpp b/src/resources/animation.cpp index 8d7156a9..54c319de 100644 --- a/src/resources/animation.cpp +++ b/src/resources/animation.cpp @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - #include "animation.h" #include "../utils/dtor.h" diff --git a/src/resources/buddylist.h b/src/resources/buddylist.h index d769b2b8..f0758c25 100644 --- a/src/resources/buddylist.h +++ b/src/resources/buddylist.h @@ -27,7 +27,8 @@ #include -class BuddyList : public gcn::ListModel { +class BuddyList : public gcn::ListModel +{ public: /** * Constructor diff --git a/src/resources/colordb.cpp b/src/resources/colordb.cpp index f80ca6b3..7456f0e4 100644 --- a/src/resources/colordb.cpp +++ b/src/resources/colordb.cpp @@ -19,14 +19,12 @@ * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include #include #include "colordb.h" #include "../log.h" -#include "../utils/dtor.h" #include "../utils/gettext.h" #include "../utils/xml.h" diff --git a/src/resources/dye.cpp b/src/resources/dye.cpp index fd760c3f..63d85501 100644 --- a/src/resources/dye.cpp +++ b/src/resources/dye.cpp @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include #include #include "dye.h" diff --git a/src/resources/emotedb.cpp b/src/resources/emotedb.cpp index 2f43822d..adc1635c 100644 --- a/src/resources/emotedb.cpp +++ b/src/resources/emotedb.cpp @@ -20,11 +20,9 @@ */ #include "emotedb.h" -#include "resourcemanager.h" #include "../log.h" -#include "../utils/dtor.h" #include "../utils/gettext.h" #include "../utils/xml.h" diff --git a/src/resources/image.h b/src/resources/image.h index 5b376053..9af10fda 100644 --- a/src/resources/image.h +++ b/src/resources/image.h @@ -40,6 +40,8 @@ #include "resource.h" class Dye; +class SDL_Rect; +class SDL_Surface; /** * Defines a class for loading and storing images. diff --git a/src/resources/imageloader.cpp b/src/resources/imageloader.cpp index 8ad6c5d4..c182b44c 100644 --- a/src/resources/imageloader.cpp +++ b/src/resources/imageloader.cpp @@ -20,7 +20,6 @@ */ #include -#include #include #include diff --git a/src/resources/imagewriter.h b/src/resources/imagewriter.h index a9133846..039d3afb 100644 --- a/src/resources/imagewriter.h +++ b/src/resources/imagewriter.h @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include - struct SDL_Surface; class ImageWriter diff --git a/src/resources/itemdb.cpp b/src/resources/itemdb.cpp index 752ea38b..9976f0d4 100644 --- a/src/resources/itemdb.cpp +++ b/src/resources/itemdb.cpp @@ -24,8 +24,6 @@ #include #include "itemdb.h" -#include "iteminfo.h" -#include "resourcemanager.h" #include "../log.h" diff --git a/src/resources/itemdb.h b/src/resources/itemdb.h index e7c23ca2..08a7acd0 100644 --- a/src/resources/itemdb.h +++ b/src/resources/itemdb.h @@ -26,6 +26,8 @@ #include "iteminfo.h" +class ItemInfo; + /** * The namespace that holds the item information. */ diff --git a/src/resources/mapreader.cpp b/src/resources/mapreader.cpp index a4ec3b69..2278dc67 100644 --- a/src/resources/mapreader.cpp +++ b/src/resources/mapreader.cpp @@ -23,6 +23,7 @@ #include #include +#include "animation.h" #include "image.h" #include "mapreader.h" #include "resourcemanager.h" diff --git a/src/resources/mapreader.h b/src/resources/mapreader.h index ef945c3f..0ed553c3 100644 --- a/src/resources/mapreader.h +++ b/src/resources/mapreader.h @@ -22,8 +22,6 @@ #ifndef MAPREADER_H #define MAPREADER_H -#include - #include class Map; diff --git a/src/resources/monsterdb.cpp b/src/resources/monsterdb.cpp index c7926260..c7824a5d 100644 --- a/src/resources/monsterdb.cpp +++ b/src/resources/monsterdb.cpp @@ -20,7 +20,7 @@ */ #include "monsterdb.h" -#include "resourcemanager.h" +#include "monsterinfo.h" #include "../log.h" diff --git a/src/resources/monsterdb.h b/src/resources/monsterdb.h index 6fbde55f..0a218661 100644 --- a/src/resources/monsterdb.h +++ b/src/resources/monsterdb.h @@ -24,7 +24,7 @@ #include -#include "monsterinfo.h" +class MonsterInfo; /** * Monster information database. diff --git a/src/resources/npcdb.cpp b/src/resources/npcdb.cpp index 88572481..73c3939d 100644 --- a/src/resources/npcdb.cpp +++ b/src/resources/npcdb.cpp @@ -20,11 +20,9 @@ */ #include "npcdb.h" -#include "resourcemanager.h" #include "../log.h" -#include "../utils/dtor.h" #include "../utils/gettext.h" #include "../utils/xml.h" diff --git a/src/resources/resource.h b/src/resources/resource.h index 303b82c8..7c5f989e 100644 --- a/src/resources/resource.h +++ b/src/resources/resource.h @@ -62,8 +62,7 @@ class Resource /** * Destructor. */ - virtual - ~Resource(); + virtual ~Resource(); private: std::string mIdPath; /**< Path identifying this resource. */ diff --git a/src/resources/soundeffect.h b/src/resources/soundeffect.h index 05ec9e54..116df930 100644 --- a/src/resources/soundeffect.h +++ b/src/resources/soundeffect.h @@ -35,8 +35,7 @@ class SoundEffect : public Resource /** * Destructor. */ - virtual - ~SoundEffect(); + virtual ~SoundEffect(); /** * Loads a sample from a buffer in memory. diff --git a/src/simpleanimation.cpp b/src/simpleanimation.cpp index 17d9ce60..9066ed7f 100644 --- a/src/simpleanimation.cpp +++ b/src/simpleanimation.cpp @@ -19,14 +19,22 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "graphics.h" #include "log.h" #include "simpleanimation.h" +#include "resources/animation.h" #include "resources/image.h" #include "resources/imageset.h" #include "resources/resourcemanager.h" +SimpleAnimation::SimpleAnimation(Animation *animation): + mAnimation(animation), + mAnimationTime(0), + mAnimationPhase(0), + mCurrentFrame(mAnimation->getFrame(0)) +{ +}; + SimpleAnimation::SimpleAnimation(xmlNodePtr animationNode): mAnimationTime(0), mAnimationPhase(0) diff --git a/src/simpleanimation.h b/src/simpleanimation.h index a7178145..16ac2906 100644 --- a/src/simpleanimation.h +++ b/src/simpleanimation.h @@ -22,12 +22,12 @@ #ifndef SIMPLEANIMAION_H #define SIMPLEANIMAION_H -#include "resources/animation.h" - #include "utils/xml.h" +class Animation; class Frame; class Graphics; +class Image; /** * This class is a leightweight alternative to the AnimatedSprite class. @@ -39,12 +39,7 @@ class SimpleAnimation /** * Creates a simple animation with an already created animation. */ - SimpleAnimation(Animation *animation): - mAnimation(animation), - mAnimationTime(0), - mAnimationPhase(0), - mCurrentFrame(mAnimation->getFrame(0)) - {}; + SimpleAnimation(Animation *animation); /** * Creates a simple animation that creates its animation from XML Data. diff --git a/src/text.cpp b/src/text.cpp index 14ee3919..8f93f157 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -18,8 +18,6 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include - #include #include "text.h" @@ -72,7 +70,7 @@ Text::~Text() } } -void Text::draw(Graphics *graphics, int xOff, int yOff) +void Text::draw(gcn::Graphics *graphics, int xOff, int yOff) { graphics->setFont(boldFont); @@ -102,7 +100,7 @@ FlashText::FlashText(const std::string &text, int x, int y, { } -void FlashText::draw(Graphics *graphics, int xOff, int yOff) +void FlashText::draw(gcn::Graphics *graphics, int xOff, int yOff) { if (mTime) { diff --git a/src/text.h b/src/text.h index 43d6b5ea..c898bbe3 100644 --- a/src/text.h +++ b/src/text.h @@ -21,10 +21,10 @@ #ifndef TEXT_H #define TEXT_H -#include "graphics.h" -#include "guichanfwd.h" +#include +#include -#include +#include "guichanfwd.h" class TextManager; @@ -52,7 +52,7 @@ class Text /** * Draws the text. */ - virtual void draw(Graphics *graphics, int xOff, int yOff); + virtual void draw(gcn::Graphics *graphics, int xOff, int yOff); private: int mX; /**< Actual x-value of left of text written. */ @@ -84,7 +84,7 @@ class FlashText : public Text /** * Draws the text */ - virtual void draw(Graphics *graphics, int xOff, int yOff); + virtual void draw(gcn::Graphics *graphics, int xOff, int yOff); private: int mTime; /**< Time left for flashing */ diff --git a/src/textmanager.cpp b/src/textmanager.cpp index 7c5d2713..d40ba4d2 100644 --- a/src/textmanager.cpp +++ b/src/textmanager.cpp @@ -59,7 +59,7 @@ TextManager::~TextManager() { } -void TextManager::draw(Graphics *graphics, int xOff, int yOff) +void TextManager::draw(gcn::Graphics *graphics, int xOff, int yOff) { for (TextList::iterator bPtr = mTextList.begin(), ePtr = mTextList.end(); bPtr != ePtr; ++bPtr) @@ -89,21 +89,13 @@ void TextManager::place(const Text *textObj, const Text *omit, int from = (*ptr)->mY - occupiedTop; int to = from + (*ptr)->mHeight - 1; if (to < 0 || from >= TEST) // out of range considered - { continue; - } if (from < 0) - { from = 0; - } if (to >= TEST) - { to = TEST - 1; - } for (int i = from; i <= to; ++i) - { occupied[i] = true; - } } } bool ok = true; @@ -111,10 +103,10 @@ void TextManager::place(const Text *textObj, const Text *omit, { ok = ok && !occupied[i]; } + if (ok) - { return; - } + // Have to move it up or down, so find nearest spaces either side int consec = 0; int upSlot = -1; // means not found diff --git a/src/textmanager.h b/src/textmanager.h index a08660d5..b1e10f08 100644 --- a/src/textmanager.h +++ b/src/textmanager.h @@ -23,8 +23,9 @@ #include +#include "guichanfwd.h" + class Text; -class Graphics; class TextManager { @@ -57,7 +58,7 @@ class TextManager /** * Draw the text */ - void draw(Graphics *graphics, int xOff, int yOff); + void draw(gcn::Graphics *graphics, int xOff, int yOff); private: /** diff --git a/src/textparticle.cpp b/src/textparticle.cpp index 7e329b4e..f38c32ce 100644 --- a/src/textparticle.cpp +++ b/src/textparticle.cpp @@ -19,6 +19,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include + #include "graphics.h" #include "textparticle.h" diff --git a/src/textparticle.h b/src/textparticle.h index bc7cd88c..cdf99d8f 100644 --- a/src/textparticle.h +++ b/src/textparticle.h @@ -22,8 +22,6 @@ #ifndef _TEXTPARTICLE_H #define _TEXTPARTICLE_H -#include - #include "guichanfwd.h" #include "particle.h" diff --git a/src/utils/tostring.h b/src/utils/tostring.h index eb86f99e..62eb44e4 100644 --- a/src/utils/tostring.h +++ b/src/utils/tostring.h @@ -34,7 +34,7 @@ std::string toString(const T &arg) // TODO: Is there a good way to suppress warnings from classes which don't use // this function? -static char *iptostring(int address) +inline char *iptostring(int address) { static char asciiIP[16]; -- cgit v1.2.3-60-g2f50 From 40edf4e91558cffd83d9015a2cf4a16360e27855 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Sun, 8 Feb 2009 19:59:28 -0700 Subject: Mostly fixed a few field values to behave better in Windows, as well as removed the need for sending graphics to the setSpeech function (since it isn't needed) and started actually using the time variable which it's passed (could be set to show the speech longer if the dialog is longer, for example). Signed-off-by: Ira Rice --- src/being.cpp | 4 ++-- src/being.h | 7 +++++-- src/game.h | 3 --- src/gui/setup_audio.cpp | 4 ++-- src/gui/setup_joystick.cpp | 2 +- src/gui/setup_keyboard.cpp | 7 +++---- src/gui/setup_video.cpp | 52 +++++++++++++++++++++++----------------------- src/gui/viewport.cpp | 2 +- src/party.cpp | 2 +- src/player_relations.cpp | 2 +- 10 files changed, 42 insertions(+), 43 deletions(-) diff --git a/src/being.cpp b/src/being.cpp index 2b4ba767..9b8ede27 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -215,7 +215,7 @@ void Being::setSpeech(const std::string &text, Uint32 time) } if (mSpeech != "") - mSpeechTime = 500; + mSpeechTime = time <= SPEECH_MAX_TIME ? time : SPEECH_MAX_TIME; } void Being::takeDamage(int amount) @@ -501,7 +501,7 @@ void Being::drawEmotion(Graphics *graphics, int offsetX, int offsetY) emotionSet[emotionIndex]->draw(graphics, px, py); } -void Being::drawSpeech(Graphics *graphics, int offsetX, int offsetY) +void Being::drawSpeech(int offsetX, int offsetY) { int px = mPx + offsetX; int py = mPy + offsetY; diff --git a/src/being.h b/src/being.h index 109a44ad..d722092e 100644 --- a/src/being.h +++ b/src/being.h @@ -39,6 +39,9 @@ #define FIRST_IGNORE_EMOTE 14 #define STATUS_EFFECTS 32 +#define SPEECH_TIME 500 +#define SPEECH_MAX_TIME 1000 + class AnimatedSprite; class Image; class ItemInfo; @@ -152,7 +155,7 @@ class Being : public Sprite * @param text The text that should appear. * @param time The amount of time the text should stay in milliseconds. */ - void setSpeech(const std::string &text, Uint32 time); + void setSpeech(const std::string &text, Uint32 time = 500); /** * Puts a damage bubble above this being. @@ -244,7 +247,7 @@ class Being : public Sprite /** * Draws the speech text above the being. */ - void drawSpeech(Graphics *graphics, int offsetX, int offsetY); + void drawSpeech(int offsetX, int offsetY); /** * Draws the emotion picture above the being. diff --git a/src/game.h b/src/game.h index c9fc8d79..e885ea16 100644 --- a/src/game.h +++ b/src/game.h @@ -26,9 +26,6 @@ #include "configlistener.h" -#define SPEECH_TIME 80 -#define SPEECH_MAX_TIME 100 - class MessageHandler; class Network; diff --git a/src/gui/setup_audio.cpp b/src/gui/setup_audio.cpp index 7090136e..5c189882 100644 --- a/src/gui/setup_audio.cpp +++ b/src/gui/setup_audio.cpp @@ -109,8 +109,8 @@ void Setup_Audio::cancel() sound.setMusicVolume(mMusicVolume); mMusicSlider->setValue(mMusicVolume); - config.setValue("sound", mSoundEnabled ? 1 : 0); - config.setValue("sfxVolume", mSfxVolume ? 1 : 0); + config.setValue("sound", mSoundEnabled ? true : false); + config.setValue("sfxVolume", mSfxVolume); config.setValue("musicVolume", mMusicVolume); } diff --git a/src/gui/setup_joystick.cpp b/src/gui/setup_joystick.cpp index 2c726b87..2ebcdbde 100644 --- a/src/gui/setup_joystick.cpp +++ b/src/gui/setup_joystick.cpp @@ -41,7 +41,7 @@ Setup_Joystick::Setup_Joystick(): { setOpaque(false); - mOriginalJoystickEnabled = (int)config.getValue("joystickEnabled", 0) != 0; + mOriginalJoystickEnabled = !config.getValue("joystickEnabled", false); mJoystickEnabled->setSelected(mOriginalJoystickEnabled); mJoystickEnabled->addActionListener(this); diff --git a/src/gui/setup_keyboard.cpp b/src/gui/setup_keyboard.cpp index 6a4363fe..06a5a520 100644 --- a/src/gui/setup_keyboard.cpp +++ b/src/gui/setup_keyboard.cpp @@ -32,7 +32,6 @@ #include "widgets/layouthelper.h" -#include "../configuration.h" #include "../keyboardconfig.h" #include "../utils/gettext.h" @@ -138,9 +137,8 @@ void Setup_Keyboard::action(const gcn::ActionEvent &event) { if (event.getSource() == mKeyList) { - if (!mKeySetting) { + if (!mKeySetting) mAssignKeyButton->setEnabled(true); - } } else if (event.getId() == "assign") { @@ -184,7 +182,8 @@ void Setup_Keyboard::refreshKeys() void Setup_Keyboard::keyUnresolved() { - if (mKeySetting) { + if (mKeySetting) + { newKeyCallback(keyboard.getNewKeyIndex()); keyboard.setNewKeyIndex(keyboard.KEY_NO_VALUE); } diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index faf72c68..1775665f 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -104,12 +104,12 @@ ModeListModel::ModeListModel() } Setup_Video::Setup_Video(): - mFullScreenEnabled(config.getValue("screen", 0)), - mOpenGLEnabled(config.getValue("opengl", 0)), - mCustomCursorEnabled(config.getValue("customcursor", 1)), - mParticleEffectsEnabled(config.getValue("particleeffects", 1)), - mSpeechBubbleEnabled(config.getValue("speechbubble", 1)), - mNameEnabled(config.getValue("showownname", 0)), + mFullScreenEnabled(config.getValue("screen", false)), + mOpenGLEnabled(config.getValue("opengl", false)), + mCustomCursorEnabled(config.getValue("customcursor", true)), + mParticleEffectsEnabled(config.getValue("particleeffects", true)), + mSpeechBubbleEnabled(config.getValue("speechbubble", true)), + mNameEnabled(config.getValue("showownname", false)), mOpacity(config.getValue("guialpha", 0.8)), mFps((int) config.getValue("fpslimit", 0)), mModeListModel(new ModeListModel), @@ -280,7 +280,7 @@ void Setup_Video::apply() { // Full screen changes bool fullscreen = mFsCheckBox->isSelected(); - if (fullscreen != (config.getValue("screen", 0) == 1)) + if (fullscreen != (config.getValue("screen", false) == 1)) { /* The OpenGL test is only necessary on Windows, since switching * to/from full screen works fine on Linux. On Windows we'd have to @@ -291,7 +291,7 @@ void Setup_Video::apply() #ifdef WIN32 // checks for opengl usage - if (!(config.getValue("opengl", 0) == 1)) + if (!(config.getValue("opengl", false) == 1)) { #endif if (!graphics->setFullscreen(fullscreen)) @@ -313,13 +313,13 @@ void Setup_Video::apply() _("Restart needed for changes to take effect.")); } #endif - config.setValue("screen", fullscreen ? 1 : 0); + config.setValue("screen", fullscreen ? true : false); } // OpenGL change if (mOpenGLCheckBox->isSelected() != mOpenGLEnabled) { - config.setValue("opengl", mOpenGLCheckBox->isSelected() ? 1 : 0); + config.setValue("opengl", mOpenGLCheckBox->isSelected() ? true : false); // OpenGL can currently only be changed by restarting, notify user. new OkDialog(_("Changing OpenGL"), @@ -330,14 +330,14 @@ void Setup_Video::apply() config.setValue("fpslimit", mFps); // We sync old and new values at apply time - mFullScreenEnabled = config.getValue("screen", 0); - mCustomCursorEnabled = config.getValue("customcursor", 1); - mParticleEffectsEnabled = config.getValue("particleeffects", 1); - mSpeechBubbleEnabled = config.getValue("speechbubble", 1); - mNameEnabled = config.getValue("showownname", 0); + mFullScreenEnabled = config.getValue("screen", false); + mCustomCursorEnabled = config.getValue("customcursor", true); + mParticleEffectsEnabled = config.getValue("particleeffects", true); + mSpeechBubbleEnabled = config.getValue("speechbubble", true); + mNameEnabled = config.getValue("showownname", false); mOpacity = config.getValue("guialpha", 0.8); mOverlayDetail = (int) config.getValue("OverlayDetail", 2); - mOpenGLEnabled = config.getValue("opengl", 0); + mOpenGLEnabled = config.getValue("opengl", false); } int Setup_Video::updateSlider(gcn::Slider *slider, gcn::TextField *field, @@ -377,13 +377,13 @@ void Setup_Video::cancel() updateSlider(mScrollRadiusSlider, mScrollRadiusField, "ScrollRadius"); updateSlider(mScrollLazinessSlider, mScrollLazinessField, "ScrollLaziness"); - config.setValue("screen", mFullScreenEnabled ? 1 : 0); - config.setValue("customcursor", mCustomCursorEnabled ? 1 : 0); - config.setValue("particleeffects", mParticleEffectsEnabled ? 1 : 0); - config.setValue("speechbubble", mSpeechBubbleEnabled ? 1 : 0); - config.setValue("showownname", mNameEnabled ? 1 : 0); + config.setValue("screen", mFullScreenEnabled ? true : false); + config.setValue("customcursor", mCustomCursorEnabled ? true : false); + config.setValue("particleeffects", mParticleEffectsEnabled ? true : false); + config.setValue("speechbubble", mSpeechBubbleEnabled ? true : false); + config.setValue("showownname", mNameEnabled ? true : false); config.setValue("guialpha", mOpacity); - config.setValue("opengl", mOpenGLEnabled ? 1 : 0); + config.setValue("opengl", mOpenGLEnabled ? true : false); } void Setup_Video::action(const gcn::ActionEvent &event) @@ -408,19 +408,19 @@ void Setup_Video::action(const gcn::ActionEvent &event) else if (event.getId() == "customcursor") { config.setValue("customcursor", - mCustomCursorCheckBox->isSelected() ? 1 : 0); + mCustomCursorCheckBox->isSelected() ? true : false); } else if (event.getId() == "particleeffects") { config.setValue("particleeffects", - mParticleEffectsCheckBox->isSelected() ? 1 : 0); + mParticleEffectsCheckBox->isSelected() ? true : false); new OkDialog(_("Particle effect settings changed"), _("Restart your client or change maps for the change to take effect.")); } else if (event.getId() == "speechbubble") { config.setValue("speechbubble", - mSpeechBubbleCheckBox->isSelected() ? 1 : 0); + mSpeechBubbleCheckBox->isSelected() ? true : false); } else if (event.getId() == "showownname") { @@ -429,7 +429,7 @@ void Setup_Video::action(const gcn::ActionEvent &event) if (player_node) player_node->mUpdateName = true; config.setValue("showownname", - mNameCheckBox->isSelected() ? 1 : 0); + mNameCheckBox->isSelected() ? true : false); } else if (event.getId() == "fpslimitslider") { diff --git a/src/gui/viewport.cpp b/src/gui/viewport.cpp index 25e69c43..19e9a4fb 100644 --- a/src/gui/viewport.cpp +++ b/src/gui/viewport.cpp @@ -207,7 +207,7 @@ void Viewport::draw(gcn::Graphics *gcnGraphics) Beings &beings = beingManager->getAll(); for (BeingIterator i = beings.begin(); i != beings.end(); i++) { - (*i)->drawSpeech(graphics, -(int) mPixelViewX, -(int) mPixelViewY); + (*i)->drawSpeech(-(int) mPixelViewX, -(int) mPixelViewY); (*i)->drawEmotion(graphics, -(int) mPixelViewX, -(int) mPixelViewY); } diff --git a/src/party.cpp b/src/party.cpp index e9304ada..70e0d3c2 100644 --- a/src/party.cpp +++ b/src/party.cpp @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "game.h" +#include "being.h" #include "localplayer.h" #include "party.h" diff --git a/src/player_relations.cpp b/src/player_relations.cpp index 6386c246..aa83115c 100644 --- a/src/player_relations.cpp +++ b/src/player_relations.cpp @@ -305,7 +305,7 @@ public: virtual void ignore(Player *player, unsigned int flags) { - player->setSpeech("...", 5); + player->setSpeech("...", 500); } }; -- cgit v1.2.3-60-g2f50