From 159285c5aa24611ceee7e3847a87bf9ea5f7fb7a Mon Sep 17 00:00:00 2001 From: Lloyd Bryant Date: Fri, 18 Jul 2008 00:48:14 +0000 Subject: Import of client tree --- src/gui/setup_players.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gui/setup_players.cpp') diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index 24b559da..809364ea 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -18,7 +18,7 @@ * along with The Mana World; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * $Id$ + * $Id: setup_players.cpp 4353 2008-06-16 07:04:46Z b_lindeijer $ */ #include "setup_players.h" -- cgit v1.2.3-70-g09d2 From f07fdcc9668cc446d31ce2539e3934c40d103ae3 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Wed, 15 Oct 2008 17:57:54 +0000 Subject: Added patch so that players can turn on or off speech bubbles. --- src/being.cpp | 26 ++++++++++++++++++++++++- src/being.h | 2 ++ src/gui/setup.cpp | 2 +- src/gui/setup_players.cpp | 2 +- src/gui/setup_video.cpp | 48 ++++++++++++++++++++++++++++++----------------- src/gui/setup_video.h | 2 ++ 6 files changed, 62 insertions(+), 20 deletions(-) (limited to 'src/gui/setup_players.cpp') diff --git a/src/being.cpp b/src/being.cpp index 97ccd42e..4958700f 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -35,6 +35,7 @@ #include "sound.h" #include "localplayer.h" #include "configuration.h" +#include "text.h" #include "resources/resourcemanager.h" #include "resources/imageset.h" @@ -53,6 +54,9 @@ int Being::instances = 0; ImageSet *Being::emotionSet = NULL; +static const int X_SPEECH_OFFSET = 18; +static const int Y_SPEECH_OFFSET = 60; + Being::Being(int id, int job, Map *map): mJob(job), mX(0), mY(0), @@ -90,6 +94,7 @@ Being::Being(int id, int job, Map *map): instances++; mSpeech = ""; mIsGM = false; + mText = 0; } Being::~Being() @@ -115,6 +120,7 @@ Being::~Being() } delete mSpeechBubble; + delete mText; } void Being::setDestination(Uint16 destX, Uint16 destY) @@ -157,6 +163,17 @@ void Being::setSprite(int slot, int id, std::string color) void Being::setSpeech(const std::string &text, Uint32 time) { mSpeech = text; + + if (!config.getValue("speechbubble", 1)) + { + // don't introduce a memory leak + delete mText; + + mText = new Text(text, mPx + X_SPEECH_OFFSET, mPy - Y_SPEECH_OFFSET, + gcn::Graphics::CENTER, speechFont, + gcn::Color(255, 255, 255)); + } + mSpeechTime = 500; } @@ -361,6 +378,13 @@ void Being::logic() if (mSpeechTime > 0) mSpeechTime--; + // Remove text if speech boxes aren't being used + if (mSpeechTime == 0 && mText) + { + delete mText; + mText = 0; + } + int oldPx = mPx; int oldPy = mPy; // Update pixel coordinates @@ -442,7 +466,7 @@ void Being::drawSpeech(Graphics *graphics, int offsetX, int offsetY) int py = mPy + offsetY; // Draw speech above this being - if (mSpeechTime > 0) + if (mSpeechTime > 0 && config.getValue("speechbubble", 1)) { mSpeechBubble->setCaption(mName); mSpeechBubble->setWindowName(mName); diff --git a/src/being.h b/src/being.h index f5f1a1a7..cceebc3c 100644 --- a/src/being.h +++ b/src/being.h @@ -51,6 +51,7 @@ class Graphics; class ImageSet; class Particle; class SpeechBubble; +class Text; /** * A position along a being's path. @@ -398,6 +399,7 @@ class Being : public Sprite Path mPath; std::string mSpeech; + Text *mText; Uint16 mHairStyle, mHairColor; Uint8 mGender; Uint32 mSpeechTime; diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp index 8ec3bfd8..4faa8a86 100644 --- a/src/gui/setup.cpp +++ b/src/gui/setup.cpp @@ -50,7 +50,7 @@ Setup::Setup(): { setCloseButton(true); int width = 310; - int height = 290; + int height = 310; setContentSize(width, height); const char *buttonNames[] = { diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index 809364ea..ed1facc7 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -48,7 +48,7 @@ #define WIDGET_AT(row, column) (((row) * COLUMNS_NR) + column) -static std::string table_titles[COLUMNS_NR] = {"name", "relation"}; +static std::string table_titles[COLUMNS_NR] = {" name", "relation "}; static const std::string RELATION_NAMES[PlayerRelation::RELATIONS_NR] = { "neutral", "friend", "disregarded", "ignored" diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index 612de09f..6a246501 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -107,6 +107,7 @@ Setup_Video::Setup_Video(): mOpenGLEnabled(config.getValue("opengl", 0)), mCustomCursorEnabled(config.getValue("customcursor", 1)), mParticleEffectsEnabled(config.getValue("particleeffects", 1)), + mSpeechBubbleEnabled(config.getValue("speechbubble", 1)), mOpacity(config.getValue("guialpha", 0.8)), mFps((int)config.getValue("fpslimit", 60)), mModeListModel(new ModeListModel()), @@ -115,6 +116,7 @@ Setup_Video::Setup_Video(): mOpenGLCheckBox(new CheckBox("OpenGL", mOpenGLEnabled)), mCustomCursorCheckBox(new CheckBox("Custom cursor", mCustomCursorEnabled)), mParticleEffectsCheckBox(new CheckBox("Particle effects", mParticleEffectsEnabled)), + mSpeechBubbleCheckBox(new CheckBox("Speech bubbles", mSpeechBubbleEnabled)), mAlphaSlider(new Slider(0.2, 1.0)), mFpsCheckBox(new CheckBox("FPS Limit: ")), mFpsSlider(new Slider(10, 200)), @@ -142,17 +144,18 @@ Setup_Video::Setup_Video(): mOpenGLCheckBox->setEnabled(false); #endif - mModeList->setDimension(gcn::Rectangle(0, 0, 60, 50)); - scrollArea->setDimension(gcn::Rectangle(10, 10, 90, 50)); + mModeList->setDimension(gcn::Rectangle(0, 0, 60, 70)); + scrollArea->setDimension(gcn::Rectangle(10, 10, 90, 70)); mFsCheckBox->setPosition(110, 10); mOpenGLCheckBox->setPosition(110, 30); mParticleEffectsCheckBox->setPosition(175, 30); mCustomCursorCheckBox->setPosition(110, 50); - mAlphaSlider->setDimension(gcn::Rectangle(10, 80, 100, 10)); + mSpeechBubbleCheckBox->setPosition(110, 70); + mAlphaSlider->setDimension(gcn::Rectangle(10, 100, 100, 10)); alphaLabel->setPosition(20 + mAlphaSlider->getWidth(), mAlphaSlider->getY()); - mFpsCheckBox->setPosition(90, 100); - mFpsSlider->setDimension(gcn::Rectangle(10, 100, 75, 10)); + mFpsCheckBox->setPosition(90, 120); + mFpsSlider->setDimension(gcn::Rectangle(10, 120, 75, 10)); mFpsField->setPosition(100 + mFpsCheckBox->getWidth(), 100); mFpsField->setWidth(30); @@ -167,6 +170,7 @@ Setup_Video::Setup_Video(): mCustomCursorCheckBox->setActionEventId("customcursor"); mParticleEffectsCheckBox->setActionEventId("particleeffects"); + mSpeechBubbleCheckBox->setActionEventId("speechbubble"); mAlphaSlider->setActionEventId("guialpha"); mFpsCheckBox->setActionEventId("fpslimitcheckbox"); mFpsSlider->setActionEventId("fpslimitslider"); @@ -181,6 +185,7 @@ Setup_Video::Setup_Video(): mCustomCursorCheckBox->addActionListener(this); mParticleEffectsCheckBox->addActionListener(this); + mSpeechBubbleCheckBox->addActionListener(this); mAlphaSlider->addActionListener(this); mFpsCheckBox->addActionListener(this); mFpsSlider->addActionListener(this); @@ -194,26 +199,26 @@ Setup_Video::Setup_Video(): mParticleDetailSlider->addActionListener(this); mParticleDetailField->addKeyListener(this); - mScrollRadiusSlider->setDimension(gcn::Rectangle(10, 120, 75, 10)); + mScrollRadiusSlider->setDimension(gcn::Rectangle(10, 140, 75, 10)); gcn::Label *scrollRadiusLabel = new gcn::Label("Scroll radius"); - scrollRadiusLabel->setPosition(90, 120); - mScrollRadiusField->setPosition(mFpsField->getX(), 120); + scrollRadiusLabel->setPosition(90, 140); + mScrollRadiusField->setPosition(mFpsField->getX(), 140); mScrollRadiusField->setWidth(30); mScrollRadiusField->setText(toString(mOriginalScrollRadius)); mScrollRadiusSlider->setValue(mOriginalScrollRadius); - mScrollLazinessSlider->setDimension(gcn::Rectangle(10, 140, 75, 10)); + mScrollLazinessSlider->setDimension(gcn::Rectangle(10, 160, 75, 10)); gcn::Label *scrollLazinessLabel = new gcn::Label("Scroll laziness"); - scrollLazinessLabel->setPosition(90, 140); - mScrollLazinessField->setPosition(mFpsField->getX(), 140); + scrollLazinessLabel->setPosition(90, 160); + mScrollLazinessField->setPosition(mFpsField->getX(), 160); mScrollLazinessField->setWidth(30); mScrollLazinessField->setText(toString(mOriginalScrollLaziness)); mScrollLazinessSlider->setValue(mOriginalScrollLaziness); - mOverlayDetailSlider->setDimension(gcn::Rectangle(10, 160, 75, 10)); + mOverlayDetailSlider->setDimension(gcn::Rectangle(10, 180, 75, 10)); gcn::Label *overlayDetailLabel = new gcn::Label("Ambient FX"); - overlayDetailLabel->setPosition(90, 160); - mOverlayDetailField->setPosition(180, 160); + overlayDetailLabel->setPosition(90, 180); + mOverlayDetailField->setPosition(180, 180); mOverlayDetailField->setWidth(30); switch (mOverlayDetail) { @@ -229,10 +234,10 @@ Setup_Video::Setup_Video(): } mOverlayDetailSlider->setValue(mOverlayDetail); - mParticleDetailSlider->setDimension(gcn::Rectangle(10, 180, 75, 10)); + mParticleDetailSlider->setDimension(gcn::Rectangle(10, 200, 75, 10)); gcn::Label *particleDetailLabel = new gcn::Label("Particle Detail"); - particleDetailLabel->setPosition(90, 180); - mParticleDetailField->setPosition(180, 180); + particleDetailLabel->setPosition(90, 200); + mParticleDetailField->setPosition(180, 200); mParticleDetailField->setWidth(60); switch (mParticleDetail) { @@ -256,6 +261,7 @@ Setup_Video::Setup_Video(): add(mOpenGLCheckBox); add(mCustomCursorCheckBox); add(mParticleEffectsCheckBox); + add(mSpeechBubbleCheckBox); add(mAlphaSlider); add(alphaLabel); add(mFpsCheckBox); @@ -335,6 +341,8 @@ void Setup_Video::apply() // 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); mOpacity = config.getValue("guialpha", 0.8); mOverlayDetail = (int)config.getValue("OverlayDetail", 2); mOpenGLEnabled = config.getValue("opengl", 0); @@ -378,6 +386,7 @@ void Setup_Video::cancel() 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("guialpha", mOpacity); config.setValue("opengl", mOpenGLEnabled ? 1 : 0); } @@ -400,6 +409,11 @@ void Setup_Video::action(const gcn::ActionEvent &event) 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); + } else if (event.getId() == "fpslimitslider") { mFps = (int) mFpsSlider->getValue(); diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h index 7eb872d4..d0a19cb6 100644 --- a/src/gui/setup_video.h +++ b/src/gui/setup_video.h @@ -52,6 +52,7 @@ class Setup_Video : public SetupTab, public gcn::ActionListener, bool mOpenGLEnabled; bool mCustomCursorEnabled; bool mParticleEffectsEnabled; + bool mSpeechBubbleEnabled; double mOpacity; int mFps; @@ -62,6 +63,7 @@ class Setup_Video : public SetupTab, public gcn::ActionListener, gcn::CheckBox *mOpenGLCheckBox; gcn::CheckBox *mCustomCursorCheckBox; gcn::CheckBox *mParticleEffectsCheckBox; + gcn::CheckBox *mSpeechBubbleCheckBox; gcn::Slider *mAlphaSlider; gcn::CheckBox *mFpsCheckBox; -- cgit v1.2.3-70-g09d2 From 40f2ec0582932bb21952cb58c5e51ca508206cae Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Tue, 18 Nov 2008 06:45:46 +0000 Subject: Pedantic fixes to the client, where I alphabetized all of the include statements, as well as removing the new skill dialog, which we do not, nor will we use (if we do, it'd be a new one that we'd make). WARNING!!! This, and all other previous builds have a linker error for the Gnome libraries version 4.3.2 on my setup. It's assumed that this is also the case for other users of this library as well. I'm currently assuming that there's a bug in the compiler itself, and will look into reporting this, but in the mean time, it doesn't build for these users, unfortunately. Sorry about this. --- AethyraLin2WinXcompile.cbp | 2 - debian/control | 2 +- debian/watch | 2 - src/CMakeLists.txt | 3 +- src/Makefile.am | 3 +- src/animatedsprite.cpp | 3 - src/animatedsprite.h | 2 - src/animationparticle.cpp | 2 - src/animationparticle.h | 1 - src/being.cpp | 9 +- src/being.h | 4 +- src/beingmanager.cpp | 3 - src/beingmanager.h | 2 - src/configlistener.h | 3 - src/configuration.cpp | 6 +- src/configuration.h | 8 +- src/engine.cpp | 6 +- src/engine.h | 2 - src/equipment.cpp | 2 - src/floor_item.cpp | 3 - src/flooritemmanager.cpp | 5 +- src/flooritemmanager.h | 2 - src/game.cpp | 12 +-- src/game.h | 2 - src/graphics.cpp | 2 - src/graphics.h | 2 - src/gui/box.cpp | 2 - src/gui/box.h | 2 - src/gui/browserbox.cpp | 4 +- src/gui/browserbox.h | 4 +- src/gui/button.cpp | 2 - src/gui/button.h | 2 - src/gui/buttonbox.cpp | 5 +- src/gui/buttonbox.h | 6 +- src/gui/buy.cpp | 5 +- src/gui/buy.h | 2 - src/gui/buysell.cpp | 5 +- src/gui/buysell.h | 6 +- src/gui/char_select.cpp | 5 +- src/gui/char_select.h | 8 +- src/gui/char_server.cpp | 5 +- src/gui/char_server.h | 2 - src/gui/chargedialog.cpp | 2 - src/gui/chargedialog.h | 1 - src/gui/chat.cpp | 12 +-- src/gui/chat.h | 6 +- src/gui/chatinput.cpp | 2 - src/gui/chatinput.h | 6 +- src/gui/checkbox.cpp | 2 - src/gui/checkbox.h | 2 - src/gui/colour.cpp | 4 +- src/gui/colour.h | 3 +- src/gui/confirm_dialog.cpp | 6 +- src/gui/confirm_dialog.h | 2 - src/gui/connection.cpp | 5 +- src/gui/connection.h | 2 - src/gui/debugwindow.cpp | 7 +- src/gui/debugwindow.h | 2 - src/gui/equipmentwindow.cpp | 2 - src/gui/equipmentwindow.h | 2 - src/gui/focushandler.cpp | 3 - src/gui/focushandler.h | 2 - src/gui/gccontainer.cpp | 2 - src/gui/gccontainer.h | 2 - src/gui/gui.cpp | 7 +- src/gui/gui.h | 4 +- src/gui/hbox.cpp | 2 - src/gui/hbox.h | 2 - src/gui/help.cpp | 5 +- src/gui/help.h | 4 +- src/gui/inttextbox.cpp | 6 +- src/gui/inttextbox.h | 2 - src/gui/inventorywindow.cpp | 5 +- src/gui/inventorywindow.h | 2 - src/gui/item_amount.cpp | 5 +- src/gui/item_amount.h | 2 - src/gui/itemcontainer.cpp | 4 +- src/gui/itemcontainer.h | 6 +- src/gui/itempopup.cpp | 10 +- src/gui/itempopup.h | 4 +- src/gui/itemshortcutcontainer.cpp | 4 +- src/gui/itemshortcutcontainer.h | 2 - src/gui/itemshortcutwindow.cpp | 5 +- src/gui/itemshortcutwindow.h | 2 - src/gui/linkhandler.h | 2 - src/gui/listbox.cpp | 6 +- src/gui/listbox.h | 2 - src/gui/login.cpp | 14 ++- src/gui/login.h | 10 +- src/gui/menuwindow.cpp | 13 +-- src/gui/menuwindow.h | 2 - src/gui/minimap.cpp | 2 - src/gui/minimap.h | 2 - src/gui/ministatus.cpp | 7 +- src/gui/ministatus.h | 2 - src/gui/newskill.cpp | 195 -------------------------------------- src/gui/newskill.h | 71 -------------- src/gui/npc_text.cpp | 5 +- src/gui/npc_text.h | 5 +- src/gui/npclistdialog.cpp | 5 +- src/gui/npclistdialog.h | 2 - src/gui/ok_dialog.cpp | 2 - src/gui/ok_dialog.h | 2 - src/gui/passwordfield.cpp | 2 - src/gui/passwordfield.h | 2 - src/gui/playerbox.cpp | 4 +- src/gui/playerbox.h | 2 - src/gui/popupmenu.cpp | 7 +- src/gui/popupmenu.h | 5 +- src/gui/progressbar.cpp | 2 - src/gui/progressbar.h | 3 - src/gui/radiobutton.cpp | 2 - src/gui/radiobutton.h | 2 - src/gui/register.cpp | 7 +- src/gui/register.h | 4 +- src/gui/scrollarea.cpp | 2 - src/gui/scrollarea.h | 2 - src/gui/sell.cpp | 9 +- src/gui/sell.h | 2 - src/gui/setup.cpp | 17 ++-- src/gui/setup.h | 2 - src/gui/setup_audio.cpp | 5 +- src/gui/setup_audio.h | 6 +- src/gui/setup_colours.cpp | 3 +- src/gui/setup_colours.h | 6 +- src/gui/setup_joystick.cpp | 6 +- src/gui/setup_joystick.h | 6 +- src/gui/setup_keyboard.cpp | 7 +- src/gui/setup_keyboard.h | 10 +- src/gui/setup_players.cpp | 8 +- src/gui/setup_players.h | 7 +- src/gui/setup_video.cpp | 7 +- src/gui/setup_video.h | 6 +- src/gui/setuptab.h | 2 - src/gui/shop.cpp | 2 - src/gui/shop.h | 8 +- src/gui/shoplistbox.cpp | 10 +- src/gui/shoplistbox.h | 2 - src/gui/skill.cpp | 7 +- src/gui/skill.h | 2 - src/gui/slider.cpp | 2 - src/gui/slider.h | 3 - src/gui/speechbubble.cpp | 2 - src/gui/speechbubble.h | 4 +- src/gui/status.cpp | 5 +- src/gui/status.h | 2 - src/gui/tabbedcontainer.cpp | 7 +- src/gui/tabbedcontainer.h | 4 +- src/gui/table.cpp | 6 +- src/gui/table.h | 1 + src/gui/table_model.cpp | 4 +- src/gui/table_model.h | 4 +- src/gui/textbox.cpp | 6 +- src/gui/textbox.h | 2 - src/gui/textfield.cpp | 3 +- src/gui/textfield.h | 2 - src/gui/trade.cpp | 5 +- src/gui/trade.h | 2 - src/gui/updatewindow.cpp | 9 +- src/gui/updatewindow.h | 3 +- src/gui/vbox.cpp | 2 - src/gui/vbox.h | 2 - src/gui/viewport.cpp | 11 +-- src/gui/viewport.h | 4 +- src/gui/widgets/dropdown.cpp | 2 - src/gui/widgets/dropdown.h | 6 +- src/gui/widgets/resizegrip.cpp | 6 +- src/gui/widgets/resizegrip.h | 2 - src/gui/window.cpp | 8 +- src/gui/window.h | 7 +- src/gui/windowcontainer.cpp | 2 - src/gui/windowcontainer.h | 2 - src/guichanfwd.h | 2 - src/imageparticle.cpp | 5 +- src/imageparticle.h | 2 - src/inventory.cpp | 5 +- src/inventory.h | 2 - src/item.cpp | 2 - src/item.h | 2 - src/itemshortcut.cpp | 5 +- src/itemshortcut.h | 2 - src/joystick.cpp | 5 +- src/joystick.h | 2 - src/keyboardconfig.cpp | 8 +- src/keyboardconfig.h | 6 +- src/localplayer.cpp | 7 +- src/localplayer.h | 2 - src/lockedarray.h | 2 - src/main.cpp | 33 +++---- src/main.h | 2 - src/map.cpp | 7 +- src/map.h | 2 - src/monster.cpp | 7 +- src/monster.h | 2 - src/net/beinghandler.cpp | 9 +- src/net/beinghandler.h | 2 - src/net/buysellhandler.cpp | 7 +- src/net/buysellhandler.h | 2 - src/net/charserverhandler.cpp | 7 +- src/net/charserverhandler.h | 2 - src/net/chathandler.cpp | 5 +- src/net/chathandler.h | 2 - src/net/equipmenthandler.cpp | 3 - src/net/equipmenthandler.h | 2 - src/net/inventoryhandler.cpp | 10 +- src/net/inventoryhandler.h | 2 - src/net/itemhandler.cpp | 3 - src/net/itemhandler.h | 2 - src/net/loginhandler.cpp | 3 - src/net/loginhandler.h | 5 +- src/net/maploginhandler.cpp | 3 - src/net/maploginhandler.h | 2 - src/net/messagehandler.cpp | 5 +- src/net/messagehandler.h | 2 - src/net/messagein.cpp | 7 +- src/net/messagein.h | 4 +- src/net/messageout.cpp | 7 +- src/net/messageout.h | 2 - src/net/network.cpp | 7 +- src/net/network.h | 2 - src/net/npchandler.cpp | 7 +- src/net/npchandler.h | 2 - src/net/partyhandler.cpp | 9 +- src/net/partyhandler.h | 2 - src/net/playerhandler.cpp | 8 +- src/net/playerhandler.h | 2 - src/net/protocol.cpp | 2 - src/net/protocol.h | 2 - src/net/skillhandler.cpp | 5 +- src/net/skillhandler.h | 2 - src/net/tradehandler.cpp | 5 +- src/net/tradehandler.h | 2 - src/npc.cpp | 6 +- src/npc.h | 2 - src/openglgraphics.cpp | 7 +- src/openglgraphics.h | 2 - src/particle.cpp | 5 +- src/particle.h | 2 - src/particleemitter.cpp | 7 +- src/particleemitter.h | 2 - src/particleemitterprop.h | 4 +- src/party.cpp | 7 +- src/party.h | 2 - src/player.cpp | 10 +- src/player.h | 2 - src/player_relations.cpp | 7 +- src/player_relations.h | 11 ++- src/properties.h | 4 +- src/recorder.cpp | 4 +- src/recorder.h | 4 +- src/resources/action.cpp | 4 - src/resources/action.h | 2 - src/resources/ambientoverlay.cpp | 3 - src/resources/ambientoverlay.h | 2 - src/resources/animation.cpp | 6 +- src/resources/animation.h | 2 - src/resources/buddylist.cpp | 6 +- src/resources/buddylist.h | 2 - src/resources/colordb.h | 2 +- src/resources/dye.cpp | 2 - src/resources/dye.h | 7 +- src/resources/image.cpp | 5 +- src/resources/image.h | 5 +- src/resources/imageloader.cpp | 6 +- src/resources/imageloader.h | 2 - src/resources/imageset.cpp | 5 +- src/resources/imageset.h | 3 - src/resources/imagewriter.cpp | 8 +- src/resources/imagewriter.h | 2 - src/resources/itemdb.cpp | 4 +- src/resources/itemdb.h | 6 +- src/resources/iteminfo.cpp | 5 +- src/resources/iteminfo.h | 2 - src/resources/mapreader.cpp | 7 +- src/resources/mapreader.h | 4 +- src/resources/monsterdb.cpp | 3 - src/resources/monsterdb.h | 2 - src/resources/monsterinfo.cpp | 2 - src/resources/monsterinfo.h | 5 +- src/resources/music.cpp | 2 - src/resources/music.h | 2 - src/resources/npcdb.cpp | 3 - src/resources/npcdb.h | 4 +- src/resources/resource.cpp | 3 - src/resources/resource.h | 2 - src/resources/resourcemanager.cpp | 12 +-- src/resources/resourcemanager.h | 6 +- src/resources/soundeffect.cpp | 2 - src/resources/soundeffect.h | 2 - src/resources/spritedef.cpp | 5 +- src/resources/spritedef.h | 6 +- src/serverinfo.h | 2 - src/shopitem.cpp | 2 - src/shopitem.h | 2 - src/simpleanimation.cpp | 8 +- src/simpleanimation.h | 2 - src/sound.cpp | 6 +- src/sound.h | 3 - src/sprite.h | 2 - src/text.cpp | 3 +- src/textmanager.cpp | 3 +- src/textparticle.cpp | 5 +- src/textparticle.h | 5 +- src/utils/base64.cpp | 3 +- src/utils/base64.h | 1 - src/utils/dtor.h | 2 - src/utils/fastsqrt.h | 2 - src/utils/strprintf.cpp | 2 - src/utils/strprintf.h | 2 - src/utils/tostring.h | 2 - src/utils/trim.h | 2 - src/utils/xml.cpp | 4 +- src/utils/xml.h | 6 +- src/vector.h | 2 - 314 files changed, 320 insertions(+), 1252 deletions(-) delete mode 100644 debian/watch delete mode 100644 src/gui/newskill.cpp delete mode 100644 src/gui/newskill.h (limited to 'src/gui/setup_players.cpp') diff --git a/AethyraLin2WinXcompile.cbp b/AethyraLin2WinXcompile.cbp index 50881830..ec4940ac 100644 --- a/AethyraLin2WinXcompile.cbp +++ b/AethyraLin2WinXcompile.cbp @@ -168,8 +168,6 @@ - - diff --git a/debian/control b/debian/control index b845ba94..0d94b4fd 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: games Priority: optional Homepage: http://www.aethyra.org/ Maintainer: Aethyra Project -Build-Depends: debhelper (>= 5), dpkg-dev (>= 1.13.19), dpatch, autotools-dev, libcurl4-gnutls-dev, libgl1-mesa-dev, libguichan2-dev (>= 0.7.1), libsdl1.2-dev, libsdl-image1.2-dev, libsdl-net1.2-dev, libsdl-mixer1.2-dev, libphysfs-dev, libpng12-dev, libxml2-dev, zlib1g-dev +Build-Depends: debhelper (>= 5), dpkg-dev (>= 1.13.19), dpatch, autotools-dev, libcurl4-gnutls-dev, libgl1-mesa-dev, libguichan-dev (>= 0.8.1-3), libsdl1.2-dev, libsdl-image1.2-dev, libsdl-net1.2-dev, libsdl-mixer1.2-dev, libphysfs-dev, libpng12-dev, libxml2-dev, zlib1g-dev Standards-Version: 3.7.3 Package: aethyra diff --git a/debian/watch b/debian/watch deleted file mode 100644 index 01aa13f7..00000000 --- a/debian/watch +++ /dev/null @@ -1,2 +0,0 @@ -version=3 -http://sf.net/themanaworld/tmw-(.*)\.tar\.gz diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d5021823..e4803230 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -118,8 +118,6 @@ SET(SRCS gui/minimap.h gui/ministatus.cpp gui/ministatus.h - gui/newskill.cpp - gui/newskill.h gui/npclistdialog.cpp gui/npclistdialog.h gui/npc_text.cpp @@ -286,6 +284,7 @@ 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 17445ddf..5c759135 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -70,8 +70,6 @@ aethyra_SOURCES = gui/widgets/dropdown.cpp \ gui/minimap.h \ gui/ministatus.cpp \ gui/ministatus.h \ - gui/newskill.cpp \ - gui/newskill.h \ gui/npclistdialog.cpp \ gui/npclistdialog.h \ gui/npc_text.cpp \ @@ -248,6 +246,7 @@ 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/animatedsprite.cpp b/src/animatedsprite.cpp index 92c4e3f3..c86c5392 100644 --- a/src/animatedsprite.cpp +++ b/src/animatedsprite.cpp @@ -17,12 +17,9 @@ * 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 - * - * $Id: animatedsprite.cpp 3752 2007-11-20 10:50:00Z b_lindeijer $ */ #include "animatedsprite.h" - #include "graphics.h" #include "log.h" diff --git a/src/animatedsprite.h b/src/animatedsprite.h index 1fac5220..405bf42e 100644 --- a/src/animatedsprite.h +++ b/src/animatedsprite.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: animatedsprite.h 3752 2007-11-20 10:50:00Z b_lindeijer $ */ #ifndef _TMW_ANIMATEDSPRITE_H diff --git a/src/animationparticle.cpp b/src/animationparticle.cpp index c79a5bc4..59eacb05 100644 --- a/src/animationparticle.cpp +++ b/src/animationparticle.cpp @@ -17,11 +17,9 @@ * 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 "animationparticle.h" - #include "graphics.h" #include "simpleanimation.h" diff --git a/src/animationparticle.h b/src/animationparticle.h index 054b1b73..eabc2742 100644 --- a/src/animationparticle.h +++ b/src/animationparticle.h @@ -17,7 +17,6 @@ * 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 _ANIMATION_PARTICLE diff --git a/src/being.cpp b/src/being.cpp index 7fb63a7c..27bd0c57 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -17,15 +17,13 @@ * 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 - * - * $Id: being.cpp 4301 2008-05-28 16:06:48Z peaveydk $ */ -#include "being.h" #include #include #include "animatedsprite.h" +#include "being.h" #include "configuration.h" #include "equipment.h" #include "game.h" @@ -37,17 +35,16 @@ #include "sound.h" #include "text.h" -#include "resources/resourcemanager.h" -#include "resources/itemdb.h" #include "resources/imageset.h" +#include "resources/itemdb.h" #include "resources/iteminfo.h" +#include "resources/resourcemanager.h" #include "gui/gui.h" #include "gui/speechbubble.h" #include "utils/dtor.h" #include "utils/tostring.h" - #include "utils/xml.h" #define BEING_EFFECTS_FILE "effects.xml" diff --git a/src/being.h b/src/being.h index 62a1c937..325ec51a 100644 --- a/src/being.h +++ b/src/being.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: being.h 4321 2008-06-02 11:42:26Z b_lindeijer $ */ #ifndef _TMW_BEING_H @@ -26,8 +24,8 @@ #include #include -#include #include +#include #include #include "animatedsprite.h" diff --git a/src/beingmanager.cpp b/src/beingmanager.cpp index f0ce9bd3..ada1ddfa 100644 --- a/src/beingmanager.cpp +++ b/src/beingmanager.cpp @@ -17,14 +17,11 @@ * 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 - * - * $Id: beingmanager.cpp 4237 2008-05-14 18:57:32Z b_lindeijer $ */ #include #include "beingmanager.h" - #include "localplayer.h" #include "monster.h" #include "npc.h" diff --git a/src/beingmanager.h b/src/beingmanager.h index 6942ff54..0179bed8 100644 --- a/src/beingmanager.h +++ b/src/beingmanager.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: beingmanager.h 4237 2008-05-14 18:57:32Z b_lindeijer $ */ #ifndef _TMW_BEINGMANAGER_H diff --git a/src/configlistener.h b/src/configlistener.h index bf00f3ef..9fbc4544 100644 --- a/src/configlistener.h +++ b/src/configlistener.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: configlistener.h 1673 2005-08-29 22:00:35Z der_doener $ */ #ifndef _TMW_CONFIGLISTENER_H @@ -26,7 +24,6 @@ #include - /** * The listener interface for receiving notifications about changes to * configuration options. diff --git a/src/configuration.cpp b/src/configuration.cpp index e9c8db7a..8e80de18 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -17,16 +17,12 @@ * 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 - * - * $Id: configuration.cpp 4237 2008-05-14 18:57:32Z b_lindeijer $ */ - -#include "configuration.h" - #include #include "configlistener.h" +#include "configuration.h" #include "log.h" #include "utils/tostring.h" diff --git a/src/configuration.h b/src/configuration.h index 7dadb083..197e1a41 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -17,18 +17,16 @@ * 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 - * - * $Id: configuration.h 4237 2008-05-14 18:57:32Z b_lindeijer $ */ #ifndef _TMW_CONFIGURATION_H #define _TMW_CONFIGURATION_H -#include -#include -#include #include #include +#include +#include +#include class ConfigListener; class ConfigurationObject; diff --git a/src/engine.cpp b/src/engine.cpp index c8fee995..b51f4852 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -17,21 +17,17 @@ * 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 - * - * $Id: engine.cpp 4000 2008-03-23 11:47:52Z b_lindeijer $ */ -#include "engine.h" - #include #include "being.h" #include "beingmanager.h" #include "configuration.h" +#include "engine.h" #include "flooritemmanager.h" #include "game.h" #include "graphics.h" -#include "main.h" #include "localplayer.h" #include "log.h" #include "main.h" diff --git a/src/engine.h b/src/engine.h index 52f1e63a..8d387f80 100644 --- a/src/engine.h +++ b/src/engine.h @@ -17,8 +17,6 @@ * 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 - * - * $Id$ */ #ifndef _ENGINE_H diff --git a/src/equipment.cpp b/src/equipment.cpp index 984df74d..f1d1d4f2 100644 --- a/src/equipment.cpp +++ b/src/equipment.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: equipment.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #include diff --git a/src/floor_item.cpp b/src/floor_item.cpp index 399a4149..0b114e14 100644 --- a/src/floor_item.cpp +++ b/src/floor_item.cpp @@ -17,12 +17,9 @@ * 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 - * - * $Id: floor_item.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #include "floor_item.h" - #include "map.h" FloorItem::FloorItem(unsigned int id, diff --git a/src/flooritemmanager.cpp b/src/flooritemmanager.cpp index fe64779b..7445b1e9 100644 --- a/src/flooritemmanager.cpp +++ b/src/flooritemmanager.cpp @@ -17,13 +17,10 @@ * 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 - * - * $Id: flooritemmanager.cpp 3754 2007-11-20 15:19:50Z b_lindeijer $ */ -#include "flooritemmanager.h" - #include "floor_item.h" +#include "flooritemmanager.h" #include "utils/dtor.h" diff --git a/src/flooritemmanager.h b/src/flooritemmanager.h index a6bfbdc3..3dbaf988 100644 --- a/src/flooritemmanager.h +++ b/src/flooritemmanager.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: flooritemmanager.h 2150 2006-02-06 02:56:48Z der_doener $ */ #ifndef _TMW_FLOORITEMMANAGER_H diff --git a/src/game.cpp b/src/game.cpp index eb200f4a..34fb4622 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: game.cpp 4237 2008-05-14 18:57:32Z b_lindeijer $ */ #include "game.h" @@ -28,8 +26,8 @@ #include #include -#include #include +#include #include "beingmanager.h" #include "configuration.h" @@ -69,19 +67,19 @@ #include "gui/trade.h" #include "gui/viewport.h" -#include "net/protocol.h" #include "net/beinghandler.h" #include "net/buysellhandler.h" #include "net/chathandler.h" #include "net/equipmenthandler.h" #include "net/inventoryhandler.h" #include "net/itemhandler.h" +#include "net/messageout.h" #include "net/network.h" #include "net/npchandler.h" #include "net/playerhandler.h" +#include "net/protocol.h" #include "net/skillhandler.h" #include "net/tradehandler.h" -#include "net/messageout.h" #include "resources/imagewriter.h" @@ -115,7 +113,6 @@ InventoryWindow *inventoryWindow; NpcListDialog *npcListDialog; NpcTextDialog *npcTextDialog; SkillDialog *skillDialog; -//NewSkillDialog *newSkillWindow; Setup* setupWindow; Minimap *minimap; EquipmentWindow *equipmentWindow; @@ -199,7 +196,6 @@ void createGuiWindows(Network *network) npcTextDialog = new NpcTextDialog(); npcListDialog = new NpcListDialog(); skillDialog = new SkillDialog(); - //newSkillWindow = new NewSkillDialog(); setupWindow = new Setup(); minimap = new Minimap(); equipmentWindow = new EquipmentWindow(player_node->mEquipment.get()); @@ -256,7 +252,6 @@ void destroyGuiWindows() delete minimap; delete equipmentWindow; //delete chargeDialog; - //delete newSkillWindow; delete tradeWindow; //delete buddyWindow; delete helpWindow; @@ -609,7 +604,6 @@ void Game::handleInput() case SDLK_F8: requestedWindow = itemShortcutWindow; break; case SDLK_F9: requestedWindow = setupWindow; break; case SDLK_F10: requestedWindow = debugWindow; break; - //case SDLK_F11: requestedWindow = newSkillWindow; break; case SDLK_RETURN: // Input chat window diff --git a/src/game.h b/src/game.h index 583aea70..1cc18cae 100644 --- a/src/game.h +++ b/src/game.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: game.h 3859 2008-01-26 19:38:43Z b_lindeijer $ */ #ifndef _TMW_GAME_ diff --git a/src/graphics.cpp b/src/graphics.cpp index 0433678f..6920bcb0 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: graphics.cpp 3628 2007-10-18 18:39:48Z b_lindeijer $ */ #include diff --git a/src/graphics.h b/src/graphics.h index 0cf58141..efdd1ac1 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: graphics.h 3628 2007-10-18 18:39:48Z b_lindeijer $ */ #ifndef _GRAPHICS_H diff --git a/src/gui/box.cpp b/src/gui/box.cpp index f53bc18e..59d8c135 100644 --- a/src/gui/box.cpp +++ b/src/gui/box.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: box.cpp 1456 2005-07-15 23:17:00Z b_lindeijer $ */ #include "box.h" diff --git a/src/gui/box.h b/src/gui/box.h index 280fd3e2..46654b48 100644 --- a/src/gui/box.h +++ b/src/gui/box.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: box.h 2529 2006-08-13 10:20:19Z b_lindeijer $ */ diff --git a/src/gui/browserbox.cpp b/src/gui/browserbox.cpp index b7d08cab..430a2aa2 100644 --- a/src/gui/browserbox.cpp +++ b/src/gui/browserbox.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: browserbox.cpp 4348 2008-06-14 12:42:49Z the_enemy $ */ #include @@ -28,8 +26,8 @@ #include #include "browserbox.h" -#include "linkhandler.h" #include "colour.h" +#include "linkhandler.h" #ifdef USE_OPENGL #include "../configuration.h" diff --git a/src/gui/browserbox.h b/src/gui/browserbox.h index c671d835..267e0fea 100644 --- a/src/gui/browserbox.h +++ b/src/gui/browserbox.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: browserbox.h 3687 2007-10-26 00:22:12Z crush_tmw $ */ #ifndef __TMW_BROWSERBOX_H__ @@ -27,8 +25,8 @@ #include #include -#include #include +#include #include "../guichanfwd.h" #include "../main.h" diff --git a/src/gui/button.cpp b/src/gui/button.cpp index 1243d798..40ecd1b7 100644 --- a/src/gui/button.cpp +++ b/src/gui/button.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: button.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ #include diff --git a/src/gui/button.h b/src/gui/button.h index bbd26010..eecd0dc0 100644 --- a/src/gui/button.h +++ b/src/gui/button.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: button.h 3606 2007-09-27 14:54:09Z b_lindeijer $ */ #ifndef _TMW_BUTTON_H diff --git a/src/gui/buttonbox.cpp b/src/gui/buttonbox.cpp index 592cb92a..903d971d 100644 --- a/src/gui/buttonbox.cpp +++ b/src/gui/buttonbox.cpp @@ -17,13 +17,10 @@ * 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 - * - * $Id: buttonbox.cpp */ -#include "buttonbox.h" - #include "button.h" +#include "buttonbox.h" ButtonBox::ButtonBox(const std::string &title, const std::string &buttonTxt, ButtonBoxListener *listener) : diff --git a/src/gui/buttonbox.h b/src/gui/buttonbox.h index 5fc9f88d..edde4aa4 100644 --- a/src/gui/buttonbox.h +++ b/src/gui/buttonbox.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: buttonbox.h */ #ifndef _TMW_BUTTONBOX_H @@ -28,10 +26,10 @@ #include -#include "../guichanfwd.h" - #include "window.h" +#include "../guichanfwd.h" + class ButtonBoxListener { public: diff --git a/src/gui/buy.cpp b/src/gui/buy.cpp index 8e2a7a7a..a4574eb7 100644 --- a/src/gui/buy.cpp +++ b/src/gui/buy.cpp @@ -17,15 +17,12 @@ * 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 - * - * $Id: buy.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ -#include "buy.h" - #include #include "button.h" +#include "buy.h" #include "scrollarea.h" #include "shop.h" #include "shoplistbox.h" diff --git a/src/gui/buy.h b/src/gui/buy.h index 6f75cab5..0915385a 100644 --- a/src/gui/buy.h +++ b/src/gui/buy.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: buy.h 4045 2008-04-07 15:23:07Z b_lindeijer $ */ #ifndef _TMW_BUY_H diff --git a/src/gui/buysell.cpp b/src/gui/buysell.cpp index 9cc3b297..57c95841 100644 --- a/src/gui/buysell.cpp +++ b/src/gui/buysell.cpp @@ -17,13 +17,10 @@ * 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 - * - * $Id: buysell.cpp 3035 2007-01-14 14:54:39Z b_lindeijer $ */ -#include "buysell.h" - #include "button.h" +#include "buysell.h" #include "../npc.h" diff --git a/src/gui/buysell.h b/src/gui/buysell.h index 0966ec03..d73205b6 100644 --- a/src/gui/buysell.h +++ b/src/gui/buysell.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: buysell.h 3035 2007-01-14 14:54:39Z b_lindeijer $ */ #ifndef _TMW_BUYSELL_H @@ -26,10 +24,10 @@ #include -#include "../guichanfwd.h" - #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 ca4d8608..93783ded 100644 --- a/src/gui/char_select.cpp +++ b/src/gui/char_select.cpp @@ -17,17 +17,14 @@ * 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 - * - * $Id: char_select.cpp 3760 2007-11-21 19:43:11Z b_lindeijer $ */ -#include "char_select.h" - #include #include #include "button.h" +#include "char_select.h" #include "confirm_dialog.h" #include "ok_dialog.h" #include "playerbox.h" diff --git a/src/gui/char_select.h b/src/gui/char_select.h index 182600d1..63630736 100644 --- a/src/gui/char_select.h +++ b/src/gui/char_select.h @@ -17,23 +17,21 @@ * 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 - * - * $Id: char_select.h 3752 2007-11-20 10:50:00Z b_lindeijer $ */ #ifndef _CHAR_SELECT_H #define _CHAR_SELECT_H +#include + #include "window.h" #include "../guichanfwd.h" #include "../lockedarray.h" -#include - -class Player; class LocalPlayer; class Network; +class Player; class PlayerBox; /** diff --git a/src/gui/char_server.cpp b/src/gui/char_server.cpp index 3465fb69..8f68e6e1 100644 --- a/src/gui/char_server.cpp +++ b/src/gui/char_server.cpp @@ -17,13 +17,10 @@ * 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 - * - * $Id: char_server.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ -#include "char_server.h" - #include "button.h" +#include "char_server.h" #include "listbox.h" #include "scrollarea.h" diff --git a/src/gui/char_server.h b/src/gui/char_server.h index 32a0645f..bb81d3a5 100644 --- a/src/gui/char_server.h +++ b/src/gui/char_server.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: char_server.h 3035 2007-01-14 14:54:39Z b_lindeijer $ */ #ifndef _CHAR_SEL_SERVER_H diff --git a/src/gui/chargedialog.cpp b/src/gui/chargedialog.cpp index 862378ae..1733c7eb 100644 --- a/src/gui/chargedialog.cpp +++ b/src/gui/chargedialog.cpp @@ -17,7 +17,6 @@ * 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 - * */ /* The window supported by this class shows player stats and keeps a charging @@ -25,7 +24,6 @@ */ #include "chargedialog.h" - #include "progressbar.h" #include "../localplayer.h" diff --git a/src/gui/chargedialog.h b/src/gui/chargedialog.h index 222fb3b5..53998ab8 100644 --- a/src/gui/chargedialog.h +++ b/src/gui/chargedialog.h @@ -17,7 +17,6 @@ * 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 _TMW_CHARGE_H diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 6a74d19e..dd11cebb 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -17,29 +17,27 @@ * 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 - * - * $Id: chat.cpp 4227 2008-05-08 00:39:29Z peaveydk $ */ #include #include + #include #include -#include "chat.h" - #include "browserbox.h" +#include "chat.h" #include "chatinput.h" #include "scrollarea.h" #include "windowcontainer.h" +#include "../beingmanager.h" #include "../configuration.h" +#include "../extensions.h" #include "../game.h" #include "../localplayer.h" -#include "../beingmanager.h" -#include "../recorder.h" #include "../party.h" -#include "../extensions.h" +#include "../recorder.h" #include "../net/messageout.h" #include "../net/protocol.h" diff --git a/src/gui/chat.h b/src/gui/chat.h index 5e5ca110..437dc115 100644 --- a/src/gui/chat.h +++ b/src/gui/chat.h @@ -17,16 +17,14 @@ * 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 - * - * $Id: chat.h 4227 2008-05-08 00:39:29Z peaveydk $ */ #ifndef _TMW_CHAT_H #define _TMW_CHAT_H +#include #include #include -#include #include #include @@ -37,9 +35,9 @@ class BrowserBox; class Network; -class ScrollArea; class Recorder; class Party; +class ScrollArea; #define BY_GM 0 // those should be self-explanatory =) #define BY_PLAYER 1 diff --git a/src/gui/chatinput.cpp b/src/gui/chatinput.cpp index b403a03e..afe7f037 100644 --- a/src/gui/chatinput.cpp +++ b/src/gui/chatinput.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: chatinput.cpp 3361 2007-07-07 20:12:58Z b_lindeijer $ */ #include "chatinput.h" diff --git a/src/gui/chatinput.h b/src/gui/chatinput.h index 043244b9..44e22956 100644 --- a/src/gui/chatinput.h +++ b/src/gui/chatinput.h @@ -17,19 +17,17 @@ * 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 - * - * $Id: chatinput.h 3361 2007-07-07 20:12:58Z b_lindeijer $ */ #ifndef _TMW_CHATINPUT_H #define _TMW_CHATINPUT_H +#include + #include "textfield.h" #include "../guichanfwd.h" -#include - /** * The chat input hides when it loses focus. It is also invisible by default. */ diff --git a/src/gui/checkbox.cpp b/src/gui/checkbox.cpp index b530bbea..20e24dee 100644 --- a/src/gui/checkbox.cpp +++ b/src/gui/checkbox.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: checkbox.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ #include "checkbox.h" diff --git a/src/gui/checkbox.h b/src/gui/checkbox.h index 160a2bf4..f6d8f2e5 100644 --- a/src/gui/checkbox.h +++ b/src/gui/checkbox.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: checkbox.h 4045 2008-04-07 15:23:07Z b_lindeijer $ */ #ifndef _TMW_CHECKBOX_H diff --git a/src/gui/colour.cpp b/src/gui/colour.cpp index d1782e1c..4c3782a4 100644 --- a/src/gui/colour.cpp +++ b/src/gui/colour.cpp @@ -19,10 +19,10 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include "colour.h" - #include +#include "colour.h" + #include "../configuration.h" Colour::Colour() diff --git a/src/gui/colour.h b/src/gui/colour.h index ac75f08b..1e8ba3db 100644 --- a/src/gui/colour.h +++ b/src/gui/colour.h @@ -21,9 +21,10 @@ #ifndef _COLOUR_H #define _COLOUR_H + #include -#include #include +#include #include diff --git a/src/gui/confirm_dialog.cpp b/src/gui/confirm_dialog.cpp index 848c4767..732f5769 100644 --- a/src/gui/confirm_dialog.cpp +++ b/src/gui/confirm_dialog.cpp @@ -17,14 +17,12 @@ * 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 - * - * $Id: confirm_dialog.cpp 3035 2007-01-14 14:54:39Z b_lindeijer $ */ -#include "confirm_dialog.h" - #include +#include "confirm_dialog.h" + ConfirmDialog::ConfirmDialog(const std::string &title, const std::string &msg, Window *parent): Window(title, true, parent) diff --git a/src/gui/confirm_dialog.h b/src/gui/confirm_dialog.h index 65f33cac..109dcea0 100644 --- a/src/gui/confirm_dialog.h +++ b/src/gui/confirm_dialog.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: confirm_dialog.h 3035 2007-01-14 14:54:39Z b_lindeijer $ */ #ifndef _TMW_OPTION_DIALOG_H diff --git a/src/gui/connection.cpp b/src/gui/connection.cpp index 0b62ca3c..1204b203 100644 --- a/src/gui/connection.cpp +++ b/src/gui/connection.cpp @@ -17,17 +17,14 @@ * 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 - * - * $Id: connection.cpp 3035 2007-01-14 14:54:39Z b_lindeijer $ */ -#include "connection.h" - #include #include #include "button.h" +#include "connection.h" #include "progressbar.h" #include "../main.h" diff --git a/src/gui/connection.h b/src/gui/connection.h index 86b688a3..c3a6208f 100644 --- a/src/gui/connection.h +++ b/src/gui/connection.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: connection.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_CONNECTION_H diff --git a/src/gui/debugwindow.cpp b/src/gui/debugwindow.cpp index 1e7d5b35..7fc63096 100644 --- a/src/gui/debugwindow.cpp +++ b/src/gui/debugwindow.cpp @@ -17,22 +17,19 @@ * 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 - * - * $Id: debugwindow.cpp 3509 2007-08-23 13:43:17Z b_lindeijer $ */ -#include "debugwindow.h" - #include #include #include "button.h" +#include "debugwindow.h" #include "gui.h" #include "viewport.h" -#include "../game.h" #include "../engine.h" +#include "../game.h" #include "../particle.h" #include "../map.h" diff --git a/src/gui/debugwindow.h b/src/gui/debugwindow.h index 59ae765c..ae1d8b14 100644 --- a/src/gui/debugwindow.h +++ b/src/gui/debugwindow.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: debugwindow.h 3509 2007-08-23 13:43:17Z b_lindeijer $ */ #ifndef _TMW_DEBUGWINDOW_H diff --git a/src/gui/equipmentwindow.cpp b/src/gui/equipmentwindow.cpp index 727ac732..bf85f033 100644 --- a/src/gui/equipmentwindow.cpp +++ b/src/gui/equipmentwindow.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: equipmentwindow.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #include "equipmentwindow.h" diff --git a/src/gui/equipmentwindow.h b/src/gui/equipmentwindow.h index 6a7a4944..7aacfc1e 100644 --- a/src/gui/equipmentwindow.h +++ b/src/gui/equipmentwindow.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: equipmentwindow.h 2545 2006-08-17 19:11:28Z crush_tmw $ */ #ifndef _TMW_EQUIPMENT_H diff --git a/src/gui/focushandler.cpp b/src/gui/focushandler.cpp index 966d2013..f9ea8b7d 100644 --- a/src/gui/focushandler.cpp +++ b/src/gui/focushandler.cpp @@ -17,13 +17,10 @@ * 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 - * - * $Id: focushandler.cpp 2239 2006-03-09 05:16:27Z der_doener $ */ #include "focushandler.h" - void FocusHandler::requestModalFocus(gcn::Widget *widget) { /* If there is another widget with modal focus, remove its modal focus diff --git a/src/gui/focushandler.h b/src/gui/focushandler.h index 5fde09f1..a5218485 100644 --- a/src/gui/focushandler.h +++ b/src/gui/focushandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: focushandler.h 2239 2006-03-09 05:16:27Z der_doener $ */ #ifndef _TMW_FOCUSHANDLER_H diff --git a/src/gui/gccontainer.cpp b/src/gui/gccontainer.cpp index 8095be61..ec3c8a5c 100644 --- a/src/gui/gccontainer.cpp +++ b/src/gui/gccontainer.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: gccontainer.cpp 4208 2008-04-29 11:25:26Z b_lindeijer $ */ #include "gccontainer.h" diff --git a/src/gui/gccontainer.h b/src/gui/gccontainer.h index 660111fc..2af7f6ad 100644 --- a/src/gui/gccontainer.h +++ b/src/gui/gccontainer.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: gccontainer.h 4208 2008-04-29 11:25:26Z b_lindeijer $ */ #ifndef _TMW_GUI_GCCONTAINER_H diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index f72f544c..fcc7ed77 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -17,12 +17,8 @@ * 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 - * - * $Id: gui.cpp 3628 2007-10-18 18:39:48Z b_lindeijer $ */ -#include "gui.h" - #include #include #include @@ -31,6 +27,7 @@ #include #include "focushandler.h" +#include "gui.h" #include "viewport.h" #include "window.h" #include "windowcontainer.h" @@ -41,8 +38,8 @@ #include "../log.h" #include "../resources/imageset.h" -#include "../resources/resourcemanager.h" #include "../resources/imageloader.h" +#include "../resources/resourcemanager.h" // Guichan stuff Gui *gui; diff --git a/src/gui/gui.h b/src/gui/gui.h index f250a8e3..8cf91915 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: gui.h 3628 2007-10-18 18:39:48Z b_lindeijer $ */ #ifndef _TMW_GUI @@ -28,8 +26,8 @@ #include "../guichanfwd.h" -class GuiConfigListener; class Graphics; +class GuiConfigListener; class ImageSet; class Viewport; diff --git a/src/gui/hbox.cpp b/src/gui/hbox.cpp index dc909195..020e85c6 100644 --- a/src/gui/hbox.cpp +++ b/src/gui/hbox.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: hbox.cpp 1881 2005-10-18 21:40:25Z der_doener $ */ #include "hbox.h" diff --git a/src/gui/hbox.h b/src/gui/hbox.h index 93ac270d..da70a53c 100644 --- a/src/gui/hbox.h +++ b/src/gui/hbox.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: hbox.h 1881 2005-10-18 21:40:25Z der_doener $ */ #ifndef HBOX_H diff --git a/src/gui/help.cpp b/src/gui/help.cpp index 56a5e70e..19413a08 100644 --- a/src/gui/help.cpp +++ b/src/gui/help.cpp @@ -17,14 +17,11 @@ * 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 - * - * $Id: help.cpp 3035 2007-01-14 14:54:39Z b_lindeijer $ */ -#include "help.h" - #include "button.h" #include "browserbox.h" +#include "help.h" #include "scrollarea.h" #include "../resources/resourcemanager.h" diff --git a/src/gui/help.h b/src/gui/help.h index 3b45283c..bd200ccf 100644 --- a/src/gui/help.h +++ b/src/gui/help.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: help.h 3035 2007-01-14 14:54:39Z b_lindeijer $ */ #ifndef _TMW_HELP_H @@ -26,8 +24,8 @@ #include -#include "window.h" #include "linkhandler.h" +#include "window.h" #include "../guichanfwd.h" diff --git a/src/gui/inttextbox.cpp b/src/gui/inttextbox.cpp index 7a39c2df..858a3fcb 100644 --- a/src/gui/inttextbox.cpp +++ b/src/gui/inttextbox.cpp @@ -17,14 +17,12 @@ * 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 - * - * $Id: inttextbox.cpp 3035 2007-01-14 14:54:39Z b_lindeijer $ */ -#include "inttextbox.h" - #include +#include "inttextbox.h" + #include "../utils/tostring.h" IntTextBox::IntTextBox(int i): diff --git a/src/gui/inttextbox.h b/src/gui/inttextbox.h index 6ade7e71..922ef4c5 100644 --- a/src/gui/inttextbox.h +++ b/src/gui/inttextbox.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: inttextbox.h 3035 2007-01-14 14:54:39Z b_lindeijer $ */ #ifndef INTTEXTBOX_H diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index 1b2e5c63..cbce0ee3 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -17,18 +17,15 @@ * 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 - * - * $Id: inventorywindow.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ -#include "inventorywindow.h" - #include #include #include "button.h" #include "gui.h" +#include "inventorywindow.h" #include "item_amount.h" #include "itemcontainer.h" #include "scrollarea.h" diff --git a/src/gui/inventorywindow.h b/src/gui/inventorywindow.h index 055bfad9..2e589471 100644 --- a/src/gui/inventorywindow.h +++ b/src/gui/inventorywindow.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: inventorywindow.h 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #ifndef _TMW_INVENTORYWINDOW_H diff --git a/src/gui/item_amount.cpp b/src/gui/item_amount.cpp index 40e2e121..4ce8ac6c 100644 --- a/src/gui/item_amount.cpp +++ b/src/gui/item_amount.cpp @@ -17,14 +17,11 @@ * 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 - * - * $Id: item_amount.cpp 3718 2007-11-11 14:46:33Z b_lindeijer $ */ -#include "item_amount.h" - #include "button.h" #include "inttextbox.h" +#include "item_amount.h" #include "slider.h" #include "trade.h" diff --git a/src/gui/item_amount.h b/src/gui/item_amount.h index 668dfe3b..2005094d 100644 --- a/src/gui/item_amount.h +++ b/src/gui/item_amount.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: item_amount.h 3718 2007-11-11 14:46:33Z b_lindeijer $ */ #ifndef _TMW_ITEM_AMOUNT_WINDOW_H diff --git a/src/gui/itemcontainer.cpp b/src/gui/itemcontainer.cpp index 186a2da6..30cb1d6d 100644 --- a/src/gui/itemcontainer.cpp +++ b/src/gui/itemcontainer.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: itemcontainer.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #include "itemcontainer.h" @@ -30,8 +28,8 @@ #include "../inventory.h" #include "../item.h" #include "../itemshortcut.h" -#include "../log.h" #include "../localplayer.h" +#include "../log.h" #include "../resources/image.h" #include "../resources/iteminfo.h" diff --git a/src/gui/itemcontainer.h b/src/gui/itemcontainer.h index 5562023f..54e0c1ca 100644 --- a/src/gui/itemcontainer.h +++ b/src/gui/itemcontainer.h @@ -17,19 +17,17 @@ * 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 - * - * $Id: itemcontainer.h 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #ifndef _TMW_ITEMCONTAINER_H__ #define _TMW_ITEMCONTAINER_H__ +#include + #include #include #include -#include - #include "../guichanfwd.h" class Image; diff --git a/src/gui/itempopup.cpp b/src/gui/itempopup.cpp index aab9fd9d..055cbe44 100644 --- a/src/gui/itempopup.cpp +++ b/src/gui/itempopup.cpp @@ -18,23 +18,21 @@ * You should have received a copy of the GNU General Public License * along with The Legend of Mazzeroth; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * $Id$ */ -#include "itempopup.h" #include -#include "widgets/layout.h" #include "gui.h" +#include "itempopup.h" + +#include "widgets/layout.h" #include "../resources/image.h" -#include "../resources/resourcemanager.h" #include "../resources/iteminfo.h" +#include "../resources/resourcemanager.h" #include "../utils/gettext.h" #include "../utils/strprintf.h" - ItemPopup::ItemPopup() { diff --git a/src/gui/itempopup.h b/src/gui/itempopup.h index 499b2e0a..0082ec2c 100644 --- a/src/gui/itempopup.h +++ b/src/gui/itempopup.h @@ -19,15 +19,13 @@ * You should have received a copy of the GNU General Public License * along with The Legend of Mazzeroth; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * $Id$ */ #ifndef _LOM_ITEMPOPUP_H__ #define _LOM_ITEMPOPUP_H__ -#include "textbox.h" #include "scrollarea.h" +#include "textbox.h" #include "window.h" #include "../item.h" diff --git a/src/gui/itemshortcutcontainer.cpp b/src/gui/itemshortcutcontainer.cpp index 5899abd1..86a53aca 100644 --- a/src/gui/itemshortcutcontainer.cpp +++ b/src/gui/itemshortcutcontainer.cpp @@ -17,18 +17,16 @@ * 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 - * - * $Id: itemshortcutcontainer.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #include "itemshortcutcontainer.h" -#include "../localplayer.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" diff --git a/src/gui/itemshortcutcontainer.h b/src/gui/itemshortcutcontainer.h index cc4e830a..a8daca0b 100644 --- a/src/gui/itemshortcutcontainer.h +++ b/src/gui/itemshortcutcontainer.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: itemshortcutcontainer.h 4076 2008-04-12 18:36:15Z b_lindeijer $ */ #ifndef _TMW_ITEMSHORTCUTCONTAINER_H__ diff --git a/src/gui/itemshortcutwindow.cpp b/src/gui/itemshortcutwindow.cpp index 394fcbb7..5a4dfacd 100644 --- a/src/gui/itemshortcutwindow.cpp +++ b/src/gui/itemshortcutwindow.cpp @@ -17,13 +17,10 @@ * 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 - * - * $Id: itemshortcutwindow.cpp 4076 2008-04-12 18:36:15Z b_lindeijer $ */ -#include "itemshortcutwindow.h" - #include "itemshortcutcontainer.h" +#include "itemshortcutwindow.h" #include "scrollarea.h" static const int SCROLL_PADDING = 0; diff --git a/src/gui/itemshortcutwindow.h b/src/gui/itemshortcutwindow.h index 112c39d9..587f15c8 100644 --- a/src/gui/itemshortcutwindow.h +++ b/src/gui/itemshortcutwindow.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: itemshortcutwindow.h 4076 2008-04-12 18:36:15Z b_lindeijer $ */ #ifndef _TMW_ITEMSHORTCUTWINDOW_H diff --git a/src/gui/linkhandler.h b/src/gui/linkhandler.h index 93a8c000..44f906db 100644 --- a/src/gui/linkhandler.h +++ b/src/gui/linkhandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: linkhandler.h 3606 2007-09-27 14:54:09Z b_lindeijer $ */ #ifndef _TMW_LINK_HANDLER_H_ diff --git a/src/gui/listbox.cpp b/src/gui/listbox.cpp index cf941be1..4dca66a0 100644 --- a/src/gui/listbox.cpp +++ b/src/gui/listbox.cpp @@ -17,17 +17,15 @@ * 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 - * - * $Id: listbox.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ -#include "listbox.h" - #include #include #include #include +#include "listbox.h" + ListBox::ListBox(gcn::ListModel *listModel): gcn::ListBox(listModel) { diff --git a/src/gui/listbox.h b/src/gui/listbox.h index 2f501a6c..30eb4c79 100644 --- a/src/gui/listbox.h +++ b/src/gui/listbox.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: listbox.h 4045 2008-04-07 15:23:07Z b_lindeijer $ */ #ifndef _TMW_LISTBOX_H diff --git a/src/gui/login.cpp b/src/gui/login.cpp index 0cdb4656..fa47af32 100644 --- a/src/gui/login.cpp +++ b/src/gui/login.cpp @@ -17,26 +17,24 @@ * 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 - * - * $Id: login.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ -#include "login.h" - #include #include #include -#include "../main.h" -#include "../logindata.h" -#include "../configuration.h" - #include "button.h" #include "checkbox.h" +#include "login.h" #include "ok_dialog.h" #include "passwordfield.h" #include "textfield.h" + +#include "../main.h" +#include "../logindata.h" +#include "../configuration.h" + #include "../utils/tostring.h" static const int MAX_SERVER_LIST_SIZE = 5; diff --git a/src/gui/login.h b/src/gui/login.h index 3550d82b..3b911424 100644 --- a/src/gui/login.h +++ b/src/gui/login.h @@ -17,24 +17,24 @@ * 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 - * - * $Id: login.h 3234 2007-03-24 13:05:27Z b_lindeijer $ */ #ifndef _TMW_LOGIN_H #define _TMW_LOGIN_H #include -#include #include +#include #include #include +#include "scrollarea.h" #include "window.h" -#include "../guichanfwd.h" + #include "widgets/dropdown.h" -#include "scrollarea.h" + +#include "../guichanfwd.h" class LoginData; diff --git a/src/gui/menuwindow.cpp b/src/gui/menuwindow.cpp index 2d07e632..79281631 100644 --- a/src/gui/menuwindow.cpp +++ b/src/gui/menuwindow.cpp @@ -17,26 +17,23 @@ * 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 - * - * $Id: menuwindow.cpp 4060 2008-04-09 14:49:07Z b_lindeijer $ */ -#include "menuwindow.h" - #include #include #include "button.h" +#include "menuwindow.h" #include "windowcontainer.h" -extern Window *setupWindow; -extern Window *inventoryWindow; +extern Window *chatWindow; extern Window *equipmentWindow; +extern Window *inventoryWindow; +extern Window *itemShortcutWindow; +extern Window *setupWindow; extern Window *skillDialog; extern Window *statusWindow; -extern Window *itemShortcutWindow; -extern Window *chatWindow; namespace { struct MenuWindowListener : public gcn::ActionListener diff --git a/src/gui/menuwindow.h b/src/gui/menuwindow.h index add04095..03ec3380 100644 --- a/src/gui/menuwindow.h +++ b/src/gui/menuwindow.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: menuwindow.h 2417 2006-07-19 15:12:06Z umperio $ */ #ifndef _TMW_MENU_H diff --git a/src/gui/minimap.cpp b/src/gui/minimap.cpp index 8404e52a..728f61e4 100644 --- a/src/gui/minimap.cpp +++ b/src/gui/minimap.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: minimap.cpp 4116 2008-04-17 12:48:43Z peaveydk $ */ #include "minimap.h" diff --git a/src/gui/minimap.h b/src/gui/minimap.h index a3b14729..7897ebdb 100644 --- a/src/gui/minimap.h +++ b/src/gui/minimap.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: minimap.h 2417 2006-07-19 15:12:06Z umperio $ */ #ifndef _TMW_MINIMAP_H diff --git a/src/gui/ministatus.cpp b/src/gui/ministatus.cpp index 1bdabbfe..59dca0e1 100644 --- a/src/gui/ministatus.cpp +++ b/src/gui/ministatus.cpp @@ -17,20 +17,17 @@ * 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 - * - * $Id: ministatus.cpp 3753 2007-11-20 12:27:56Z b_lindeijer $ */ -#include "ministatus.h" - #include #include "gui.h" +#include "ministatus.h" #include "progressbar.h" -#include "../localplayer.h" #include "../configuration.h" #include "../graphics.h" +#include "../localplayer.h" #include "../utils/tostring.h" diff --git a/src/gui/ministatus.h b/src/gui/ministatus.h index d4002d93..d7f6f68c 100644 --- a/src/gui/ministatus.h +++ b/src/gui/ministatus.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: ministatus.h 2581 2006-08-25 22:04:17Z b_lindeijer $ */ #ifndef _TMW_MINISTATUS_H diff --git a/src/gui/newskill.cpp b/src/gui/newskill.cpp deleted file mode 100644 index c2088e75..00000000 --- a/src/gui/newskill.cpp +++ /dev/null @@ -1,195 +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 - * - * $Id: newskill.cpp 3587 2007-09-20 13:24:20Z b_lindeijer $ - */ - - /* This file implements the new skill dialog for use under the latest - * version of the skill system as of 2005/02/20 - */ - -#include "newskill.h" - -#include - -#include "button.h" -#include "progressbar.h" - -#include "../graphics.h" - -const char *skill_name[] = { - // 0-99 - // weapon skills 0-9 - "Short Blades", "Long Blades", "Hammers", "Archery", "Whip", - "Staves", "Throwing", "Piercing", "Hand to Hand", NULL, - // magic skills 10-19 - "Epyri (Fire)", "Merene (Water)", "Geon (Earth)", "Izurial (Air)", - "Lumine (Light)", "Tenebrae (Dark)", "Chronos (Time)", "Teless (Space)", - "Gen (Mana)", NULL, - // craft skills 20-29 - "Metalworking", "Woodworking", "Jeweler", "Cook", "Tailor", - "Alchemist", "Artisan", "Synthesis", NULL, NULL, - // general skills 30-39 - "Running", "Searching", "Sneak", "Trading", "Intimidate", - "Athletics", NULL, NULL, NULL,NULL, - // combat skills 40-49 - "Dodge", "Accuracy", "Critical", "Block", "Parry", "Diehard", "Magic Aura", - "Counter", NULL, NULL, - // resistance skills 50-59 - "Poison", "Silence", "Petrify", "Paralyze", "Blind", "Slow", "Zombie", - "Critical", NULL, NULL, - // element reistance 60-69 - "Heat (Fire)", "Chill (Water)", "Stone (Earth)", "Wind (Air)", - "Shine (Light)", "Shadow (Dark)", "Decay (Time)", "Chaos (Space)", NULL, - NULL, - // hunting skills 70-79 - "Insects", "Birds", "Lizards", "Amorphs", "Undead", "Machines", "Arcana", - "Humanoids", "Plantoids", NULL, - // stats 80-89 - "Strength", "Fortitude", "Vitality", "Menality", "Awareness", "Mana", - "Dexterity", NULL, NULL, NULL, - // unused (reserved) 90-99 - NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL -}; - - -NewSkillDialog::NewSkillDialog(): - Window("Skills") -{ - startPoint = 0; - for (int i = 0; i < N_SKILL_CAT_SIZE; i++) - { - mSkillLabel[i] = new gcn::Label("Empty "); - mSkillLevel[i] = new gcn::Label("00000"); - mSkillbar[i] = new ProgressBar(0.0f,100,15,0,0,255); - mSkillLevel[i]->setAlignment(Graphics::RIGHT); - add(mSkillLabel[i],40,5+i*25); - add(mSkillLevel[i],150,5+i*25); - add(mSkillbar[i],180,5+i*25); - } - // initialize the skills - for (int i = 0; i < N_SKILL; i++) - { - mPlayerSkill[i].level = 0; - mPlayerSkill[i].exp = 0; - } - resetNSD(); - - // create controls - Button *catButton[N_SKILL_CAT]; - catButton[0] = new Button("Weapons", "g1", this); - catButton[1] = new Button("Magic", "g2", this); - catButton[2] = new Button("Craft", "g3", this); - catButton[3] = new Button("General", "g4", this); - catButton[4] = new Button("Combat", "g5", this); - catButton[5] = new Button("E. Resist", "g6", this); - catButton[6] = new Button("S. Resist", "g7", this); - catButton[7] = new Button("Hunting", "g8", this); - catButton[8] = new Button("Stat", "g9", this); - - setContentSize(350, 250); - - for (int i = 0; i < 9; ++i) { - catButton[i]->setDimension(gcn::Rectangle(0, 0, 60, 20)); - catButton[i]->setPosition(290, 20 * i); - add(catButton[i]); - } - - Button *closeButton = new Button("Close", "close", this); - closeButton->setDimension(gcn::Rectangle(0,0,60,20)); - closeButton->setPosition(290, 230); - add(closeButton); - - // finsihing touches - setLocationRelativeTo(getParent()); -} - -void NewSkillDialog::action(const gcn::ActionEvent &event) -{ - int osp = startPoint; - if (event.getId() == "close") - { - setVisible(false); - } - else if (event.getId() == "g1") // weapons group 0-9 - { - startPoint =0; - } - else if (event.getId() == "g2") // magic group 10-19 - { - startPoint =10; - } - else if (event.getId() == "g3") // craft group 20-29 - { - startPoint =20; - } - else if (event.getId() == "g4") // general group 30-39 - { - startPoint =30; - } - else if (event.getId() == "g5") // combat group 40-49 - { - startPoint =40; - } - else if (event.getId() == "g6") // e. resist group 50-59 - { - startPoint =50; - } - else if (event.getId() == "g7") // s resist group 60-69 - { - startPoint =60; - } - else if (event.getId() == "g8") // hunting group 70-79 - { - startPoint =70; - } - else if (event.getId() == "g9") // stats group 80-89 - { - startPoint =80; - } - if (osp != startPoint) - { - resetNSD(); - } -} - -void NewSkillDialog::resetNSD() -{ - for (int a = 0; a < N_SKILL_CAT_SIZE; a++) - { - if (skill_name[a + startPoint]) - { - mSkillLabel[a]->setCaption(skill_name[a + startPoint]); - mSkillLabel[a]->setVisible(true); - char tmp[5]; - sprintf(tmp, "%d", mPlayerSkill[a+startPoint].level); - mSkillLevel[a]->setCaption(tmp); - mSkillLevel[a]->setVisible(true); - mSkillbar[a]->setProgress(0.0f); - mSkillbar[a]->setVisible(true); - } - else - { - mSkillLevel[a]->setVisible(false); - mSkillLabel[a]->setVisible(false); - mSkillbar[a]->setVisible(false); - } - } -} diff --git a/src/gui/newskill.h b/src/gui/newskill.h deleted file mode 100644 index c553ab1d..00000000 --- a/src/gui/newskill.h +++ /dev/null @@ -1,71 +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 - * - * $Id: newskill.h 3035 2007-01-14 14:54:39Z b_lindeijer $ - */ - -#ifndef _TMW_NSKILL_H -#define _TMW_NSKILL_H - -#include - -#include "window.h" - -#include "../guichanfwd.h" - -class ProgressBar; - -#define N_SKILL 100 // skill count constant -#define N_SKILL_CAT 9 // skill category count -#define N_SKILL_CAT_SIZE 10 // skill category maximum size - -struct nSkill { - short level; - short exp; -}; - -/** - * Dialog showing the skills in the planned skill model. - * - * \ingroup Interface - */ -class NewSkillDialog : public Window, public gcn::ActionListener -{ - public: - /** - * Constructor. - */ - NewSkillDialog(); - - // action listener - void action(const gcn::ActionEvent &event); - - private: - void resetNSD(); // updates the values in the dialog box - - // members - int startPoint; // starting point of skill listing - ProgressBar *mSkillbar[N_SKILL_CAT_SIZE]; - gcn::Label *mSkillLabel[N_SKILL_CAT_SIZE]; - gcn::Label *mSkillLevel[N_SKILL_CAT_SIZE]; - nSkill mPlayerSkill[N_SKILL]; // pointer to an array of skill values -}; - -#endif diff --git a/src/gui/npc_text.cpp b/src/gui/npc_text.cpp index d74b3ddd..052b5f33 100644 --- a/src/gui/npc_text.cpp +++ b/src/gui/npc_text.cpp @@ -17,14 +17,11 @@ * 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 - * - * $Id: npc_text.cpp 4096 2008-04-16 08:39:59Z b_lindeijer $ */ -#include "npc_text.h" - #include +#include "npc_text.h" #include "textbox.h" #include "../npc.h" diff --git a/src/gui/npc_text.h b/src/gui/npc_text.h index 3773950a..e26dd870 100644 --- a/src/gui/npc_text.h +++ b/src/gui/npc_text.h @@ -17,18 +17,17 @@ * 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 - * - * $Id: npc_text.h 4096 2008-04-16 08:39:59Z b_lindeijer $ */ #ifndef _TMW_NPC_TEXT_H #define _TMW_NPC_TEXT_H #include + #include -#include "scrollarea.h" #include "button.h" +#include "scrollarea.h" #include "window.h" #include "../guichanfwd.h" diff --git a/src/gui/npclistdialog.cpp b/src/gui/npclistdialog.cpp index 3203ba84..ba9e3d58 100644 --- a/src/gui/npclistdialog.cpp +++ b/src/gui/npclistdialog.cpp @@ -17,15 +17,12 @@ * 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 - * - * $Id: npclistdialog.cpp 3035 2007-01-14 14:54:39Z b_lindeijer $ */ -#include "npclistdialog.h" - #include #include "listbox.h" +#include "npclistdialog.h" #include "../npc.h" diff --git a/src/gui/npclistdialog.h b/src/gui/npclistdialog.h index 4e9d4b3b..77f0c177 100644 --- a/src/gui/npclistdialog.h +++ b/src/gui/npclistdialog.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: npclistdialog.h 3035 2007-01-14 14:54:39Z b_lindeijer $ */ #ifndef _TMW_GUI_NPCLISTDIALOG_H diff --git a/src/gui/ok_dialog.cpp b/src/gui/ok_dialog.cpp index b8d3c7ba..421c873e 100644 --- a/src/gui/ok_dialog.cpp +++ b/src/gui/ok_dialog.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: ok_dialog.cpp 3035 2007-01-14 14:54:39Z b_lindeijer $ */ #include "ok_dialog.h" diff --git a/src/gui/ok_dialog.h b/src/gui/ok_dialog.h index 426da538..a06ddd7c 100644 --- a/src/gui/ok_dialog.h +++ b/src/gui/ok_dialog.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: ok_dialog.h 3035 2007-01-14 14:54:39Z b_lindeijer $ */ #ifndef _OK_DIALOG_H diff --git a/src/gui/passwordfield.cpp b/src/gui/passwordfield.cpp index 710eb767..01c7e15d 100644 --- a/src/gui/passwordfield.cpp +++ b/src/gui/passwordfield.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: passwordfield.cpp 2132 2006-02-01 14:53:10Z der_doener $ */ #include "passwordfield.h" diff --git a/src/gui/passwordfield.h b/src/gui/passwordfield.h index 8228bfe2..9aa6ab49 100644 --- a/src/gui/passwordfield.h +++ b/src/gui/passwordfield.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: passwordfield.h 2895 2006-12-09 01:44:18Z b_lindeijer $ */ #ifndef _TMW_PASSWORDFIELD_H_ diff --git a/src/gui/playerbox.cpp b/src/gui/playerbox.cpp index 6d39ce05..79c5676f 100644 --- a/src/gui/playerbox.cpp +++ b/src/gui/playerbox.cpp @@ -17,16 +17,14 @@ * 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 - * - * $Id: playerbox.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ #include #include "playerbox.h" -#include "../player.h" #include "../graphics.h" +#include "../player.h" #include "../resources/image.h" #include "../resources/resourcemanager.h" diff --git a/src/gui/playerbox.h b/src/gui/playerbox.h index 86cdf064..7aec87bf 100644 --- a/src/gui/playerbox.h +++ b/src/gui/playerbox.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: playerbox.h 4045 2008-04-07 15:23:07Z b_lindeijer $ */ #ifndef __TMW_PLAYERBOX_H__ diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp index 7e40abed..c0feb68d 100644 --- a/src/gui/popupmenu.cpp +++ b/src/gui/popupmenu.cpp @@ -17,12 +17,8 @@ * 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 - * - * $Id: popupmenu.cpp 4243 2008-05-16 15:48:52Z the_enemy $ */ -#include "popupmenu.h" - #include #include @@ -31,6 +27,7 @@ #include "browserbox.h" #include "inventorywindow.h" #include "item_amount.h" +#include "popupmenu.h" #include "windowcontainer.h" #include "../being.h" @@ -43,8 +40,8 @@ #include "../net/messageout.h" #include "../net/protocol.h" -#include "../resources/iteminfo.h" #include "../resources/itemdb.h" +#include "../resources/iteminfo.h" extern std::string tradePartnerName; diff --git a/src/gui/popupmenu.h b/src/gui/popupmenu.h index 601fa2ae..3cf949b3 100644 --- a/src/gui/popupmenu.h +++ b/src/gui/popupmenu.h @@ -17,22 +17,19 @@ * 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 - * - * $Id: popupmenu.h 2239 2006-03-09 05:16:27Z der_doener $ */ #ifndef _TMW_POPUP_MENU_H #define _TMW_POPUP_MENU_H -#include "window.h" #include "linkhandler.h" +#include "window.h" class Being; class BrowserBox; class FloorItem; class Item; - /** * Window showing popup menu. */ diff --git a/src/gui/progressbar.cpp b/src/gui/progressbar.cpp index 6dbc3b85..708a2991 100644 --- a/src/gui/progressbar.cpp +++ b/src/gui/progressbar.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: progressbar.cpp 4008 2008-03-27 14:51:10Z b_lindeijer $ */ #include "progressbar.h" diff --git a/src/gui/progressbar.h b/src/gui/progressbar.h index df825a5d..a20c901f 100644 --- a/src/gui/progressbar.h +++ b/src/gui/progressbar.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: progressbar.h 2240 2006-03-09 12:24:36Z der_doener $ */ #ifndef _TMW_PROGRESSBAR_H @@ -32,7 +30,6 @@ class ImageRect; - /** * A progress bar. * diff --git a/src/gui/radiobutton.cpp b/src/gui/radiobutton.cpp index cbab4d2d..5f929e62 100644 --- a/src/gui/radiobutton.cpp +++ b/src/gui/radiobutton.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: radiobutton.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ #include "radiobutton.h" diff --git a/src/gui/radiobutton.h b/src/gui/radiobutton.h index ef87dccd..8fb6d832 100644 --- a/src/gui/radiobutton.h +++ b/src/gui/radiobutton.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: radiobutton.h 1584 2005-08-13 12:49:52Z der_doener $ */ #ifndef _TMW_RADIOBUTTON_H diff --git a/src/gui/register.cpp b/src/gui/register.cpp index e0b663b8..ec6a9756 100644 --- a/src/gui/register.cpp +++ b/src/gui/register.cpp @@ -17,12 +17,8 @@ * 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 - * - * $Id: register.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ -#include "register.h" - #include #include @@ -36,10 +32,11 @@ #include "button.h" #include "checkbox.h" #include "login.h" +#include "ok_dialog.h" #include "passwordfield.h" #include "radiobutton.h" +#include "register.h" #include "textfield.h" -#include "ok_dialog.h" #include "../utils/tostring.h" diff --git a/src/gui/register.h b/src/gui/register.h index 6f997b75..87a11bb9 100644 --- a/src/gui/register.h +++ b/src/gui/register.h @@ -17,18 +17,18 @@ * 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 - * - * $Id: register.h 3234 2007-03-24 13:05:27Z b_lindeijer $ */ #ifndef _TMW_REGISTER_H #define _TMW_REGISTER_H #include + #include #include #include "window.h" + #include "../guichanfwd.h" class LoginData; diff --git a/src/gui/scrollarea.cpp b/src/gui/scrollarea.cpp index a3aef702..032e3f78 100644 --- a/src/gui/scrollarea.cpp +++ b/src/gui/scrollarea.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: scrollarea.cpp 4204 2008-04-28 18:29:04Z b_lindeijer $ */ #include diff --git a/src/gui/scrollarea.h b/src/gui/scrollarea.h index 32a192fc..ebe2c77b 100644 --- a/src/gui/scrollarea.h +++ b/src/gui/scrollarea.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: scrollarea.h 4204 2008-04-28 18:29:04Z b_lindeijer $ */ #ifndef __TMW_SCROLLAREA_H__ diff --git a/src/gui/sell.cpp b/src/gui/sell.cpp index 9fed52f3..63af1aaa 100644 --- a/src/gui/sell.cpp +++ b/src/gui/sell.cpp @@ -17,12 +17,8 @@ * 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 - * - * $Id: sell.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ -#include "sell.h" - #include #include @@ -30,17 +26,18 @@ #include "button.h" #include "shoplistbox.h" #include "scrollarea.h" +#include "sell.h" #include "shop.h" #include "slider.h" #include "../item.h" #include "../npc.h" -#include "../resources/iteminfo.h" - #include "../net/messageout.h" #include "../net/protocol.h" +#include "../resources/iteminfo.h" + #include "../utils/tostring.h" SellDialog::SellDialog(Network *network): diff --git a/src/gui/sell.h b/src/gui/sell.h index 11528f89..48961efc 100644 --- a/src/gui/sell.h +++ b/src/gui/sell.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: sell.h 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #ifndef _TMW_SELL_H diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp index 4faa8a86..b8fdb7de 100644 --- a/src/gui/setup.cpp +++ b/src/gui/setup.cpp @@ -17,33 +17,30 @@ * 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 - * - * $Id: setup.cpp 4306 2008-05-28 20:22:37Z crush_tmw $ */ #include - -#include "setup.h" +#include #include "button.h" +#include "setup.h" #include "setup_audio.h" +#include "setup_colours.h" #include "setup_joystick.h" -#include "setup_video.h" #include "setup_keyboard.h" #include "setup_players.h" -#include "setup_colours.h" +#include "setup_video.h" #include "tabbedcontainer.h" #include "../utils/dtor.h" -#include -extern Window *statusWindow; -extern Window *minimap; extern Window *chatWindow; -extern Window *inventoryWindow; extern Window *equipmentWindow; extern Window *helpWindow; +extern Window *inventoryWindow; +extern Window *minimap; extern Window *skillDialog; +extern Window *statusWindow; Setup::Setup(): Window("Setup") diff --git a/src/gui/setup.h b/src/gui/setup.h index c24b8cb9..fd200f4c 100644 --- a/src/gui/setup.h +++ b/src/gui/setup.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: setup.h 4237 2008-05-14 18:57:32Z b_lindeijer $ */ #ifndef _TMW_SETUP_H diff --git a/src/gui/setup_audio.cpp b/src/gui/setup_audio.cpp index 09357cce..70b34a31 100644 --- a/src/gui/setup_audio.cpp +++ b/src/gui/setup_audio.cpp @@ -17,16 +17,13 @@ * 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 - * - * $Id: setup_audio.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ -#include "setup_audio.h" - #include #include "checkbox.h" #include "ok_dialog.h" +#include "setup_audio.h" #include "slider.h" #include "../configuration.h" diff --git a/src/gui/setup_audio.h b/src/gui/setup_audio.h index 76420101..9835a8fb 100644 --- a/src/gui/setup_audio.h +++ b/src/gui/setup_audio.h @@ -17,17 +17,15 @@ * 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 - * - * $Id: setup_audio.h 3035 2007-01-14 14:54:39Z b_lindeijer $ */ #ifndef _TMW_GUI_SETUP_AUDIO_H #define _TMW_GUI_SETUP_AUDIO_H -#include "setuptab.h" - #include +#include "setuptab.h" + #include "../guichanfwd.h" class Setup_Audio : public SetupTab, public gcn::ActionListener diff --git a/src/gui/setup_colours.cpp b/src/gui/setup_colours.cpp index 2c6d7aa9..0becd48f 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 "setup_colours.h" - #include #include @@ -29,6 +27,7 @@ #include "colour.h" #include "scrollarea.h" +#include "setup_colours.h" #include "slider.h" #include "../configuration.h" diff --git a/src/gui/setup_colours.h b/src/gui/setup_colours.h index 566bed37..3bd87848 100644 --- a/src/gui/setup_colours.h +++ b/src/gui/setup_colours.h @@ -22,17 +22,17 @@ #ifndef _SETUP_COLOURS_H #define _SETUP_COLOURS_H -#include #include +#include #include -#include #include +#include +#include "scrollarea.h" #include "setuptab.h" #include "slider.h" #include "textfield.h" -#include "scrollarea.h" #include "../guichanfwd.h" diff --git a/src/gui/setup_joystick.cpp b/src/gui/setup_joystick.cpp index 41e91595..723d0597 100644 --- a/src/gui/setup_joystick.cpp +++ b/src/gui/setup_joystick.cpp @@ -17,16 +17,14 @@ * 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 - * - * $Id: setup_joystick.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ -#include "setup_joystick.h" - #include #include "button.h" #include "checkbox.h" +#include "setup_joystick.h" + #include "../configuration.h" #include "../joystick.h" diff --git a/src/gui/setup_joystick.h b/src/gui/setup_joystick.h index 399156d8..d2973a89 100644 --- a/src/gui/setup_joystick.h +++ b/src/gui/setup_joystick.h @@ -17,17 +17,15 @@ * 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 - * - * $Id: setup_joystick.h 3035 2007-01-14 14:54:39Z b_lindeijer $ */ #ifndef _TMW_GUI_SETUP_JOYSTICK_H #define _TMW_GUI_SETUP_JOYSTICK_H -#include "setuptab.h" - #include +#include "setuptab.h" + #include "../guichanfwd.h" class Setup_Joystick : public SetupTab, public gcn::ActionListener diff --git a/src/gui/setup_keyboard.cpp b/src/gui/setup_keyboard.cpp index 704fc691..007fcb52 100644 --- a/src/gui/setup_keyboard.cpp +++ b/src/gui/setup_keyboard.cpp @@ -17,11 +17,9 @@ * 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 - * - * $Id: setup_keyboard.cpp 4255 2008-05-21 21:44:27Z crush_tmw $ */ -#include "setup_keyboard.h" +#include #include #include @@ -30,14 +28,13 @@ #include "listbox.h" #include "ok_dialog.h" #include "scrollarea.h" +#include "setup_keyboard.h" #include "../configuration.h" #include "../keyboardconfig.h" #include "../utils/tostring.h" -#include - /** * The list model for key function list. * diff --git a/src/gui/setup_keyboard.h b/src/gui/setup_keyboard.h index 7f945181..937790af 100644 --- a/src/gui/setup_keyboard.h +++ b/src/gui/setup_keyboard.h @@ -17,21 +17,19 @@ * 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 - * - * $Id: setup_keyboard.h 4255 2008-05-21 21:44:27Z crush_tmw $ */ #ifndef _TMW_GUI_SETUP_KEYBOARD_H #define _TMW_GUI_SETUP_KEYBOARD_H -#include "setuptab.h" -#include "button.h" -#include "../guichanfwd.h" +#include #include +#include "button.h" +#include "setuptab.h" -#include +#include "../guichanfwd.h" class Setup_Keyboard : public SetupTab, public gcn::ActionListener { diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index ed1facc7..d07a9685 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -17,23 +17,21 @@ * 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 - * - * $Id: setup_players.cpp 4353 2008-06-16 07:04:46Z b_lindeijer $ */ -#include "setup_players.h" - #include + #include #include #include "button.h" #include "checkbox.h" #include "ok_dialog.h" +#include "setup_players.h" -#include "../player_relations.h" #include "../configuration.h" #include "../log.h" +#include "../player_relations.h" #include "../sound.h" #define COLUMNS_NR 2 // name plus listbox diff --git a/src/gui/setup_players.h b/src/gui/setup_players.h index b04023ab..b693a952 100644 --- a/src/gui/setup_players.h +++ b/src/gui/setup_players.h @@ -22,15 +22,14 @@ #ifndef _TMW_GUI_SETUP_PLAYERS_H #define _TMW_GUI_SETUP_PLAYERS_H -#include "setuptab.h" +#include -#include "scrollarea.h" #include "button.h" +#include "scrollarea.h" +#include "setuptab.h" #include "table.h" -#include #include "../guichanfwd.h" - #include "../player_relations.h" class PlayerTableModel; diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index 879a3066..ec5b1d0a 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -17,15 +17,11 @@ * 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 - * - * $Id: setup_video.cpp 4338 2008-06-05 18:41:39Z crush_tmw $ */ -#include "setup_video.h" - +#include #include #include -#include #include #include @@ -36,6 +32,7 @@ #include "listbox.h" #include "ok_dialog.h" #include "scrollarea.h" +#include "setup_video.h" #include "slider.h" #include "textfield.h" diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h index d0a19cb6..4103c5ef 100644 --- a/src/gui/setup_video.h +++ b/src/gui/setup_video.h @@ -17,18 +17,16 @@ * 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 - * - * $Id: setup_video.h 4306 2008-05-28 20:22:37Z crush_tmw $ */ #ifndef _TMW_GUI_SETUP_VIDEO_H #define _TMW_GUI_SETUP_VIDEO_H -#include "setuptab.h" - #include #include +#include "setuptab.h" + #include "../guichanfwd.h" class Setup_Video : public SetupTab, public gcn::ActionListener, diff --git a/src/gui/setuptab.h b/src/gui/setuptab.h index bbfe4fac..6c276c35 100644 --- a/src/gui/setuptab.h +++ b/src/gui/setuptab.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: setuptab.h 2273 2006-03-19 00:48:10Z der_doener $ */ #ifndef _TMW_GUI_SETUPTAB_H diff --git a/src/gui/shop.cpp b/src/gui/shop.cpp index e7619547..a4478a62 100644 --- a/src/gui/shop.cpp +++ b/src/gui/shop.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: shop.cpp 4348 2008-06-14 12:42:49Z the_enemy $ */ #include "shop.h" diff --git a/src/gui/shop.h b/src/gui/shop.h index 8dfda67e..97b8d173 100644 --- a/src/gui/shop.h +++ b/src/gui/shop.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: shop.h 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #ifndef _SHOP_H @@ -29,10 +27,10 @@ #include -#include "../resources/image.h" - -#include "../shopitem.h" #include "../guichanfwd.h" +#include "../shopitem.h" + +#include "../resources/image.h" class ShopItems : public gcn::ListModel { diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp index 7a8b52ed..e31eee58 100644 --- a/src/gui/shoplistbox.cpp +++ b/src/gui/shoplistbox.cpp @@ -17,18 +17,16 @@ * 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 - * - * $Id: listbox.cpp 2655 2006-09-03 21:25:02Z b_lindeijer $ */ -#include "shoplistbox.h" - +#include #include #include +#include #include #include -#include -#include + +#include "shoplistbox.h" #include "../graphics.h" diff --git a/src/gui/shoplistbox.h b/src/gui/shoplistbox.h index 5840e47f..e856c076 100644 --- a/src/gui/shoplistbox.h +++ b/src/gui/shoplistbox.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: listbox.h 2655 2006-09-03 21:25:02Z b_lindeijer $ */ #ifndef _TMW_SHOPLISTBOX_H diff --git a/src/gui/skill.cpp b/src/gui/skill.cpp index 5a23e2a8..36c3a305 100644 --- a/src/gui/skill.cpp +++ b/src/gui/skill.cpp @@ -17,25 +17,22 @@ * 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 - * - * $Id$ */ #include #include -#include "skill.h" - #include "button.h" #include "listbox.h" +#include "skill.h" #include "windowcontainer.h" #include "../localplayer.h" +#include "../log.h" #include "../utils/dtor.h" #include "../utils/xml.h" -#include "../log.h" #define SKILLS_FILE "skills.xml" diff --git a/src/gui/skill.h b/src/gui/skill.h index 92badc8a..ee579dd5 100644 --- a/src/gui/skill.h +++ b/src/gui/skill.h @@ -17,8 +17,6 @@ * 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 - * - * $Id$ */ #ifndef _TMW_SKILL_H diff --git a/src/gui/slider.cpp b/src/gui/slider.cpp index a1ae6acc..afeecf17 100644 --- a/src/gui/slider.cpp +++ b/src/gui/slider.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: slider.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ #include "slider.h" diff --git a/src/gui/slider.h b/src/gui/slider.h index 5700d64d..36bfe698 100644 --- a/src/gui/slider.h +++ b/src/gui/slider.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: slider.h 1584 2005-08-13 12:49:52Z der_doener $ */ #ifndef _TMW_SLIDER_H @@ -30,7 +28,6 @@ class Image; - /** * Slider widget. Same as the Guichan slider but with custom look. * diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp index 0ccbebc0..2ab80bd9 100644 --- a/src/gui/speechbubble.cpp +++ b/src/gui/speechbubble.cpp @@ -18,8 +18,6 @@ * You should have received a copy of the GNU General Public License * along with The Legend of Mazzeroth; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * $Id$ */ #include diff --git a/src/gui/speechbubble.h b/src/gui/speechbubble.h index 7a2a73b8..9b8eab70 100644 --- a/src/gui/speechbubble.h +++ b/src/gui/speechbubble.h @@ -18,15 +18,13 @@ * You should have received a copy of the GNU General Public License * along with The Legend of Mazzeroth; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * $Id$ */ #ifndef _LOM_SPEECHBUBBLE_H__ #define _LOM_SPEECHBUBBLE_H__ -#include "textbox.h" #include "scrollarea.h" +#include "textbox.h" #include "window.h" class SpeechBubble : public Window diff --git a/src/gui/status.cpp b/src/gui/status.cpp index 79b3aec7..9d6760d0 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -17,16 +17,13 @@ * 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 - * - * $Id: status.cpp 3510 2007-08-23 14:14:51Z b_lindeijer $ */ -#include "status.h" - #include #include "button.h" #include "progressbar.h" +#include "status.h" #include "windowcontainer.h" #include "../localplayer.h" diff --git a/src/gui/status.h b/src/gui/status.h index 4d082148..55ed393e 100644 --- a/src/gui/status.h +++ b/src/gui/status.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: status.h 3538 2007-08-28 00:01:38Z b_lindeijer $ */ #ifndef _TMW_STATUS_H diff --git a/src/gui/tabbedcontainer.cpp b/src/gui/tabbedcontainer.cpp index fc3efbd5..8e95aa7c 100644 --- a/src/gui/tabbedcontainer.cpp +++ b/src/gui/tabbedcontainer.cpp @@ -17,18 +17,15 @@ * 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 - * - * $Id: tabbedcontainer.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ #include -#include "tabbedcontainer.h" - #include "button.h" +#include "tabbedcontainer.h" -#include "../utils/tostring.h" #include "../utils/dtor.h" +#include "../utils/tostring.h" TabbedContainer::TabbedContainer(int width, int padX, int buttonHeight, int height, int padY, int buttonsPerRow): diff --git a/src/gui/tabbedcontainer.h b/src/gui/tabbedcontainer.h index b004edc2..2fc41247 100644 --- a/src/gui/tabbedcontainer.h +++ b/src/gui/tabbedcontainer.h @@ -17,16 +17,14 @@ * 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 - * - * $Id: tabbedcontainer.h 3152 2007-02-27 16:31:34Z crush_tmw $ */ #ifndef _TMW_TABPANE_H #define _TMW_TABPANE_H #include -#include #include +#include #include diff --git a/src/gui/table.cpp b/src/gui/table.cpp index 8d2ab86a..e4d7812e 100644 --- a/src/gui/table.cpp +++ b/src/gui/table.cpp @@ -19,12 +19,12 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include -#include -#include "table.h" #include +#include +#include +#include "table.h" class GuiTableActionListener : public gcn::ActionListener { diff --git a/src/gui/table.h b/src/gui/table.h index cef82d5d..b4c607ae 100644 --- a/src/gui/table.h +++ b/src/gui/table.h @@ -31,6 +31,7 @@ #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 57da29d9..e1afef96 100644 --- a/src/gui/table_model.cpp +++ b/src/gui/table_model.cpp @@ -19,8 +19,10 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include #include + +#include + #include "table_model.h" void diff --git a/src/gui/table_model.h b/src/gui/table_model.h index 69e41cd3..4022e369 100644 --- a/src/gui/table_model.h +++ b/src/gui/table_model.h @@ -22,9 +22,11 @@ #ifndef TMW_TABLE_MODEL_H_ #define TMW_TABLE_MODEL_H_ -#include #include #include + +#include + #include "../guichanfwd.h" class TableModelListener diff --git a/src/gui/textbox.cpp b/src/gui/textbox.cpp index 2a496a1f..d7b589fa 100644 --- a/src/gui/textbox.cpp +++ b/src/gui/textbox.cpp @@ -17,17 +17,15 @@ * 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 - * - * $Id: textbox.cpp 4096 2008-04-16 08:39:59Z b_lindeijer $ */ -#include "textbox.h" - #include #include #include +#include "textbox.h" + TextBox::TextBox(): gcn::TextBox() { diff --git a/src/gui/textbox.h b/src/gui/textbox.h index 6f4db7dd..a0f0f947 100644 --- a/src/gui/textbox.h +++ b/src/gui/textbox.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: textbox.h 4096 2008-04-16 08:39:59Z b_lindeijer $ */ #ifndef __TMW_TEXTBOX_H__ diff --git a/src/gui/textfield.cpp b/src/gui/textfield.cpp index b128701b..bd016a8d 100644 --- a/src/gui/textfield.cpp +++ b/src/gui/textfield.cpp @@ -17,13 +17,12 @@ * 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 - * - * $Id: textfield.cpp 4045 2008-04-07 15:23:07Z b_lindeijer $ */ #include #include + #include #include "textfield.h" diff --git a/src/gui/textfield.h b/src/gui/textfield.h index 60766676..6def784d 100644 --- a/src/gui/textfield.h +++ b/src/gui/textfield.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: textfield.h 4045 2008-04-07 15:23:07Z b_lindeijer $ */ #ifndef __TMW_TEXTFIELD_H__ diff --git a/src/gui/trade.cpp b/src/gui/trade.cpp index 2831fc46..8c02ab01 100644 --- a/src/gui/trade.cpp +++ b/src/gui/trade.cpp @@ -17,12 +17,8 @@ * 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 - * - * $Id $ */ -#include "trade.h" - #include #include @@ -34,6 +30,7 @@ #include "itemcontainer.h" #include "scrollarea.h" #include "textfield.h" +#include "trade.h" #include "../inventory.h" #include "../item.h" diff --git a/src/gui/trade.h b/src/gui/trade.h index 7adf9575..5d587991 100644 --- a/src/gui/trade.h +++ b/src/gui/trade.h @@ -17,8 +17,6 @@ * 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 - * - * $Id $ */ #ifndef _TMW_TRADE_H diff --git a/src/gui/updatewindow.cpp b/src/gui/updatewindow.cpp index 5e9baa32..64f02f54 100644 --- a/src/gui/updatewindow.cpp +++ b/src/gui/updatewindow.cpp @@ -17,12 +17,8 @@ * 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 - * - * $Id: updatewindow.cpp 4332 2008-06-05 07:33:12Z b_lindeijer $ */ -#include "updatewindow.h" - #include #include #include @@ -34,6 +30,7 @@ #include "button.h" #include "progressbar.h" #include "scrollarea.h" +#include "updatewindow.h" // Curl should be included after Guichan to avoid Windows redefinitions #include @@ -42,10 +39,10 @@ #include "../log.h" #include "../main.h" -#include "../utils/tostring.h" - #include "../resources/resourcemanager.h" +#include "../utils/tostring.h" + /** * Calculates the Alder-32 checksum for the given file. */ diff --git a/src/gui/updatewindow.h b/src/gui/updatewindow.h index b669f829..4c302e85 100644 --- a/src/gui/updatewindow.h +++ b/src/gui/updatewindow.h @@ -17,14 +17,13 @@ * 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 - * - * $Id: updatewindow.h 4332 2008-06-05 07:33:12Z b_lindeijer $ */ #ifndef _UPDATERWINDOW_H #define _UPDATERWINDOW_H #include + #include #include diff --git a/src/gui/vbox.cpp b/src/gui/vbox.cpp index 6f36dc9c..2ec1112d 100644 --- a/src/gui/vbox.cpp +++ b/src/gui/vbox.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: vbox.cpp 3587 2007-09-20 13:24:20Z b_lindeijer $ */ #include "vbox.h" diff --git a/src/gui/vbox.h b/src/gui/vbox.h index fd029143..4538338f 100644 --- a/src/gui/vbox.h +++ b/src/gui/vbox.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: vbox.h 1881 2005-10-18 21:40:25Z der_doener $ */ #ifndef VBOX_H diff --git a/src/gui/viewport.cpp b/src/gui/viewport.cpp index 6f89f639..3f0f546e 100644 --- a/src/gui/viewport.cpp +++ b/src/gui/viewport.cpp @@ -17,16 +17,15 @@ * 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 - * - * $Id: viewport.cpp 4098 2008-04-16 11:36:41Z b_lindeijer $ */ -#include "viewport.h" +#include #include #include "gui.h" #include "popupmenu.h" +#include "viewport.h" #include "../beingmanager.h" #include "../configuration.h" @@ -40,15 +39,13 @@ #include "../textmanager.h" #include "../resources/animation.h" -#include "../resources/monsterinfo.h" -#include "../resources/resourcemanager.h" #include "../resources/image.h" #include "../resources/imageset.h" +#include "../resources/monsterinfo.h" +#include "../resources/resourcemanager.h" #include "../utils/tostring.h" -#include - extern volatile int tick_time; Viewport::Viewport(): diff --git a/src/gui/viewport.h b/src/gui/viewport.h index c7b3c0e7..3120de91 100644 --- a/src/gui/viewport.h +++ b/src/gui/viewport.h @@ -17,8 +17,6 @@ * 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 - * - * $Id$ */ #ifndef _TMW_VIEWPORT_H_ @@ -28,8 +26,8 @@ #include "windowcontainer.h" -#include "../configlistener.h" #include "../being.h" +#include "../configlistener.h" #include "../guichanfwd.h" class Map; diff --git a/src/gui/widgets/dropdown.cpp b/src/gui/widgets/dropdown.cpp index 9bf7452d..88a12d68 100644 --- a/src/gui/widgets/dropdown.cpp +++ b/src/gui/widgets/dropdown.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id$ */ #include diff --git a/src/gui/widgets/dropdown.h b/src/gui/widgets/dropdown.h index 9f6491b7..25ae05f8 100644 --- a/src/gui/widgets/dropdown.h +++ b/src/gui/widgets/dropdown.h @@ -17,8 +17,6 @@ * 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 - * - * $Id$ */ #ifndef DROPDOWN_H @@ -27,8 +25,10 @@ #include #include -#include "../scrollarea.h" + #include "../listbox.h" +#include "../scrollarea.h" + #include "../../guichanfwd.h" class Image; diff --git a/src/gui/widgets/resizegrip.cpp b/src/gui/widgets/resizegrip.cpp index e13493bb..e8b50dc9 100644 --- a/src/gui/widgets/resizegrip.cpp +++ b/src/gui/widgets/resizegrip.cpp @@ -17,14 +17,12 @@ * 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 - * - * $Id: resizegrip.cpp 3587 2007-09-20 13:24:20Z b_lindeijer $ */ -#include "resizegrip.h" - #include +#include "resizegrip.h" + #include "../../graphics.h" #include "../../resources/image.h" diff --git a/src/gui/widgets/resizegrip.h b/src/gui/widgets/resizegrip.h index 03a9228f..5f3a09a4 100644 --- a/src/gui/widgets/resizegrip.h +++ b/src/gui/widgets/resizegrip.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: resizegrip.h 3270 2007-04-15 01:22:17Z b_lindeijer $ */ #ifndef _TMW_RESIZEGRIP_H diff --git a/src/gui/window.cpp b/src/gui/window.cpp index 1a6f1ac6..4ace032b 100644 --- a/src/gui/window.cpp +++ b/src/gui/window.cpp @@ -17,21 +17,19 @@ * 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 - * - * $Id$ */ #include -#include #include +#include #include -#include -#include "window.h" +#include #include "gui.h" #include "gccontainer.h" +#include "window.h" #include "windowcontainer.h" #include "widgets/resizegrip.h" diff --git a/src/gui/window.h b/src/gui/window.h index 228cc37b..3bb41a95 100644 --- a/src/gui/window.h +++ b/src/gui/window.h @@ -17,24 +17,23 @@ * 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 - * - * $Id$ */ #ifndef _TMW_WINDOW_H__ #define _TMW_WINDOW_H__ -#include #include +#include + #include "../guichanfwd.h" class ConfigListener; class GCContainer; +class Image; class ImageRect; class ResizeGrip; class WindowContainer; -class Image; /** * A window. This window can be dragged around and has a title bar. Windows are diff --git a/src/gui/windowcontainer.cpp b/src/gui/windowcontainer.cpp index 05c2b5e9..d8535f73 100644 --- a/src/gui/windowcontainer.cpp +++ b/src/gui/windowcontainer.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: windowcontainer.cpp 3754 2007-11-20 15:19:50Z b_lindeijer $ */ #include "windowcontainer.h" diff --git a/src/gui/windowcontainer.h b/src/gui/windowcontainer.h index c9728230..d783fefd 100644 --- a/src/gui/windowcontainer.h +++ b/src/gui/windowcontainer.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: windowcontainer.h 2884 2006-12-04 11:20:54Z b_lindeijer $ */ #ifndef _TMW_WINDOWCONTAINER_H_ diff --git a/src/guichanfwd.h b/src/guichanfwd.h index 0a2560bf..4fb7ea3e 100644 --- a/src/guichanfwd.h +++ b/src/guichanfwd.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: guichanfwd.h 2907 2006-12-12 15:33:46Z b_lindeijer $ */ #ifndef _TMW_GUICHANFWD_H diff --git a/src/imageparticle.cpp b/src/imageparticle.cpp index 965434b0..6d74801e 100644 --- a/src/imageparticle.cpp +++ b/src/imageparticle.cpp @@ -17,13 +17,10 @@ * 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 - * - * $Id$ */ -#include "imageparticle.h" - #include "graphics.h" +#include "imageparticle.h" #include "resources/image.h" diff --git a/src/imageparticle.h b/src/imageparticle.h index ef663473..91c5426c 100644 --- a/src/imageparticle.h +++ b/src/imageparticle.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: imageparticle.h 3567 2007-09-07 09:13:17Z b_lindeijer $ */ #ifndef _IMAGEPARTICLE_H diff --git a/src/inventory.cpp b/src/inventory.cpp index 0b1b9613..764d7fee 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -17,15 +17,12 @@ * 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 - * - * $Id: inventory.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ -#include "inventory.h" - #include #include +#include "inventory.h" #include "item.h" #include "log.h" diff --git a/src/inventory.h b/src/inventory.h index 42b0d86a..87d09567 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: inventory.h 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #ifndef _INVENTORY_H diff --git a/src/item.cpp b/src/item.cpp index 2e33a9de..bc6b7cc7 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: item.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #include "item.h" diff --git a/src/item.h b/src/item.h index 449b388c..eb6fed77 100644 --- a/src/item.h +++ b/src/item.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: item.h 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #ifndef _ITEM_H_ diff --git a/src/itemshortcut.cpp b/src/itemshortcut.cpp index 5379f0eb..a3812042 100644 --- a/src/itemshortcut.cpp +++ b/src/itemshortcut.cpp @@ -17,15 +17,12 @@ * 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 - * - * $Id: itemshortcut.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ -#include "itemshortcut.h" - #include "configuration.h" #include "inventory.h" #include "item.h" +#include "itemshortcut.h" #include "localplayer.h" #include "utils/tostring.h" diff --git a/src/itemshortcut.h b/src/itemshortcut.h index bbf21332..a0c52468 100644 --- a/src/itemshortcut.h +++ b/src/itemshortcut.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: itemshortcut.h 4180 2008-04-24 20:49:30Z peaveydk $ */ #ifndef _TMW_ITEMSHORTCUT_H__ diff --git a/src/joystick.cpp b/src/joystick.cpp index ebae5c3a..f009ebc4 100644 --- a/src/joystick.cpp +++ b/src/joystick.cpp @@ -17,13 +17,10 @@ * 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 - * - * $Id: joystick.cpp 2595 2006-08-26 20:19:39Z b_lindeijer $ */ -#include "joystick.h" - #include "configuration.h" +#include "joystick.h" #include "log.h" int Joystick::joystickCount = 0; diff --git a/src/joystick.h b/src/joystick.h index 5c6f7c86..4cc1babd 100644 --- a/src/joystick.h +++ b/src/joystick.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: joystick.h 3587 2007-09-20 13:24:20Z b_lindeijer $ */ #ifndef _TMW_JOYSTICK_H diff --git a/src/keyboardconfig.cpp b/src/keyboardconfig.cpp index 46fea458..f67c9534 100644 --- a/src/keyboardconfig.cpp +++ b/src/keyboardconfig.cpp @@ -17,16 +17,14 @@ * 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 - * - * $Id$ */ -#include "keyboardconfig.h" +#include + #include "configuration.h" +#include "keyboardconfig.h" #include "log.h" -#include - #include "gui/setup_keyboard.h" struct KeyData diff --git a/src/keyboardconfig.h b/src/keyboardconfig.h index a4329b09..158252d4 100644 --- a/src/keyboardconfig.h +++ b/src/keyboardconfig.h @@ -17,8 +17,6 @@ * 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 - * - * $Id$ */ #ifndef _TMW_KEYBOARDCONFIG_H @@ -26,10 +24,10 @@ #include -#include "gui/setup_keyboard.h" - #include +#include "gui/setup_keyboard.h" + /** * Each key represents a key function. Such as 'Move up', 'Attack' etc. */ diff --git a/src/localplayer.cpp b/src/localplayer.cpp index 9475fcbb..68999787 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -17,18 +17,15 @@ * 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 - * - * $Id$ */ #include -#include "localplayer.h" - #include "equipment.h" #include "floor_item.h" #include "game.h" #include "inventory.h" #include "item.h" +#include "localplayer.h" #include "main.h" #include "monster.h" #include "particle.h" @@ -39,8 +36,8 @@ #include "net/messageout.h" #include "net/protocol.h" -#include "resources/resourcemanager.h" #include "resources/imageset.h" +#include "resources/resourcemanager.h" #include "utils/tostring.h" diff --git a/src/localplayer.h b/src/localplayer.h index 1eebabb6..ad59d138 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -17,8 +17,6 @@ * 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 - * - * $Id$ */ #ifndef _TMW_LOCALPLAYER_H diff --git a/src/lockedarray.h b/src/lockedarray.h index bbb72520..a3e5dc0a 100644 --- a/src/lockedarray.h +++ b/src/lockedarray.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: lockedarray.h 2277 2006-03-19 21:40:21Z der_doener $ */ #ifndef _TMW_LOCKEDARRAY_H diff --git a/src/main.cpp b/src/main.cpp index db7b16d4..42a504fe 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -17,50 +17,51 @@ * 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 - * - * $Id: main.cpp 4332 2008-06-05 07:33:12Z b_lindeijer $ */ -#include "main.h" - #include #include #include +#include #include #include -#include #include + #include + #include #include -#ifndef WIN32 -#include -#include +#ifdef __APPLE__ +#include #endif #ifdef __MINGW32__ #include #define usleep(usec) (Sleep ((usec) / 1000), 0) #endif -#if defined __APPLE__ -#include +#ifdef WIN32 +#include +#else +#include +#include #endif #include "configuration.h" -#include "keyboardconfig.h" -#include "player_relations.h" #include "game.h" #include "graphics.h" #include "itemshortcut.h" -#include "lockedarray.h" +#include "keyboardconfig.h" #include "localplayer.h" +#include "lockedarray.h" #include "log.h" #include "logindata.h" +#include "main.h" #ifdef USE_OPENGL #include "openglgraphics.h" #endif +#include "player_relations.h" #include "serverinfo.h" #include "sound.h" @@ -72,8 +73,8 @@ #include "gui/ok_dialog.h" #include "gui/progressbar.h" #include "gui/register.h" -#include "gui/updatewindow.h" #include "gui/textfield.h" +#include "gui/updatewindow.h" #include "net/charserverhandler.h" #include "net/loginhandler.h" @@ -91,10 +92,6 @@ #include "utils/dtor.h" #include "utils/tostring.h" -#ifdef WIN32 -#include -#endif - // Account infos char n_server, n_character; diff --git a/src/main.h b/src/main.h index 8dfc51cf..a0fe65cb 100644 --- a/src/main.h +++ b/src/main.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: main.h 3628 2007-10-18 18:39:48Z b_lindeijer $ */ #ifndef _TMW_MAIN_H diff --git a/src/map.cpp b/src/map.cpp index 15d5e5f3..612d9020 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -17,12 +17,8 @@ * 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 - * - * $Id: map.cpp 4171 2008-04-22 18:42:21Z b_lindeijer $ */ -#include "map.h" - #include #include "beingmanager.h" @@ -30,13 +26,14 @@ #include "game.h" #include "graphics.h" #include "localplayer.h" +#include "map.h" #include "particle.h" #include "sprite.h" #include "tileset.h" -#include "resources/resourcemanager.h" #include "resources/ambientoverlay.h" #include "resources/image.h" +#include "resources/resourcemanager.h" #include "utils/dtor.h" #include "utils/tostring.h" diff --git a/src/map.h b/src/map.h index 95532eb3..6eaf9e43 100644 --- a/src/map.h +++ b/src/map.h @@ -17,8 +17,6 @@ * 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 - * - * $Id$ */ #ifndef _TMW_MAP_H_ diff --git a/src/monster.cpp b/src/monster.cpp index be22bed3..62be513d 100644 --- a/src/monster.cpp +++ b/src/monster.cpp @@ -17,16 +17,13 @@ * 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 - * - * $Id: monster.cpp 3823 2007-12-28 18:36:58Z crush_tmw $ */ -#include "monster.h" - #include "animatedsprite.h" #include "game.h" -#include "sound.h" +#include "monster.h" #include "particle.h" +#include "sound.h" #include "text.h" #include "gui/gui.h" diff --git a/src/monster.h b/src/monster.h index 4839966a..0906dff3 100644 --- a/src/monster.h +++ b/src/monster.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: monster.h 3690 2007-10-26 12:50:49Z crush_tmw $ */ #ifndef _TMW_MONSTER_H diff --git a/src/net/beinghandler.cpp b/src/net/beinghandler.cpp index b9686e39..8a7e61a1 100644 --- a/src/net/beinghandler.cpp +++ b/src/net/beinghandler.cpp @@ -17,15 +17,12 @@ * 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 - * - * $Id: beinghandler.cpp 4321 2008-06-02 11:42:26Z b_lindeijer $ */ -#include "beinghandler.h" - #include #include +#include "beinghandler.h" #include "messagein.h" #include "protocol.h" @@ -35,10 +32,10 @@ #include "../localplayer.h" #include "../log.h" #include "../main.h" +#include "../npc.h" #include "../particle.h" -#include "../sound.h" #include "../player_relations.h" -#include "../npc.h" +#include "../sound.h" const int EMOTION_TIME = 150; /**< Duration of emotion icon */ diff --git a/src/net/beinghandler.h b/src/net/beinghandler.h index 8f58a397..9e736751 100644 --- a/src/net/beinghandler.h +++ b/src/net/beinghandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: beinghandler.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_NET_BEINGHANDLER_H diff --git a/src/net/buysellhandler.cpp b/src/net/buysellhandler.cpp index b4e2cf30..b464e69f 100644 --- a/src/net/buysellhandler.cpp +++ b/src/net/buysellhandler.cpp @@ -17,14 +17,11 @@ * 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 - * - * $Id: buysellhandler.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ -#include "buysellhandler.h" - #include +#include "buysellhandler.h" #include "messagein.h" #include "protocol.h" @@ -39,8 +36,8 @@ #include "../gui/sell.h" extern BuyDialog *buyDialog; -extern SellDialog *sellDialog; extern Window *buySellDialog; +extern SellDialog *sellDialog; BuySellHandler::BuySellHandler() { diff --git a/src/net/buysellhandler.h b/src/net/buysellhandler.h index 4da52c95..49984840 100644 --- a/src/net/buysellhandler.h +++ b/src/net/buysellhandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: buysellhandler.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_NET_BUYSELLHANDLER_H diff --git a/src/net/charserverhandler.cpp b/src/net/charserverhandler.cpp index 2af3fe07..833732db 100644 --- a/src/net/charserverhandler.cpp +++ b/src/net/charserverhandler.cpp @@ -17,25 +17,22 @@ * 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 - * - * $Id: charserverhandler.cpp 4330 2008-06-04 08:53:01Z b_lindeijer $ */ #include "charserverhandler.h" - #include "messagein.h" #include "network.h" #include "protocol.h" +#include "../extensions.h" #include "../game.h" #include "../localplayer.h" #include "../log.h" #include "../logindata.h" #include "../main.h" -#include "../extensions.h" -#include "../gui/ok_dialog.h" #include "../gui/char_select.h" +#include "../gui/ok_dialog.h" /* * Yeah, this is a global. Get over it. diff --git a/src/net/charserverhandler.h b/src/net/charserverhandler.h index 663de94d..05f547d0 100644 --- a/src/net/charserverhandler.h +++ b/src/net/charserverhandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: charserverhandler.h 3228 2007-03-22 23:53:13Z b_lindeijer $ */ #ifndef _TMW_NET_CHARSERVERHANDLER_H diff --git a/src/net/chathandler.cpp b/src/net/chathandler.cpp index bee19112..b73b86b4 100644 --- a/src/net/chathandler.cpp +++ b/src/net/chathandler.cpp @@ -17,15 +17,12 @@ * 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 - * - * $Id: chathandler.cpp 4237 2008-05-14 18:57:32Z b_lindeijer $ */ -#include "chathandler.h" - #include #include +#include "chathandler.h" #include "messagein.h" #include "protocol.h" diff --git a/src/net/chathandler.h b/src/net/chathandler.h index 08a560f3..53ea61d8 100644 --- a/src/net/chathandler.h +++ b/src/net/chathandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: chathandler.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_NET_CHATHANDLER_H diff --git a/src/net/equipmenthandler.cpp b/src/net/equipmenthandler.cpp index 5464fa55..4775371a 100644 --- a/src/net/equipmenthandler.cpp +++ b/src/net/equipmenthandler.cpp @@ -17,12 +17,9 @@ * 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 - * - * $Id: equipmenthandler.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #include "equipmenthandler.h" - #include "messagein.h" #include "protocol.h" diff --git a/src/net/equipmenthandler.h b/src/net/equipmenthandler.h index 0121e6ad..31a747c3 100644 --- a/src/net/equipmenthandler.h +++ b/src/net/equipmenthandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: equipmenthandler.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_NET_EQUIPMENTHANDLER_H diff --git a/src/net/inventoryhandler.cpp b/src/net/inventoryhandler.cpp index 44a3256e..12b7d5ef 100644 --- a/src/net/inventoryhandler.cpp +++ b/src/net/inventoryhandler.cpp @@ -17,26 +17,24 @@ * 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 - * - * $Id: inventoryhandler.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ -#include "inventoryhandler.h" - #include +#include "inventoryhandler.h" #include "messagein.h" #include "protocol.h" -#include "../resources/iteminfo.h" +#include "../inventory.h" #include "../item.h" #include "../itemshortcut.h" #include "../localplayer.h" #include "../log.h" -#include "../inventory.h" #include "../gui/chat.h" +#include "../resources/iteminfo.h" + #include "../utils/tostring.h" InventoryHandler::InventoryHandler() diff --git a/src/net/inventoryhandler.h b/src/net/inventoryhandler.h index 64ef8464..002fa938 100644 --- a/src/net/inventoryhandler.h +++ b/src/net/inventoryhandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: inventoryhandler.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_NET_INVENTORYHANDLER_H diff --git a/src/net/itemhandler.cpp b/src/net/itemhandler.cpp index 9af2be10..9cf85ce7 100644 --- a/src/net/itemhandler.cpp +++ b/src/net/itemhandler.cpp @@ -17,12 +17,9 @@ * 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 - * - * $Id: itemhandler.cpp 2150 2006-02-06 02:56:48Z der_doener $ */ #include "itemhandler.h" - #include "messagein.h" #include "protocol.h" diff --git a/src/net/itemhandler.h b/src/net/itemhandler.h index 702e193a..99fc6b62 100644 --- a/src/net/itemhandler.h +++ b/src/net/itemhandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: itemhandler.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_NET_ITEMHANDLER_H diff --git a/src/net/loginhandler.cpp b/src/net/loginhandler.cpp index 946f4a21..9a7aaabd 100644 --- a/src/net/loginhandler.cpp +++ b/src/net/loginhandler.cpp @@ -17,12 +17,9 @@ * 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 - * - * $Id: loginhandler.cpp 3233 2007-03-24 01:57:39Z b_lindeijer $ */ #include "loginhandler.h" - #include "messagein.h" #include "network.h" #include "protocol.h" diff --git a/src/net/loginhandler.h b/src/net/loginhandler.h index 797655c3..1e087619 100644 --- a/src/net/loginhandler.h +++ b/src/net/loginhandler.h @@ -17,16 +17,15 @@ * 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 - * - * $Id: loginhandler.h 2137 2006-02-04 16:54:35Z der_doener $ */ #ifndef _TMW_NET_LOGINHANDLER_H #define _TMW_NET_LOGINHANDLER_H -#include "messagehandler.h" #include +#include "messagehandler.h" + struct LoginData; class LoginHandler : public MessageHandler diff --git a/src/net/maploginhandler.cpp b/src/net/maploginhandler.cpp index 15f70baf..bc08d5d6 100644 --- a/src/net/maploginhandler.cpp +++ b/src/net/maploginhandler.cpp @@ -17,12 +17,9 @@ * 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 - * - * $Id: maploginhandler.cpp 2239 2006-03-09 05:16:27Z der_doener $ */ #include "maploginhandler.h" - #include "messagein.h" #include "protocol.h" diff --git a/src/net/maploginhandler.h b/src/net/maploginhandler.h index 6ff6bc00..4d9fa75b 100644 --- a/src/net/maploginhandler.h +++ b/src/net/maploginhandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: maploginhandler.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_NET_MAPLOGINHANDLER_H diff --git a/src/net/messagehandler.cpp b/src/net/messagehandler.cpp index 370a01ab..7a41e1ad 100644 --- a/src/net/messagehandler.cpp +++ b/src/net/messagehandler.cpp @@ -17,14 +17,11 @@ * 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 - * - * $Id: messagehandler.cpp 2112 2006-01-22 13:31:13Z der_doener $ */ -#include "messagehandler.h" - #include +#include "messagehandler.h" #include "network.h" MessageHandler::MessageHandler(): diff --git a/src/net/messagehandler.h b/src/net/messagehandler.h index 90ffa489..952e76a9 100644 --- a/src/net/messagehandler.h +++ b/src/net/messagehandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: messagehandler.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_NET_MESSAGEHANDLER_H diff --git a/src/net/messagein.cpp b/src/net/messagein.cpp index bec47a5a..345e02fc 100644 --- a/src/net/messagein.cpp +++ b/src/net/messagein.cpp @@ -17,21 +17,18 @@ * 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 - * - * $Id: messagein.cpp 2369 2006-06-26 21:32:52Z b_lindeijer $ */ -#include "messagein.h" - #include #include #include +#include "messagein.h" + #define MAKEWORD(low,high) \ ((unsigned short)(((unsigned char)(low)) | \ ((unsigned short)((unsigned char)(high))) << 8)) - MessageIn::MessageIn(const char *data, unsigned int length): mData(data), mLength(length), diff --git a/src/net/messagein.h b/src/net/messagein.h index 0a6b8b8b..81db6cdc 100644 --- a/src/net/messagein.h +++ b/src/net/messagein.h @@ -17,15 +17,13 @@ * 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 - * - * $Id: messagein.h 1879 2005-10-16 21:18:11Z der_doener $ */ #ifndef _TMW_MESSAGEIN_ #define _TMW_MESSAGEIN_ -#include #include +#include /** * Used for parsing an incoming message. diff --git a/src/net/messageout.cpp b/src/net/messageout.cpp index f5f3dad9..6aa25411 100644 --- a/src/net/messageout.cpp +++ b/src/net/messageout.cpp @@ -17,18 +17,15 @@ * 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 - * - * $Id: messageout.cpp 3754 2007-11-20 15:19:50Z b_lindeijer $ */ #include -#include #include #include - -#include "network.h" +#include #include "messageout.h" +#include "network.h" MessageOut::MessageOut(Network *network): mNetwork(network), diff --git a/src/net/messageout.h b/src/net/messageout.h index 33deb1bb..3c4cc241 100644 --- a/src/net/messageout.h +++ b/src/net/messageout.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: messageout.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_MESSAGEOUT_ diff --git a/src/net/network.cpp b/src/net/network.cpp index efb11708..c9f8d1bd 100644 --- a/src/net/network.cpp +++ b/src/net/network.cpp @@ -17,19 +17,16 @@ * 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 - * - * $Id: network.cpp 3550 2007-08-30 16:46:21Z b_lindeijer $ */ -#include "network.h" +#include #include "messagehandler.h" #include "messagein.h" +#include "network.h" #include "../log.h" -#include - /** Warning: buffers and other variables are shared, so there can be only one connection active at a time */ diff --git a/src/net/network.h b/src/net/network.h index 826e6776..856808a2 100644 --- a/src/net/network.h +++ b/src/net/network.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: network.h 3234 2007-03-24 13:05:27Z b_lindeijer $ */ #ifndef _TMW_NETWORK_ diff --git a/src/net/npchandler.cpp b/src/net/npchandler.cpp index 70f04271..65259959 100644 --- a/src/net/npchandler.cpp +++ b/src/net/npchandler.cpp @@ -17,20 +17,17 @@ * 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 - * - * $Id: npchandler.cpp 2883 2006-12-03 17:00:07Z b_lindeijer $ */ -#include "npchandler.h" - #include "messagein.h" +#include "npchandler.h" #include "protocol.h" #include "../beingmanager.h" #include "../npc.h" -#include "../gui/npclistdialog.h" #include "../gui/npc_text.h" +#include "../gui/npclistdialog.h" extern NpcListDialog *npcListDialog; extern NpcTextDialog *npcTextDialog; diff --git a/src/net/npchandler.h b/src/net/npchandler.h index 7abd7495..abb16b7a 100644 --- a/src/net/npchandler.h +++ b/src/net/npchandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: npchandler.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_NET_NPCHANDLER_H diff --git a/src/net/partyhandler.cpp b/src/net/partyhandler.cpp index c1f2ba2e..9b5f3080 100644 --- a/src/net/partyhandler.cpp +++ b/src/net/partyhandler.cpp @@ -17,23 +17,20 @@ * 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 - * - * $Id: partyhandler.cpp */ -#include "partyhandler.h" +#include +#include "partyhandler.h" #include "protocol.h" #include "messagein.h" #include "../gui/chat.h" #include "../gui/confirm_dialog.h" +#include "../beingmanager.h" #include "../game.h" #include "../party.h" -#include "../beingmanager.h" - -#include PartyHandler::PartyHandler(Party *party) : mParty(party) { diff --git a/src/net/partyhandler.h b/src/net/partyhandler.h index de97d084..daabc52f 100644 --- a/src/net/partyhandler.h +++ b/src/net/partyhandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: partyhandler.h */ #ifndef _TMW_NET_PARTYHANDLER_H diff --git a/src/net/playerhandler.cpp b/src/net/playerhandler.cpp index ea561a81..c8442a89 100644 --- a/src/net/playerhandler.cpp +++ b/src/net/playerhandler.cpp @@ -17,20 +17,16 @@ * 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 - * - * $Id: playerhandler.cpp 4190 2008-04-26 17:37:03Z peaveydk $ */ -#include "playerhandler.h" - #include "messagein.h" +#include "playerhandler.h" #include "protocol.h" #include "../engine.h" #include "../localplayer.h" #include "../log.h" #include "../npc.h" -#include "../utils/tostring.h" #include "../gui/buy.h" #include "../gui/chat.h" @@ -42,6 +38,8 @@ #include "../gui/skill.h" #include "../gui/viewport.h" +#include "../utils/tostring.h" + // TODO Move somewhere else OkDialog *weightNotice = NULL; OkDialog *deathNotice = NULL; diff --git a/src/net/playerhandler.h b/src/net/playerhandler.h index f7c0672d..ec22e704 100644 --- a/src/net/playerhandler.h +++ b/src/net/playerhandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: playerhandler.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_NET_PLAYERHANDLER_H diff --git a/src/net/protocol.cpp b/src/net/protocol.cpp index 791b7fe5..a0e21d2e 100644 --- a/src/net/protocol.cpp +++ b/src/net/protocol.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: protocol.cpp 2158 2006-02-07 10:37:54Z der_doener $ */ #include "protocol.h" diff --git a/src/net/protocol.h b/src/net/protocol.h index 5e1d3c62..fabe6911 100644 --- a/src/net/protocol.h +++ b/src/net/protocol.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: protocol.h 4321 2008-06-02 11:42:26Z b_lindeijer $ */ #ifndef _TMW_PROTOCOL_ diff --git a/src/net/skillhandler.cpp b/src/net/skillhandler.cpp index 3685d04b..b9a232fb 100644 --- a/src/net/skillhandler.cpp +++ b/src/net/skillhandler.cpp @@ -17,14 +17,11 @@ * 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 - * - * $Id: skillhandler.cpp 2832 2006-11-05 20:57:59Z b_lindeijer $ */ -#include "skillhandler.h" - #include "messagein.h" #include "protocol.h" +#include "skillhandler.h" #include "../log.h" diff --git a/src/net/skillhandler.h b/src/net/skillhandler.h index 734772b4..80095bd3 100644 --- a/src/net/skillhandler.h +++ b/src/net/skillhandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: skillhandler.h 2112 2006-01-22 13:31:13Z der_doener $ */ #ifndef _TMW_NET_SKILLHANDLER_H diff --git a/src/net/tradehandler.cpp b/src/net/tradehandler.cpp index 9174d846..11fe2c19 100644 --- a/src/net/tradehandler.cpp +++ b/src/net/tradehandler.cpp @@ -17,14 +17,11 @@ * 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 - * - * $Id: tradehandler.cpp 4354 2008-06-17 16:52:44Z the_enemy $ */ -#include "tradehandler.h" - #include "messagein.h" #include "protocol.h" +#include "tradehandler.h" #include "../inventory.h" #include "../item.h" diff --git a/src/net/tradehandler.h b/src/net/tradehandler.h index 22e01f48..37ec5024 100644 --- a/src/net/tradehandler.h +++ b/src/net/tradehandler.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: tradehandler.h 4237 2008-05-14 18:57:32Z b_lindeijer $ */ #ifndef _TMW_NET_TRADEHANDLER_H diff --git a/src/npc.cpp b/src/npc.cpp index 82b68af4..78670581 100644 --- a/src/npc.cpp +++ b/src/npc.cpp @@ -17,19 +17,17 @@ * 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 - * - * $Id: npc.cpp 4255 2008-05-21 21:44:27Z crush_tmw $ */ -#include "npc.h" - #include "animatedsprite.h" #include "graphics.h" +#include "npc.h" #include "particle.h" #include "text.h" #include "net/messageout.h" #include "net/protocol.h" + #include "resources/npcdb.h" #include "gui/gui.h" diff --git a/src/npc.h b/src/npc.h index fa39e6c2..a37e8c66 100644 --- a/src/npc.h +++ b/src/npc.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: npc.h 2883 2006-12-03 17:00:07Z b_lindeijer $ */ #ifndef _TMW_NPC_H diff --git a/src/openglgraphics.cpp b/src/openglgraphics.cpp index 6ffc5668..8f47bc1f 100644 --- a/src/openglgraphics.cpp +++ b/src/openglgraphics.cpp @@ -17,12 +17,8 @@ * 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 - * - * $Id: openglgraphics.cpp 4130 2008-04-18 20:39:29Z the_enemy $ */ -#include "main.h" - #ifdef USE_OPENGL #ifndef GL_TEXTURE_RECTANGLE_ARB @@ -30,8 +26,6 @@ #define GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8 #endif -#include "openglgraphics.h" - #include #include @@ -43,6 +37,7 @@ #include #include "log.h" +#include "openglgraphics.h" #include "resources/image.h" diff --git a/src/openglgraphics.h b/src/openglgraphics.h index c3dc794c..7d39e306 100644 --- a/src/openglgraphics.h +++ b/src/openglgraphics.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: openglgraphics.h 3628 2007-10-18 18:39:48Z b_lindeijer $ */ #ifndef _TMW_OPENGLGRAPHICS_H diff --git a/src/particle.cpp b/src/particle.cpp index af54a4b5..f1896ae2 100644 --- a/src/particle.cpp +++ b/src/particle.cpp @@ -17,20 +17,17 @@ * 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 - * - * $Id$ */ #include #include -#include "particle.h" - #include "animationparticle.h" #include "configuration.h" #include "imageparticle.h" #include "log.h" #include "map.h" +#include "particle.h" #include "particleemitter.h" #include "textparticle.h" diff --git a/src/particle.h b/src/particle.h index a21fe88b..0a53f5af 100644 --- a/src/particle.h +++ b/src/particle.h @@ -17,8 +17,6 @@ * 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 - * - * $Id$ */ #ifndef _PARTICLE_H diff --git a/src/particleemitter.cpp b/src/particleemitter.cpp index edd7bf4f..03fe4672 100644 --- a/src/particleemitter.cpp +++ b/src/particleemitter.cpp @@ -17,21 +17,18 @@ * 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 - * - * $Id$ */ -#include "particleemitter.h" - #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/resourcemanager.h" #include "resources/imageset.h" +#include "resources/resourcemanager.h" #include diff --git a/src/particleemitter.h b/src/particleemitter.h index 31346401..809a6ded 100644 --- a/src/particleemitter.h +++ b/src/particleemitter.h @@ -17,8 +17,6 @@ * 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 - * - * $Id$ */ #ifndef _PARTICLEEMITTER_H diff --git a/src/particleemitterprop.h b/src/particleemitterprop.h index e645c169..f9c329a9 100644 --- a/src/particleemitterprop.h +++ b/src/particleemitterprop.h @@ -17,12 +17,10 @@ * 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 - * - * $Id$ */ -#include #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 39c39352..3df2eedc 100644 --- a/src/party.cpp +++ b/src/party.cpp @@ -17,15 +17,12 @@ * 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 - * - * $Id: party.cpp */ -#include "party.h" - #include "beingmanager.h" -#include "localplayer.h" #include "game.h" +#include "localplayer.h" +#include "party.h" #include "gui/chat.h" #include "gui/confirm_dialog.h" diff --git a/src/party.h b/src/party.h index d4f51b5a..0e1afc3c 100644 --- a/src/party.h +++ b/src/party.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: party.h */ #ifndef _TMW_PARTY_H diff --git a/src/player.cpp b/src/player.cpp index 5fb5ffe9..1a7480db 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -17,25 +17,23 @@ * 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 - * - * $Id: player.cpp 4237 2008-05-14 18:57:32Z b_lindeijer $ */ -#include "player.h" +#include #include "animatedsprite.h" #include "game.h" #include "graphics.h" #include "log.h" +#include "player.h" + +#include "gui/gui.h" #include "resources/itemdb.h" #include "resources/iteminfo.h" #include "utils/strprintf.h" -#include "gui/gui.h" -#include - static const int NAME_X_OFFSET = 15; static const int NAME_Y_OFFSET = 30; diff --git a/src/player.h b/src/player.h index 6def34a5..8b1c8dcb 100644 --- a/src/player.h +++ b/src/player.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: player.h 4237 2008-05-14 18:57:32Z b_lindeijer $ */ #ifndef _TMW_PLAYER_H diff --git a/src/player_relations.cpp b/src/player_relations.cpp index 8abc9848..157cc09b 100644 --- a/src/player_relations.cpp +++ b/src/player_relations.cpp @@ -19,12 +19,13 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include + #include "beingmanager.h" -#include "player_relations.h" #include "graphics.h" -#include "gui/gui.h" +#include "player_relations.h" -#include +#include "gui/gui.h" #define PLAYER_IGNORE_STRATEGY_NOP "nop" #define PLAYER_IGNORE_STRATEGY_EMOTE0 "emote0" diff --git a/src/player_relations.h b/src/player_relations.h index ec93b4dc..56f3d5a4 100644 --- a/src/player_relations.h +++ b/src/player_relations.h @@ -22,13 +22,14 @@ #ifndef TMW_PLAYER_RELATIONS_H_ #define TMW_PLAYER_RELATIONS_H_ -#include "being.h" -#include "player.h" -#include "configuration.h" -#include +#include #include +#include #include -#include + +#include "being.h" +#include "configuration.h" +#include "player.h" struct PlayerRelation { diff --git a/src/properties.h b/src/properties.h index 9ebead66..86fffea3 100644 --- a/src/properties.h +++ b/src/properties.h @@ -17,16 +17,14 @@ * 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 - * - * $Id: properties.h 3754 2007-11-20 15:19:50Z b_lindeijer $ */ #ifndef _TMW_PROPERTIES_H_ #define _TMW_PROPERTIES_H_ #include -#include #include +#include /** * A class holding a set of properties. diff --git a/src/recorder.cpp b/src/recorder.cpp index 48ecb837..7bf618c5 100644 --- a/src/recorder.cpp +++ b/src/recorder.cpp @@ -17,14 +17,12 @@ * 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 - * - * $Id: record.cpp */ #include "recorder.h" -#include "gui/chat.h" #include "gui/buttonbox.h" +#include "gui/chat.h" #include "utils/trim.h" diff --git a/src/recorder.h b/src/recorder.h index 75d86f88..9f30184f 100644 --- a/src/recorder.h +++ b/src/recorder.h @@ -17,15 +17,13 @@ * 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 - * - * $Id: record.h */ #ifndef _TMW_RECORD_H #define _TMW_RECORD_H -#include #include +#include #include "gui/buttonbox.h" diff --git a/src/resources/action.cpp b/src/resources/action.cpp index 8ed099ea..f40d3109 100644 --- a/src/resources/action.cpp +++ b/src/resources/action.cpp @@ -17,17 +17,13 @@ * 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 - * - * $Id: action.cpp 3676 2007-10-23 08:02:22Z b_lindeijer $ */ #include "action.h" - #include "animation.h" #include "../utils/dtor.h" - Action::Action() { } diff --git a/src/resources/action.h b/src/resources/action.h index 61307652..09eb066e 100644 --- a/src/resources/action.h +++ b/src/resources/action.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: action.h 2905 2006-12-12 15:06:06Z b_lindeijer $ */ #ifndef _TMW_ACTION_H diff --git a/src/resources/ambientoverlay.cpp b/src/resources/ambientoverlay.cpp index 654cbb32..38d8fc46 100644 --- a/src/resources/ambientoverlay.cpp +++ b/src/resources/ambientoverlay.cpp @@ -17,12 +17,9 @@ * 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 - * - * $Id: ambientoverlay.cpp 2727 2006-10-07 20:01:34Z b_lindeijer $ */ #include "ambientoverlay.h" - #include "image.h" #include "../graphics.h" diff --git a/src/resources/ambientoverlay.h b/src/resources/ambientoverlay.h index c0b18600..56c70066 100644 --- a/src/resources/ambientoverlay.h +++ b/src/resources/ambientoverlay.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: ambientoverlay.h 2727 2006-10-07 20:01:34Z b_lindeijer $ */ #ifndef _TMW_RESOURCES_AMBIENTOVERLAY_H_ diff --git a/src/resources/animation.cpp b/src/resources/animation.cpp index b740b9b5..596c5fac 100644 --- a/src/resources/animation.cpp +++ b/src/resources/animation.cpp @@ -17,14 +17,12 @@ * 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 - * - * $Id: animation.cpp 2905 2006-12-12 15:06:06Z b_lindeijer $ */ -#include "animation.h" - #include +#include "animation.h" + #include "../utils/dtor.h" Animation::Animation(): diff --git a/src/resources/animation.h b/src/resources/animation.h index 53420ecd..8dfe8614 100644 --- a/src/resources/animation.h +++ b/src/resources/animation.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: animation.h 3301 2007-05-23 21:35:01Z b_lindeijer $ */ #ifndef _TMW_ANIMATION_H diff --git a/src/resources/buddylist.cpp b/src/resources/buddylist.cpp index c917a45e..1bd98680 100644 --- a/src/resources/buddylist.cpp +++ b/src/resources/buddylist.cpp @@ -17,19 +17,17 @@ * 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 - * - * $Id: buddylist.cpp 4332 2008-06-05 07:33:12Z b_lindeijer $ */ #include #include -#include #include +#include #include "buddylist.h" -#include "../main.h" #include "../configuration.h" +#include "../main.h" BuddyList::BuddyList() { diff --git a/src/resources/buddylist.h b/src/resources/buddylist.h index 5a8f2324..6a3de8c4 100644 --- a/src/resources/buddylist.h +++ b/src/resources/buddylist.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: buddylist.h 2239 2006-03-09 05:16:27Z der_doener $ */ #ifndef _TMW_BUDDYLIST_H diff --git a/src/resources/colordb.h b/src/resources/colordb.h index 1f8b191c..2b750fa3 100644 --- a/src/resources/colordb.h +++ b/src/resources/colordb.h @@ -22,8 +22,8 @@ #ifndef _AETHYRA_COLOR_MANAGER_H #define _AETHYRA_COLOR_MANAGER_H -#include #include +#include /** * The class that holds the color information. diff --git a/src/resources/dye.cpp b/src/resources/dye.cpp index 195d5dd1..3be105d8 100644 --- a/src/resources/dye.cpp +++ b/src/resources/dye.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: dye.cpp 3708 2007-11-04 11:52:44Z gmelquio $ */ #include diff --git a/src/resources/dye.h b/src/resources/dye.h index fe8669bb..4fb8fd40 100644 --- a/src/resources/dye.h +++ b/src/resources/dye.h @@ -17,13 +17,12 @@ * 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 - * - * $Id: dye.h 3706 2007-11-03 21:04:51Z gmelquio $ */ #ifndef _TMW_DYE_H #define _TMW_DYE_H +#include #include /** @@ -38,7 +37,7 @@ class Palette * The string is either a file name or a sequence of hexadecimal RGB * values separated by ',' and starting with '#'. */ - Palette(std::string const &); + Palette(std::string const &pallete); /** * Gets a pixel color depending on its intensity. @@ -65,7 +64,7 @@ class Dye * The parts of string are separated by semi-colons. Each part starts * by an uppercase letter, followed by a colon and then a palette name. */ - Dye(std::string const &); + Dye(std::string const &dye); /** * Destroys the associated palettes. diff --git a/src/resources/image.cpp b/src/resources/image.cpp index dc22a69b..35b9c254 100644 --- a/src/resources/image.cpp +++ b/src/resources/image.cpp @@ -17,15 +17,12 @@ * 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 - * - * $Id: image.cpp 3760 2007-11-21 19:43:11Z b_lindeijer $ */ #include -#include "image.h" - #include "dye.h" +#include "image.h" #include "../log.h" diff --git a/src/resources/image.h b/src/resources/image.h index 6f10f858..6eb33ed9 100644 --- a/src/resources/image.h +++ b/src/resources/image.h @@ -17,16 +17,15 @@ * 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 - * - * $Id: image.h 3760 2007-11-21 19:43:11Z b_lindeijer $ */ #ifndef _TMW_IMAGE_H #define _TMW_IMAGE_H +#include + #include "../main.h" -#include #ifdef USE_OPENGL /* The definition of OpenGL extensions by SDL is giving problems with recent diff --git a/src/resources/imageloader.cpp b/src/resources/imageloader.cpp index d6539b05..a7e813d7 100644 --- a/src/resources/imageloader.cpp +++ b/src/resources/imageloader.cpp @@ -17,18 +17,16 @@ * 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 - * - * $Id: imageloader.cpp 3515 2007-08-25 16:56:52Z gmelquio $ */ #include #include + #include #include -#include "imageloader.h" - #include "image.h" +#include "imageloader.h" #include "resourcemanager.h" ProxyImage::ProxyImage(SDL_Surface *s): diff --git a/src/resources/imageloader.h b/src/resources/imageloader.h index 89f38eda..7979fd2f 100644 --- a/src/resources/imageloader.h +++ b/src/resources/imageloader.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: imageloader.h 3515 2007-08-25 16:56:52Z gmelquio $ */ #ifndef _TMW_IMAGELOADER_H diff --git a/src/resources/imageset.cpp b/src/resources/imageset.cpp index b7263ec3..b321439a 100644 --- a/src/resources/imageset.cpp +++ b/src/resources/imageset.cpp @@ -17,16 +17,13 @@ * 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 - * - * $Id: imageset.cpp 4209 2008-04-29 12:58:21Z b_lindeijer $ */ +#include "image.h" #include "imageset.h" #include "../log.h" -#include "image.h" - #include "../utils/dtor.h" ImageSet::ImageSet(Image *img, int width, int height) diff --git a/src/resources/imageset.h b/src/resources/imageset.h index e276dd06..c7915212 100644 --- a/src/resources/imageset.h +++ b/src/resources/imageset.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: imageset.h 3753 2007-11-20 12:27:56Z b_lindeijer $ */ #ifndef _TMW_IMAGESET_H @@ -30,7 +28,6 @@ class Image; - /** * Stores a set of subimages originating from a single image. */ diff --git a/src/resources/imagewriter.cpp b/src/resources/imagewriter.cpp index f11cad24..36805646 100644 --- a/src/resources/imagewriter.cpp +++ b/src/resources/imagewriter.cpp @@ -17,15 +17,13 @@ * 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 - * - * $Id: imagewriter.cpp 2417 2006-07-19 15:12:06Z umperio $ */ -#include "imagewriter.h" - #include -#include #include +#include + +#include "imagewriter.h" #include "../log.h" diff --git a/src/resources/imagewriter.h b/src/resources/imagewriter.h index c7968d30..632e2ae4 100644 --- a/src/resources/imagewriter.h +++ b/src/resources/imagewriter.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: imagewriter.h 1766 2005-09-18 01:31:33Z bertram25 $ */ #include diff --git a/src/resources/itemdb.cpp b/src/resources/itemdb.cpp index 8b73f646..3f8dadce 100644 --- a/src/resources/itemdb.cpp +++ b/src/resources/itemdb.cpp @@ -17,15 +17,13 @@ * 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 - * - * $Id: itemdb.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #include + #include #include "itemdb.h" - #include "iteminfo.h" #include "resourcemanager.h" diff --git a/src/resources/itemdb.h b/src/resources/itemdb.h index 1ee1b5f0..9b661a60 100644 --- a/src/resources/itemdb.h +++ b/src/resources/itemdb.h @@ -17,17 +17,15 @@ * 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 - * - * $Id: itemdb.h 3587 2007-09-20 13:24:20Z b_lindeijer $ */ #ifndef _TMW_ITEM_MANAGER_H #define _TMW_ITEM_MANAGER_H -#include "iteminfo.h" - #include +#include "iteminfo.h" + /** * The namespace that holds the item information. */ diff --git a/src/resources/iteminfo.cpp b/src/resources/iteminfo.cpp index 64f5c37e..5daeafe6 100644 --- a/src/resources/iteminfo.cpp +++ b/src/resources/iteminfo.cpp @@ -17,13 +17,10 @@ * 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 - * - * $Id: iteminfo.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ -#include "iteminfo.h" - #include "itemdb.h" +#include "iteminfo.h" const std::string& ItemInfo::getSprite(int gender) const diff --git a/src/resources/iteminfo.h b/src/resources/iteminfo.h index 85f79263..4678bc08 100644 --- a/src/resources/iteminfo.h +++ b/src/resources/iteminfo.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: iteminfo.h 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #ifndef _TMW_ITEMINFO_H_ diff --git a/src/resources/mapreader.cpp b/src/resources/mapreader.cpp index f3d78ae9..d6154ee0 100644 --- a/src/resources/mapreader.cpp +++ b/src/resources/mapreader.cpp @@ -17,18 +17,15 @@ * 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 - * - * $Id: mapreader.cpp 4255 2008-05-21 21:44:27Z crush_tmw $ */ -#include "mapreader.h" - #include #include #include -#include "resourcemanager.h" #include "image.h" +#include "mapreader.h" +#include "resourcemanager.h" #include "../log.h" #include "../map.h" diff --git a/src/resources/mapreader.h b/src/resources/mapreader.h index eb0d4873..ef52564e 100644 --- a/src/resources/mapreader.h +++ b/src/resources/mapreader.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: mapreader.h 3587 2007-09-20 13:24:20Z b_lindeijer $ */ #ifndef _TMW_MAPREADER_H_ @@ -28,8 +26,8 @@ #include -class Properties; class Map; +class Properties; class Tileset; /** diff --git a/src/resources/monsterdb.cpp b/src/resources/monsterdb.cpp index 8d8dd133..4d52b8ad 100644 --- a/src/resources/monsterdb.cpp +++ b/src/resources/monsterdb.cpp @@ -17,12 +17,9 @@ * 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 - * - * $Id: monsterdb.cpp 4255 2008-05-21 21:44:27Z crush_tmw $ */ #include "monsterdb.h" - #include "resourcemanager.h" #include "../log.h" diff --git a/src/resources/monsterdb.h b/src/resources/monsterdb.h index 43865bb3..f1d69e72 100644 --- a/src/resources/monsterdb.h +++ b/src/resources/monsterdb.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: monsterdb.h 3606 2007-09-27 14:54:09Z b_lindeijer $ */ #ifndef _TMW_MONSTER_DB_H diff --git a/src/resources/monsterinfo.cpp b/src/resources/monsterinfo.cpp index 19f2990b..4a71a122 100644 --- a/src/resources/monsterinfo.cpp +++ b/src/resources/monsterinfo.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: monsterinfo.cpp 2650 2006-09-03 15:00:47Z b_lindeijer $ */ #include "monsterinfo.h" diff --git a/src/resources/monsterinfo.h b/src/resources/monsterinfo.h index c5345bd8..05a78c5a 100644 --- a/src/resources/monsterinfo.h +++ b/src/resources/monsterinfo.h @@ -17,21 +17,18 @@ * 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 - * - * $Id: monsterinfo.h 2650 2006-09-03 15:00:47Z b_lindeijer $ */ #ifndef _TMW_MONSTERINFO_H_ #define _TMW_MONSTERINFO_H_ +#include #include #include #include -#include #include "../being.h" - enum MonsterSoundEvent { MONSTER_EVENT_HIT, diff --git a/src/resources/music.cpp b/src/resources/music.cpp index 0e327218..2386aa43 100644 --- a/src/resources/music.cpp +++ b/src/resources/music.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: music.cpp 3753 2007-11-20 12:27:56Z b_lindeijer $ */ #include "music.h" diff --git a/src/resources/music.h b/src/resources/music.h index a15d22c1..d50150b8 100644 --- a/src/resources/music.h +++ b/src/resources/music.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: music.h 3753 2007-11-20 12:27:56Z b_lindeijer $ */ #ifndef _TMW_MUSIC_H diff --git a/src/resources/npcdb.cpp b/src/resources/npcdb.cpp index c310d6e3..3ae58067 100644 --- a/src/resources/npcdb.cpp +++ b/src/resources/npcdb.cpp @@ -17,12 +17,9 @@ * 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 - * - * $Id: npcdb.cpp 4255 2008-05-21 21:44:27Z crush_tmw $ */ #include "npcdb.h" - #include "resourcemanager.h" #include "../log.h" diff --git a/src/resources/npcdb.h b/src/resources/npcdb.h index e1240c5e..b4539866 100644 --- a/src/resources/npcdb.h +++ b/src/resources/npcdb.h @@ -17,15 +17,13 @@ * 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 - * - * $Id: npcdb.h 4255 2008-05-21 21:44:27Z crush_tmw $ */ #ifndef _TMW_NPC_DB_H #define _TMW_NPC_DB_H -#include #include +#include #include struct NPCsprite diff --git a/src/resources/resource.cpp b/src/resources/resource.cpp index 2bb60e56..e9310905 100644 --- a/src/resources/resource.cpp +++ b/src/resources/resource.cpp @@ -17,14 +17,11 @@ * 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 - * - * $Id: resource.cpp 3808 2007-12-22 21:33:47Z b_lindeijer $ */ #include #include "resource.h" - #include "resourcemanager.h" Resource::~Resource() diff --git a/src/resources/resource.h b/src/resources/resource.h index 9c70f6c0..e85e3147 100644 --- a/src/resources/resource.h +++ b/src/resources/resource.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: resource.h 3808 2007-12-22 21:33:47Z b_lindeijer $ */ #ifndef _TMW_RESOURCE_H diff --git a/src/resources/resourcemanager.cpp b/src/resources/resourcemanager.cpp index 16a2c470..310982af 100644 --- a/src/resources/resourcemanager.cpp +++ b/src/resources/resourcemanager.cpp @@ -17,29 +17,25 @@ * 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 - * - * $Id: resourcemanager.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #include -#include -#include - #include #include +#include -#include "resourcemanager.h" +#include #include "dye.h" #include "image.h" +#include "imageset.h" #include "music.h" +#include "resourcemanager.h" #include "soundeffect.h" -#include "imageset.h" #include "spritedef.h" #include "../log.h" - ResourceManager *ResourceManager::instance = NULL; ResourceManager::ResourceManager() diff --git a/src/resources/resourcemanager.h b/src/resources/resourcemanager.h index 3f0f1704..c814d752 100644 --- a/src/resources/resourcemanager.h +++ b/src/resources/resourcemanager.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: resourcemanager.h 3839 2008-01-13 16:28:50Z the_enemy $ */ #ifndef _TMW_RESOURCE_MANAGER_H @@ -29,11 +27,11 @@ #include #include -class Resource; class Image; +class ImageSet; class Music; +class Resource; class SoundEffect; -class ImageSet; class SpriteDef; struct SDL_Surface; diff --git a/src/resources/soundeffect.cpp b/src/resources/soundeffect.cpp index 03fa337e..e21fd2b0 100644 --- a/src/resources/soundeffect.cpp +++ b/src/resources/soundeffect.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: soundeffect.cpp 3753 2007-11-20 12:27:56Z b_lindeijer $ */ #include "soundeffect.h" diff --git a/src/resources/soundeffect.h b/src/resources/soundeffect.h index 0a574e7d..c3ff6668 100644 --- a/src/resources/soundeffect.h +++ b/src/resources/soundeffect.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: soundeffect.h 3753 2007-11-20 12:27:56Z b_lindeijer $ */ #ifndef _TMW_SOUND_EFFECT_H diff --git a/src/resources/spritedef.cpp b/src/resources/spritedef.cpp index a6d8891e..b4193fd3 100644 --- a/src/resources/spritedef.cpp +++ b/src/resources/spritedef.cpp @@ -17,20 +17,17 @@ * 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 - * - * $Id$ */ #include -#include "spritedef.h" - #include "action.h" #include "animation.h" #include "dye.h" #include "image.h" #include "imageset.h" #include "resourcemanager.h" +#include "spritedef.h" #include "../log.h" #include "../utils/xml.h" diff --git a/src/resources/spritedef.h b/src/resources/spritedef.h index 72c2566f..4b712340 100644 --- a/src/resources/spritedef.h +++ b/src/resources/spritedef.h @@ -17,8 +17,6 @@ * 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 - * - * $Id$ */ #ifndef _TMW_SPRITEDEF_H @@ -27,10 +25,10 @@ #include #include -#include "resource.h" - #include +#include "resource.h" + class Action; class ImageSet; diff --git a/src/serverinfo.h b/src/serverinfo.h index 9a9eef1d..4d2bb525 100644 --- a/src/serverinfo.h +++ b/src/serverinfo.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: serverinfo.h 1735 2005-09-13 22:56:29Z der_doener $ */ #ifndef _TMW_SERVERINFO_ diff --git a/src/shopitem.cpp b/src/shopitem.cpp index 8bd79cc1..9888f829 100644 --- a/src/shopitem.cpp +++ b/src/shopitem.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: shopitem.cpp 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #include "shopitem.h" diff --git a/src/shopitem.h b/src/shopitem.h index 4e6fd3a3..f0c00ef0 100644 --- a/src/shopitem.h +++ b/src/shopitem.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: shopitem.h 4347 2008-06-12 09:06:01Z b_lindeijer $ */ #ifndef _SHOPITEM_H_ diff --git a/src/simpleanimation.cpp b/src/simpleanimation.cpp index a75a3392..544d02b5 100644 --- a/src/simpleanimation.cpp +++ b/src/simpleanimation.cpp @@ -17,19 +17,15 @@ * 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 - * - * $Id: simpleanimation.cpp 3587 2007-09-20 13:24:20Z b_lindeijer $ */ -#include "simpleanimation.h" - #include "graphics.h" #include "log.h" +#include "simpleanimation.h" #include "resources/image.h" -#include "resources/resourcemanager.h" #include "resources/imageset.h" - +#include "resources/resourcemanager.h" SimpleAnimation::SimpleAnimation(xmlNodePtr animationNode): mAnimationTime(0), diff --git a/src/simpleanimation.h b/src/simpleanimation.h index dfca33e2..577268a8 100644 --- a/src/simpleanimation.h +++ b/src/simpleanimation.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: simpleanimation.h 3301 2007-05-23 21:35:01Z b_lindeijer $ */ #ifndef _TMW_SIMPLEANIMAION_H diff --git a/src/sound.cpp b/src/sound.cpp index f0101442..6d440134 100644 --- a/src/sound.cpp +++ b/src/sound.cpp @@ -17,15 +17,13 @@ * 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 - * - * $Id: sound.cpp 3892 2008-02-18 10:00:45Z umperio $ */ -#include "sound.h" - #include #include "log.h" +#include "sound.h" + #include "resources/resourcemanager.h" #include "resources/soundeffect.h" diff --git a/src/sound.h b/src/sound.h index ebcd6442..72180607 100644 --- a/src/sound.h +++ b/src/sound.h @@ -17,15 +17,12 @@ * 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 - * - * $Id$ */ #ifndef _TMW_SOUND_H #define _TMW_SOUND_H #include - #include /** Sound engine diff --git a/src/sprite.h b/src/sprite.h index cbe32186..0e0a95db 100644 --- a/src/sprite.h +++ b/src/sprite.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: sprite.h 3292 2007-05-07 16:22:54Z crush_tmw $ */ #ifndef _TMW_SPRITE_H_ diff --git a/src/text.cpp b/src/text.cpp index 545c1c0e..4d36b8fc 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -19,12 +19,11 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include "text.h" - #include #include +#include "text.h" #include "textmanager.h" int Text::mInstances = 0; diff --git a/src/textmanager.cpp b/src/textmanager.cpp index 54d44c2a..cb5d0bf2 100644 --- a/src/textmanager.cpp +++ b/src/textmanager.cpp @@ -19,11 +19,10 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include "textmanager.h" - #include #include "text.h" +#include "textmanager.h" TextManager *textManager = 0; diff --git a/src/textparticle.cpp b/src/textparticle.cpp index 89466006..ed9d5717 100644 --- a/src/textparticle.cpp +++ b/src/textparticle.cpp @@ -17,13 +17,10 @@ * 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 - * - * $Id$ */ -#include "textparticle.h" - #include "graphics.h" +#include "textparticle.h" TextParticle::TextParticle(Map *map, const std::string &text, int colorR, int colorG, int colorB, diff --git a/src/textparticle.h b/src/textparticle.h index 5f81abff..f662621f 100644 --- a/src/textparticle.h +++ b/src/textparticle.h @@ -17,18 +17,15 @@ * 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 - * - * $Id: textparticle.h 3539 2007-08-28 16:42:47Z b_lindeijer $ */ #ifndef _TEXTPARTICLE_H #define _TEXTPARTICLE_H -#include "particle.h" - #include #include "guichanfwd.h" +#include "particle.h" class TextParticle : public Particle { diff --git a/src/utils/base64.cpp b/src/utils/base64.cpp index e98216d4..9d8ba836 100644 --- a/src/utils/base64.cpp +++ b/src/utils/base64.cpp @@ -26,10 +26,9 @@ | Author: Jim Winstead (jimw@php.net) | +----------------------------------------------------------------------+ */ -/* $Id: base64.cpp 2906 2006-12-12 15:18:30Z b_lindeijer $ */ -#include #include +#include #include "base64.h" diff --git a/src/utils/base64.h b/src/utils/base64.h index 3356debf..c802207b 100644 --- a/src/utils/base64.h +++ b/src/utils/base64.h @@ -26,7 +26,6 @@ | Author: Jim Winstead (jimw@php.net) | +----------------------------------------------------------------------+ */ -/* $Id: base64.h 2906 2006-12-12 15:18:30Z b_lindeijer $ */ #ifndef _TMW_BASE64_H #define _TMW_BASE64_H diff --git a/src/utils/dtor.h b/src/utils/dtor.h index 29cde178..514ea9e7 100644 --- a/src/utils/dtor.h +++ b/src/utils/dtor.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: dtor.h 2271 2006-03-18 15:15:33Z der_doener $ */ #ifndef _TMW_UTILS_DTOR_H diff --git a/src/utils/fastsqrt.h b/src/utils/fastsqrt.h index 4513a79d..8da1d354 100644 --- a/src/utils/fastsqrt.h +++ b/src/utils/fastsqrt.h @@ -5,8 +5,6 @@ * http://www.math.purdue.edu/~clomont/Math/Papers/2003/InvSqrt.pdf * * Unfortunately the original creator of this function seems to be unknown. - * - * $Id: fastsqrt.h 3508 2007-08-22 16:32:52Z b_lindeijer $ */ float fastInvSqrt(float x) diff --git a/src/utils/strprintf.cpp b/src/utils/strprintf.cpp index 48fc3814..c532dd0d 100644 --- a/src/utils/strprintf.cpp +++ b/src/utils/strprintf.cpp @@ -17,8 +17,6 @@ * 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 - * - * $Id: strprintf.cpp 3416 2007-08-06 06:20:14Z gmelquio $ */ #include diff --git a/src/utils/strprintf.h b/src/utils/strprintf.h index 66d753fa..382ab6e0 100644 --- a/src/utils/strprintf.h +++ b/src/utils/strprintf.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: strprintf.h 3417 2007-08-06 11:14:45Z gmelquio $ */ #ifndef _TMW_UTILS_STRPRINTF_H diff --git a/src/utils/tostring.h b/src/utils/tostring.h index 3cbeef27..d2dd941a 100644 --- a/src/utils/tostring.h +++ b/src/utils/tostring.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: tostring.h 3500 2007-08-21 15:11:19Z joshlangley $ */ #ifndef _TMW_UTILS_TOSTRING_H diff --git a/src/utils/trim.h b/src/utils/trim.h index 7b236730..a7c40ca2 100644 --- a/src/utils/trim.h +++ b/src/utils/trim.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: trim.h 3606 2007-09-27 14:54:09Z b_lindeijer $ */ #ifndef _TMW_UTILS_TRIM_H_ diff --git a/src/utils/xml.cpp b/src/utils/xml.cpp index c0b921b8..e511ced3 100644 --- a/src/utils/xml.cpp +++ b/src/utils/xml.cpp @@ -17,12 +17,12 @@ * 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 - * - * $Id: xml.cpp 4255 2008-05-21 21:44:27Z crush_tmw $ */ #include "xml.h" + #include "../log.h" + #include "../resources/resourcemanager.h" namespace XML diff --git a/src/utils/xml.h b/src/utils/xml.h index c64c1204..9e691963 100644 --- a/src/utils/xml.h +++ b/src/utils/xml.h @@ -17,17 +17,15 @@ * 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 - * - * $Id: xml.h 4255 2008-05-21 21:44:27Z crush_tmw $ */ #ifndef _TMW_XML_H #define _TMW_XML_H -#include - #include +#include + /** * XML helper functions. */ diff --git a/src/vector.h b/src/vector.h index 379c50e1..b19f6c64 100644 --- a/src/vector.h +++ b/src/vector.h @@ -17,8 +17,6 @@ * 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 - * - * $Id: vector.h 3541 2007-08-29 00:31:59Z b_lindeijer $ */ #ifndef _TMW_VECTOR_H_ -- cgit v1.2.3-70-g09d2 From 193ccbdba8031a351ea622f8842b6d9a0b6cfd43 Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Thu, 8 Jan 2009 22:03:33 +0100 Subject: Made remaining dialogs translatable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Most strings are now translatable. Please do report any missing ones. Strings excluded from translation are anything that gets written to the log file or is otherwise not shown in the GUI. Signed-off-by: Bjørn Lindeijer --- po/POTFILES.in | 15 +++ src/gui/buysell.cpp | 10 +- src/gui/chat.cpp | 192 +++++++++++++++++++----------------- src/gui/colour.cpp | 20 ++-- src/gui/help.cpp | 6 +- src/gui/setup_colours.cpp | 4 +- src/gui/setup_keyboard.cpp | 12 ++- src/gui/setup_players.cpp | 62 +++++++----- src/gui/setup_video.cpp | 4 +- src/gui/skill.cpp | 34 +++---- src/gui/smileycontainer.cpp | 5 +- src/gui/smileyshortcutcontainer.cpp | 3 +- src/gui/smileywindow.cpp | 11 ++- src/gui/speechbubble.cpp | 4 +- src/gui/status.cpp | 90 ++++++++--------- src/gui/trade.cpp | 4 +- src/gui/updatewindow.cpp | 31 +++--- src/main.cpp | 90 ++++++++--------- 18 files changed, 327 insertions(+), 270 deletions(-) (limited to 'src/gui/setup_players.cpp') diff --git a/po/POTFILES.in b/po/POTFILES.in index e66b8f69..1005e363 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,11 +1,15 @@ # List of source files which contain translatable strings. src/gui/buy.cpp +src/gui/buysell.cpp src/gui/char_select.cpp src/gui/char_server.cpp +src/gui/chat.cpp +src/gui/colour.cpp src/gui/confirm_dialog.cpp src/gui/connection.cpp src/gui/equipmentwindow.cpp +src/gui/help.cpp src/gui/inventorywindow.cpp src/gui/item_amount.cpp src/gui/login.cpp @@ -19,8 +23,19 @@ src/gui/register.cpp src/gui/sell.cpp src/gui/setup_audio.cpp src/gui/setup.cpp +src/gui/setup_colours.cpp src/gui/setup_joystick.cpp +src/gui/setup_keyboard.cpp +src/gui/setup_players.cpp src/gui/setup_video.cpp +src/gui/skill.cpp +src/gui/smileycontainer.cpp +src/gui/smileyshortcutcontainer.cpp +src/gui/smileywindow.cpp +src/gui/speechbubble.cpp +src/gui/status.cpp src/gui/trade.cpp +src/gui/updatewindow.cpp src/net/playerhandler.cpp src/resources/itemdb.cpp +src/main.cpp diff --git a/src/gui/buysell.cpp b/src/gui/buysell.cpp index 57c95841..724ae8a1 100644 --- a/src/gui/buysell.cpp +++ b/src/gui/buysell.cpp @@ -24,18 +24,20 @@ #include "../npc.h" +#include "../utils/gettext.h" + BuySellDialog::BuySellDialog(): - Window("Shop") + Window(_("Shop")) { Button *buyButton = 0; - const char *buttonNames[] = { - "Buy", "Sell", "Cancel", 0 + static const char *buttonNames[] = { + N_("Buy"), N_("Sell"), N_("Cancel"), 0 }; int x = 10, y = 10; for (const char **curBtn = buttonNames; *curBtn; curBtn++) { - Button *btn = new Button(*curBtn, *curBtn, this); + Button *btn = new Button(gettext(*curBtn), *curBtn, this); if (!buyButton) buyButton = btn; // For focus request btn->setPosition(x, y); add(btn); diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 71954601..35976963 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -42,12 +42,14 @@ #include "../net/messageout.h" #include "../net/protocol.h" +#include "../utils/gettext.h" +#include "../utils/strprintf.h" #include "../utils/trim.h" ChatWindow::ChatWindow(Network * network): Window(""), mNetwork(network), mTmpVisible(false) { - setWindowName("Chat"); + setWindowName(_("Chat")); setResizable(true); setDefaultSize(0, windowContainer->getHeight() - 123, 600, 123); @@ -127,7 +129,7 @@ void ChatWindow::chatLog(std::string line, int own, bool ignoreRecord) tmp.text = line.substr(pos + 3); } else { // Fix the owner of welcome message. - if (line.substr(0, 7) == "Welcome") + if (line.substr(0, 7) == _("Welcome")) { own = BY_SERVER; } @@ -138,12 +140,12 @@ void ChatWindow::chatLog(std::string line, int own, bool ignoreRecord) case BY_GM: if (tmp.nick.empty()) { - tmp.nick = std::string("Global announcement: "); + tmp.nick = std::string(_("Global announcement: ")); lineColor = "##G"; } else { - tmp.nick = std::string("Global announcement from " + tmp.nick + tmp.nick = std::string(_("Global announcement from ") + tmp.nick + std::string(": ")); lineColor = "##1"; // Equiv. to BrowserBox::RED } @@ -157,7 +159,8 @@ void ChatWindow::chatLog(std::string line, int own, bool ignoreRecord) lineColor = "##C"; break; case BY_SERVER: - tmp.nick = "Server: "; + tmp.nick = _("Server:"); + tmp.nick += " "; tmp.text = line; lineColor = "##S"; break; @@ -281,7 +284,7 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) std::size_t length = msg.length() + 1; if (length == 0) { - chatLog("Trying to send a blank party message.", BY_SERVER); + chatLog(_("Trying to send a blank party message."), BY_SERVER); return; } MessageOut outMsg(mNetwork); @@ -383,7 +386,7 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) outMsg.writeString(recvnick, 24); outMsg.writeString(msg, msg.length()); - chatLog("Whispering to " + recvnick + " : " + msg, BY_PLAYER); + chatLog(_("Whispering to ") + recvnick + " : " + msg, BY_PLAYER); return; } if (command == "record") { @@ -392,29 +395,29 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) } if (command == "toggle") { if (msg == "") { - chatLog(mReturnToggles ? "Return toggles chat." - : "Message closes chat.", BY_SERVER); + chatLog(mReturnToggles ? _("Return toggles chat.") + : _("Message closes chat."), BY_SERVER); return; } msg = msg.substr(0, 1); if (msg == "1" || msg == "y" || msg == "t" || msg == "Y" || msg == "T") { - chatLog("Return now toggles chat.", BY_SERVER); + chatLog(_("Return now toggles chat."), BY_SERVER); mReturnToggles = true; return; } if (msg == "0" || msg == "n" || msg == "f" || msg == "N" || msg == "F") { - chatLog("Message now closes chat.", BY_SERVER); + chatLog(_("Message now closes chat."), BY_SERVER); mReturnToggles = false; return; } - chatLog("Options to /toggle are \"yes\", \"no\", \"true\", \"false\", " - "\"1\", \"0\".", BY_SERVER); + chatLog(_("Options to /toggle are \"yes\", \"no\", \"true\", \"false\", " + "\"1\", \"0\"."), BY_SERVER); return; } if (command == "party") { if (msg == "") { - chatLog("Unknown party command... Type \"/help\" party for more " - "information.", BY_SERVER); + chatLog(_("Unknown party command... Type \"/help\" party for more " + "information."), BY_SERVER); return; } const std::string::size_type space = msg.find(" "); @@ -451,10 +454,10 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) outMsg.writeInt8(0); outMsg.writeString("", 24); } else { - chatLog("No such spell!", BY_SERVER); + chatLog(_("No such spell!"), BY_SERVER); } } else { - chatLog("The current server doesn't support spells", BY_SERVER); + chatLog(_("The current server doesn't support spells"), BY_SERVER); } return; } @@ -484,14 +487,14 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) << "] "; - mRecorder->record(timeStr.str() + "Present: " + response + "."); - chatLog("Attendance written to record log.", BY_SERVER, true); + mRecorder->record(timeStr.str() + _("Present: ") + response + "."); + chatLog(_("Attendance written to record log."), BY_SERVER, true); } else { - chatLog("Present: " + response, BY_SERVER); + chatLog(_("Present: ") + response, BY_SERVER); } return; } - chatLog("Unknown command", BY_SERVER); + chatLog(_("Unknown command"), BY_SERVER); } std::string ChatWindow::const_msg(CHATSKILL act) @@ -500,70 +503,72 @@ std::string ChatWindow::const_msg(CHATSKILL act) if (act.success == SKILL_FAILED && act.skill == SKILL_BASIC) { switch (act.bskill) { case BSKILL_TRADE: - msg = "Trade failed!"; + msg = _("Trade failed!"); break; case BSKILL_EMOTE: - msg = "Emote failed!"; + msg = _("Emote failed!"); break; case BSKILL_SIT: - msg = "Sit failed!"; + msg = _("Sit failed!"); break; case BSKILL_CREATECHAT: - msg = "Chat creating failed!"; + msg = _("Chat creating failed!"); break; case BSKILL_JOINPARTY: - msg = "Could not join party!"; + msg = _("Could not join party!"); break; case BSKILL_SHOUT: - msg = "Cannot shout!"; + msg = _("Cannot shout!"); break; } + msg += " "; + switch (act.reason) { case RFAIL_SKILLDEP: - msg += " You have not yet reached a high enough level!"; + msg += _("You have not yet reached a high enough lvl!"); break; case RFAIL_INSUFHP: - msg += " Insufficient HP!"; + msg += _("Insufficient HP!"); break; case RFAIL_INSUFSP: - msg += " Insufficient SP!"; + msg += _("Insufficient SP!"); break; case RFAIL_NOMEMO: - msg += " You have no memos!"; + msg += _("You have no memos!"); break; case RFAIL_SKILLDELAY: - msg += " You cannot do that right now!"; + msg += _("You cannot do that right now!"); break; case RFAIL_ZENY: - msg += " Seems you need more Zeny... ;-)"; + msg += _("Seems you need more Zeny... ;-)"); break; case RFAIL_WEAPON: - msg += " You cannot use this skill with that kind of weapon!"; + msg += _("You cannot use this skill with that kind of weapon!"); break; case RFAIL_REDGEM: - msg += " You need another red gem!"; + msg += _("You need another red gem!"); break; case RFAIL_BLUEGEM: - msg += " You need another blue gem!"; + msg += _("You need another blue gem!"); break; case RFAIL_OVERWEIGHT: - msg += " You're carrying to much to do this!"; + msg += _("You're carrying to much to do this!"); break; default: - msg += " Huh? What's that?"; + msg += _("Huh? What's that?"); break; } } else { switch (act.skill) { - case SKILL_WARP: - msg = "Warp failed..."; + case SKILL_WARP : + msg = _("Warp failed..."); break; - case SKILL_STEAL: - msg = "Could not steal anything..."; + case SKILL_STEAL : + msg = _("Could not steal anything..."); break; - case SKILL_ENVENOM: - msg = "Poison had no effect..."; + case SKILL_ENVENOM : + msg = _("Poison had no effect..."); break; } } @@ -631,18 +636,18 @@ void ChatWindow::party(const std::string & command, const std::string & rest) if (rest == "") { char temp[2] = "."; *temp = mPartyPrefix; - chatLog("The current party prefix is " + std::string(temp), + chatLog(_("The current party prefix is ") + std::string(temp), BY_SERVER); return; } if (rest.length() != 1) { - chatLog("Party prefix must be one character long.", BY_SERVER); + chatLog(_("Party prefix must be one character long."), BY_SERVER); } else { if (rest == "/") { - chatLog("Cannot use a '/' as the prefix.", BY_SERVER); + chatLog(_("Cannot use a '/' as the prefix."), BY_SERVER); } else { mPartyPrefix = rest.at(0); - chatLog("Changing prefix to " + rest, BY_SERVER); + chatLog(_("Changing prefix to ") + rest, BY_SERVER); } } return; @@ -652,45 +657,47 @@ void ChatWindow::party(const std::string & command, const std::string & rest) void ChatWindow::help(const std::string & msg1, const std::string & msg2) { - chatLog("-- Help --", BY_SERVER); + chatLog(_("-- Help --"), BY_SERVER); if (msg1 == "") { - chatLog("/announce: Global announcement (GM only)", BY_SERVER); - chatLog("/clear: Clears this window", BY_SERVER); - chatLog("/help: Display this help.", BY_SERVER); + 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("/present: Get list of players present", BY_SERVER); + chatLog(_("/msg : Alternate form for /whisper"), BY_SERVER); + chatLog(_("/present: Get list of players present"), BY_SERVER); mRecorder->help(); - chatLog("/toggle: Determine whether toggles the chat log.", + chatLog(_("/toggle: Determine whether toggles the chat log."), BY_SERVER); - chatLog("/where: Display map name", BY_SERVER); - chatLog("/whisper : Sends a private " - " to ", BY_SERVER); - chatLog("/who: Display number of online users", BY_SERVER); - chatLog("For more information, type /help ", BY_SERVER); + chatLog(_("/where: Display map name"), BY_SERVER); + chatLog(_("/w : Short form for /whisper"), BY_SERVER); + chatLog(_("/whisper : Sends a private " + " to "), BY_SERVER); + chatLog(_("/who: Display number of online users"), BY_SERVER); + chatLog(_("For more information, type /help "), BY_SERVER); return; } if (msg1 == "announce") { - chatLog("Command: /announce ", BY_SERVER); - chatLog("*** only available to a GM ***", BY_SERVER); - chatLog("This command sends the message to " - "all players currently online.", BY_SERVER); + chatLog(_("Command: /announce "), BY_SERVER); + chatLog(_("*** only available to a GM ***"), BY_SERVER); + chatLog(_("This command sends the message to " + "all players currently online."), BY_SERVER); return; } if (msg1 == "clear") { - chatLog("Command: /clear", BY_SERVER); - chatLog("This command clears the chat log of previous chat.", + chatLog(_("Command: /clear"), BY_SERVER); + chatLog(_("This command clears the chat log of previous chat."), BY_SERVER); return; } if (msg1 == "help") { - chatLog("Command: /help", BY_SERVER); - chatLog("This command displays a list of all commands available.", + chatLog(_("Command: /help"), BY_SERVER); + chatLog(_("This command displays a list of all commands available."), BY_SERVER); - chatLog("Command: /help ", BY_SERVER); - chatLog("This command displays help on .", BY_SERVER); + chatLog(_("Command: /help "), BY_SERVER); + chatLog(_("This command displays help on ."), BY_SERVER); return; } if (msg1 == "party") @@ -700,10 +707,8 @@ void ChatWindow::help(const std::string & msg1, const std::string & msg2) } if (msg1 == "present") { - chatLog("Command: /present", BY_SERVER); - chatLog("This command gets a list of players within hearing " - "and sends it to either the record log if recording, or the " - "chat log otherwise.", BY_SERVER); + chatLog(_("Command: /present"), BY_SERVER); + chatLog(_("This command gets a list of players within hearing and sends it to either the record log if recording, or the chat log otherwise."), BY_SERVER); return; } if (msg1 == "record") @@ -713,38 +718,39 @@ void ChatWindow::help(const std::string & msg1, const std::string & msg2) } if (msg1 == "toggle") { - chatLog("Command: /toggle ", BY_SERVER); - chatLog("This command sets whether the return key should toggle the " - "chat log, or whether the chat log turns off automatically.", + chatLog(_("Command: /toggle "), BY_SERVER); + chatLog(_("This command sets whether the return key should toggle the chat log, or whether the chat log turns off automatically."), BY_SERVER); - chatLog(" can be one of \"1\", \"yes\", \"true\" to turn " - "the toggle on, or \"0\", \"no\", \"false\" to turn the " - "toggle off.", BY_SERVER); - chatLog("Command: /toggle", BY_SERVER); - chatLog("This command displays the return toggle status.", BY_SERVER); + chatLog(_(" can be one of \"1\", \"yes\", \"true\" to turn the toggle on, or \"0\", \"no\", \"false\" to turn the toggle off."), BY_SERVER); + chatLog(_("Command: /toggle"), BY_SERVER); + chatLog(_("This command displays the return toggle status."), BY_SERVER); return; } if (msg1 == "where") { - chatLog("Command: /where", BY_SERVER); - chatLog("This command displays the name of the current map.", + chatLog(_("Command: /where"), BY_SERVER); + chatLog(_("This command displays the name of the current map."), BY_SERVER); return; } - if (msg1 == "whisper" || msg1 == "msg" || msg1 == "w") { - chatLog("Command: /whisper ", BY_SERVER); - chatLog("This command sends the message to has spaces in it, enclose it in " - "double quotes (\").", BY_SERVER); + if (msg1 == "whisper" || msg1 == "msg" || msg1 == "w") + { + chatLog(_("Command: /msg "), BY_SERVER); + chatLog(_("Command: /whisper "), BY_SERVER); + chatLog(_("Command: /w "), BY_SERVER); + chatLog(_("This command sends the message to ."), + BY_SERVER); + chatLog(_("If the has spaces in it, enclose it in " + "double quotes (\")."), BY_SERVER); return; } if (msg1 == "who") { - chatLog("Command: /who", BY_SERVER); - chatLog("This command displays the number of players currently " - "online.", BY_SERVER); + chatLog(_("Command: /who"), BY_SERVER); + chatLog(_("This command displays the number of players currently " + "online."), BY_SERVER); return; } - chatLog("Unknown command.", BY_SERVER); - chatLog("Type /help for a list of commands.", BY_SERVER); + chatLog(_("Unknown command."), BY_SERVER); + chatLog(_("Type /help for a list of commands."), BY_SERVER); } diff --git a/src/gui/colour.cpp b/src/gui/colour.cpp index 4c3782a4..816420ed 100644 --- a/src/gui/colour.cpp +++ b/src/gui/colour.cpp @@ -25,17 +25,19 @@ #include "../configuration.h" +#include "../utils/gettext.h" + Colour::Colour() { - addColour('C', 0x000000, "Chat"); - addColour('G', 0xff0000, "GM"); - addColour('Y', 0x1fa052, "Player"); - addColour('W', 0x0000ff, "Whisper"); - addColour('I', 0xf1dc27, "Is"); - addColour('P', 0xff00d8, "Party"); - addColour('S', 0x8415e2, "Server"); - addColour('L', 0x919191, "Logger"); - addColour('<', 0xe50d0d, "Hyperlink"); + addColour('C', 0x000000, _("Chat")); + addColour('G', 0xff0000, _("GM")); + addColour('Y', 0x1fa052, _("Player")); + addColour('W', 0x0000ff, _("Whisper")); + addColour('I', 0xf1dc27, _("Is")); + addColour('P', 0xff00d8, _("Party")); + addColour('S', 0x8415e2, _("Server")); + addColour('L', 0x919191, _("Logger")); + addColour('<', 0xe50d0d, _("Hyperlink")); commit(); } diff --git a/src/gui/help.cpp b/src/gui/help.cpp index 19413a08..3594b9a6 100644 --- a/src/gui/help.cpp +++ b/src/gui/help.cpp @@ -26,8 +26,10 @@ #include "../resources/resourcemanager.h" +#include "../utils/gettext.h" + HelpWindow::HelpWindow(): - Window("Help") + Window(_("Help")) { setContentSize(455, 350); setWindowName("Help"); @@ -35,7 +37,7 @@ HelpWindow::HelpWindow(): mBrowserBox = new BrowserBox(); mBrowserBox->setOpaque(false); mScrollArea = new ScrollArea(mBrowserBox); - Button *okButton = new Button("Close", "close", this); + Button *okButton = new Button(_("Close"), "close", this); mScrollArea->setDimension(gcn::Rectangle( 5, 5, 445, 335 - okButton->getHeight())); diff --git a/src/gui/setup_colours.cpp b/src/gui/setup_colours.cpp index 0becd48f..dca47630 100644 --- a/src/gui/setup_colours.cpp +++ b/src/gui/setup_colours.cpp @@ -32,8 +32,10 @@ #include "../configuration.h" +#include "../utils/gettext.h" + Setup_Colours::Setup_Colours() : - mColourLabel("Colour:"), + mColourLabel(_("Colour:")), mSelected(-1) { mColourBox = new gcn::ListBox(textColour); diff --git a/src/gui/setup_keyboard.cpp b/src/gui/setup_keyboard.cpp index 007fcb52..75fa542f 100644 --- a/src/gui/setup_keyboard.cpp +++ b/src/gui/setup_keyboard.cpp @@ -33,6 +33,7 @@ #include "../configuration.h" #include "../keyboardconfig.h" +#include "../utils/gettext.h" #include "../utils/tostring.h" /** @@ -83,13 +84,13 @@ Setup_Keyboard::Setup_Keyboard(): scrollArea->setDimension(gcn::Rectangle(10, 10, 200, 140)); add(scrollArea); - mAssignKeyButton = new Button("Assign", "assign", this); + mAssignKeyButton = new Button(_("Assign"), "assign", this); mAssignKeyButton->setPosition(165, 155); mAssignKeyButton->addActionListener(this); mAssignKeyButton->setEnabled(false); add(mAssignKeyButton); - mMakeDefaultButton = new Button("Default", "makeDefault", this); + mMakeDefaultButton = new Button(_("Default"), "makeDefault", this); mMakeDefaultButton->setPosition(10, 155); mMakeDefaultButton->addActionListener(this); add(mMakeDefaultButton); @@ -110,8 +111,9 @@ void Setup_Keyboard::apply() if (keyboard.hasConflicts()) { - new OkDialog("Key Conflict(s) Detected.", - "Resolve them, or gameplay may result in strange behaviour."); + new OkDialog(_("Key Conflict(s) Detected."), + _("Resolve them, or gameplay may result in strange " + "behaviour.")); } keyboard.setEnabled(true); keyboard.store(); @@ -169,7 +171,7 @@ void Setup_Keyboard::newKeyCallback(int index) void Setup_Keyboard::refreshKeys() { - for(int i = 0; i < keyboard.KEY_TOTAL; i++) + for (int i = 0; i < keyboard.KEY_TOTAL; i++) { refreshAssignedKey(i); } diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index d07a9685..0f52be41 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -34,6 +34,8 @@ #include "../player_relations.h" #include "../sound.h" +#include "../utils/gettext.h" + #define COLUMNS_NR 2 // name plus listbox #define NAME_COLUMN 0 #define RELATION_CHOICE_COLUMN 1 @@ -46,10 +48,16 @@ #define WIDGET_AT(row, column) (((row) * COLUMNS_NR) + column) -static std::string table_titles[COLUMNS_NR] = {" name", "relation "}; +static const char *table_titles[COLUMNS_NR] = { + N_("Name"), + N_("Relation") +}; -static const std::string RELATION_NAMES[PlayerRelation::RELATIONS_NR] = { - "neutral", "friend", "disregarded", "ignored" +static const char *RELATION_NAMES[PlayerRelation::RELATIONS_NR] = { + N_("Neutral"), + N_("Friend"), + N_("Disregarded"), + N_("Ignored") }; class PlayerRelationListModel : public gcn::ListModel @@ -66,7 +74,7 @@ public: { if (i >= getNumberOfElements() || i < 0) return ""; - return RELATION_NAMES[i]; + return gettext(RELATION_NAMES[i]); } }; @@ -135,7 +143,8 @@ public: virtual void updateModelInRow(int row) { - gcn::DropDown *choicebox = dynamic_cast(getElementAt(row, RELATION_CHOICE_COLUMN)); + gcn::DropDown *choicebox = dynamic_cast( + getElementAt(row, RELATION_CHOICE_COLUMN)); player_relations.setRelation(getPlayerAt(row), static_cast(choicebox->getSelected())); } @@ -185,7 +194,7 @@ public: virtual std::string getElementAt(int i) { if (i >= getNumberOfElements()) { - return "???"; + return _("???"); } return (*player_relations.getPlayerIgnoreStrategies())[i]->mDescription; } @@ -201,21 +210,27 @@ Setup_Players::Setup_Players(): mPlayerTable(new GuiTable(mPlayerTableModel)), mPlayerTitleTable(new GuiTable(mPlayerTableTitleModel)), mPlayerScrollArea(new ScrollArea(mPlayerTable)), - mPersistIgnores(new CheckBox("save player list", player_relations.getPersistIgnores())), - mDefaultTrading(new CheckBox("allow trading", player_relations.getDefault() & PlayerRelation::TRADE)), - mDefaultWhisper(new CheckBox("allow whispers", player_relations.getDefault() & PlayerRelation::WHISPER)), - mDeleteButton(new Button("Delete", ACTION_DELETE, this)), + mPersistIgnores(new CheckBox(_("Save player list"), + player_relations.getPersistIgnores())), + mDefaultTrading(new CheckBox(_("Allow trading"), + 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())) { 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); + mPlayerTableTitleModel->fixColumnWidth(RELATION_CHOICE_COLUMN, + RELATION_CHOICE_COLUMN_WIDTH); mPlayerTitleTable->setDimension(gcn::Rectangle(10, 10, table_width, 10)); mPlayerTitleTable->setBackgroundColor(gcn::Color(0xbf, 0xbf, 0xbf)); - for (int i = 0; i < COLUMNS_NR; i++) - mPlayerTableTitleModel->set(0, i, new gcn::Label(table_titles[i])); + for (int i = 0; i < COLUMNS_NR; i++) { + mPlayerTableTitleModel->set(0, i, + new gcn::Label(gettext(table_titles[i]))); + } mPlayerTitleTable->setLinewiseSelection(true); mPlayerScrollArea->setDimension(gcn::Rectangle(10, 25, table_width + COLUMNS_NR, 90)); @@ -226,7 +241,7 @@ Setup_Players::Setup_Players(): mDeleteButton->setPosition(10, 118); - gcn::Label *ignore_action_label = new gcn::Label("When ignoring:"); + gcn::Label *ignore_action_label = new gcn::Label(_("When ignoring:")); ignore_action_label->setPosition(80, 118); mIgnoreActionChoicesBox->setDimension(gcn::Rectangle(80, 132, 120, 12)); @@ -269,9 +284,9 @@ Setup_Players::~Setup_Players(void) void Setup_Players::reset() { - // We now have to search through the list of ignore choices to find the current - // selection. We could use an index into the table of config options in - // player_relations instead of strategies to sidestep this. + // We now have to search through the list of ignore choices to find the + // current selection. We could use an index into the table of config + // options in player_relations instead of strategies to sidestep this. int selection = 0; for (unsigned int i = 0; i < player_relations.getPlayerIgnoreStrategies()->size(); ++i) if ((*player_relations.getPlayerIgnoreStrategies())[i] == @@ -306,9 +321,10 @@ void Setup_Players::action(const gcn::ActionEvent &event) { if (event.getId() == ACTION_TABLE) { - // temporarily eliminate ourselves: we are fully aware of this change, so there is no - // need for asynchronous updates. (In fact, thouse might destroy the widet that - // triggered them, which would be rather embarrassing.) + // temporarily eliminate ourselves: we are fully aware of this change, + // so there is no need for asynchronous updates. (In fact, thouse + // might destroy the widet that triggered them, which would be rather + // embarrassing.) player_relations.removeListener(this); int row = mPlayerTable->getSelectedRow(); @@ -340,6 +356,8 @@ void Setup_Players::updatedPlayer(const std::string &name) { mPlayerTableModel->playerRelationsUpdated(); - mDefaultTrading->setSelected(player_relations.getDefault() & PlayerRelation::TRADE); - mDefaultWhisper->setSelected(player_relations.getDefault() & PlayerRelation::WHISPER); + mDefaultTrading->setSelected( + player_relations.getDefault() & PlayerRelation::TRADE); + mDefaultWhisper->setSelected( + player_relations.getDefault() & PlayerRelation::WHISPER); } diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index f53a9716..724ce8b4 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -86,9 +86,9 @@ ModeListModel::ModeListModel() /* Check which modes are available */ if (modes == (SDL_Rect **)0) { - logger->log("No modes available"); + logger->log(_("No modes available")); } else if (modes == (SDL_Rect **)-1) { - logger->log("All resolutions available"); + logger->log(_("All resolutions available")); } else { //logger->log("Available Modes"); for (int i = 0; modes[i]; ++i) { diff --git a/src/gui/skill.cpp b/src/gui/skill.cpp index 321a6c52..5e5782d9 100644 --- a/src/gui/skill.cpp +++ b/src/gui/skill.cpp @@ -32,9 +32,11 @@ #include "../log.h" #include "../utils/dtor.h" +#include "../utils/gettext.h" +#include "../utils/strprintf.h" #include "../utils/xml.h" -#define SKILLS_FILE "skills.xml" +static const char *SKILLS_FILE = "skills.xml"; struct SkillInfo { std::string name; @@ -77,7 +79,7 @@ public: virtual void update(void) { - static const SkillInfo fakeSkillInfo = { "???", false }; + static const SkillInfo fakeSkillInfo = { _("???"), false }; mEntriesNr = mDialog->getSkills().size(); resize(); @@ -94,13 +96,13 @@ public: info = &fakeSkillInfo; sprintf(tmp, "%c%s", info->modifiable? ' ' : '*', info->name.c_str()); - gcn::Label *name_label = new gcn::Label(std::string(tmp)); + gcn::Label *name_label = new gcn::Label(tmp); sprintf(tmp, "Lv:%i", skill->lv); - gcn::Label *lv_label = new gcn::Label(std::string(tmp)); + gcn::Label *lv_label = new gcn::Label(tmp); sprintf(tmp, "Sp:%i", skill->sp); - gcn::Label *sp_label = new gcn::Label(std::string(tmp)); + gcn::Label *sp_label = new gcn::Label(tmp); set(i, 0, name_label); set(i, 1, lv_label); @@ -116,22 +118,22 @@ private: SkillDialog::SkillDialog(): - Window("Skills") + Window(_("Skills")) { initSkillinfo(); mTableModel = new SkillGuiTableModel(this); mTable.setModel(mTableModel); mTable.setLinewiseSelection(true); - setWindowName("Skills"); + setWindowName(_("Skills")); setCloseButton(true); setDefaultSize(windowContainer->getWidth() - 260, 25, 255, 260); // mSkillListBox = new ListBox(this); - skillScrollArea = new ScrollArea(&mTable); - mPointsLabel = new gcn::Label("Skill Points:"); - mIncButton = new Button("Up", "inc", this); - mUseButton = new Button("Use", "use", 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"); @@ -185,11 +187,8 @@ void SkillDialog::action(const gcn::ActionEvent &event) void SkillDialog::update() { - if (mPointsLabel != NULL) { - char tmp[128]; - sprintf(tmp, "Skill points: %i", player_node->mSkillPoint); - mPointsLabel->setCaption(tmp); - } + mPointsLabel->setCaption(strprintf(_("Skill points: %d"), + player_node->mSkillPoint)); int selectedSkill = mTable.getSelectedRow(); @@ -260,8 +259,7 @@ initSkillinfo(void) if (!root || !xmlStrEqual(root->name, BAD_CAST "skills")) { - logger->log("Error loading skills file: " - SKILLS_FILE); + logger->log(_("Error loading skills file: %s"), SKILLS_FILE); skill_db.resize(2, emptySkillInfo); skill_db[1].name = "Basic"; skill_db[1].modifiable = true; diff --git a/src/gui/smileycontainer.cpp b/src/gui/smileycontainer.cpp index 5eb99723..d5e2e815 100644 --- a/src/gui/smileycontainer.cpp +++ b/src/gui/smileycontainer.cpp @@ -31,6 +31,7 @@ #include "../resources/iteminfo.h" #include "../resources/resourcemanager.h" +#include "../utils/gettext.h" #include "../utils/tostring.h" const int SmileyContainer::gridWidth = 34; // item icon width + 4 @@ -44,10 +45,10 @@ SmileyContainer::SmileyContainer(): ResourceManager *resman = ResourceManager::getInstance(); mSmileyImg = resman->getImageSet("graphics/gui/emotions.png",30,32); - if (!mSmileyImg) logger->error("Unable to load emotions"); + if (!mSmileyImg) logger->error(_("Unable to load emotions")); mSelImg = resman->getImage("graphics/gui/selection.png"); - if (!mSelImg) logger->error("Unable to load selection.png"); + if (!mSelImg) logger->error(_("Unable to load selection.png")); mMaxSmiley = mSmileyImg->size(); diff --git a/src/gui/smileyshortcutcontainer.cpp b/src/gui/smileyshortcutcontainer.cpp index 5a9c3036..f857ed5d 100644 --- a/src/gui/smileyshortcutcontainer.cpp +++ b/src/gui/smileyshortcutcontainer.cpp @@ -33,6 +33,7 @@ #include "../resources/image.h" #include "../resources/resourcemanager.h" +#include "../utils/gettext.h" #include "../utils/tostring.h" SmileyShortcutContainer::SmileyShortcutContainer(): @@ -48,7 +49,7 @@ SmileyShortcutContainer::SmileyShortcutContainer(): mBackgroundImg = resman->getImage("graphics/gui/item_shortcut_bgr.png"); mSmileyImg = resman->getImageSet("graphics/gui/emotions.png",30,32); - if (!mSmileyImg) logger->error("Unable to load emotions"); + if (!mSmileyImg) logger->error(_("Unable to load emotions")); mMaxItems = 12; diff --git a/src/gui/smileywindow.cpp b/src/gui/smileywindow.cpp index faf634af..570eb45c 100644 --- a/src/gui/smileywindow.cpp +++ b/src/gui/smileywindow.cpp @@ -28,19 +28,22 @@ #include "smileywindow.h" #include "smileycontainer.h" #include "scrollarea.h" -#include "../localplayer.h" + +#include "../localplayer.h" + +#include "../utils/gettext.h" #include "../utils/tostring.h" SmileyWindow::SmileyWindow(): - Window("Emote") + Window(_("Emote")) { - setWindowName("Emote"); + setWindowName(_("Emote")); setResizable(true); setCloseButton(true); setMinWidth(80); setDefaultSize(115, 25, 322, 200); - mUseButton = new Button("Use", "use", this); + mUseButton = new Button(_("Use"), "use", this); mItems = new SmileyContainer(); mItems->addSelectionListener(this); diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp index 6af16496..5539202e 100644 --- a/src/gui/speechbubble.cpp +++ b/src/gui/speechbubble.cpp @@ -27,10 +27,12 @@ #include "../resources/image.h" #include "../resources/resourcemanager.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("Message", false, NULL, "graphics/gui/speechbubble.xml") + Window(_("Message"), false, NULL, "graphics/gui/speechbubble.xml") { mSpeechBox = new TextBox(); mSpeechBox->setEditable(false); diff --git a/src/gui/status.cpp b/src/gui/status.cpp index fbcc01d6..64f3db48 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -28,13 +28,15 @@ #include "../localplayer.h" +#include "../utils/gettext.h" +#include "../utils/strprintf.h" #include "../utils/tostring.h" StatusWindow::StatusWindow(LocalPlayer *player): Window(player->getName()), mPlayer(player) { - setWindowName("Status"); + setWindowName(_("Status")); setCloseButton(true); setDefaultSize((windowContainer->getWidth() - 365) / 2, (windowContainer->getHeight() - 255) / 2, 365, 275); @@ -44,25 +46,25 @@ StatusWindow::StatusWindow(LocalPlayer *player): // Status Part // ---------------------- - mLvlLabel = new gcn::Label("Level:"); - mGpLabel = new gcn::Label("Money:"); - mJobLvlLabel = new gcn::Label("Job:"); + 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)); mHpLabel = new gcn::Label("HP:"); mHpBar = new ProgressBar(1.0f, 80, 15, 0, 171, 34); - mHpValueLabel = new gcn::Label(""); + mHpValueLabel = new gcn::Label; mXpLabel = new gcn::Label("Exp:"); mXpBar = new ProgressBar(1.0f, 80, 15, 143, 192, 211); - mXpValueLabel = new gcn::Label(""); + mXpValueLabel = new gcn::Label; mMpLabel = new gcn::Label("MP:"); mMpBar = new ProgressBar(1.0f, 80, 15, 26, 102, 230); - mMpValueLabel = new gcn::Label(""); + mMpValueLabel = new gcn::Label; mJobXpLabel = new gcn::Label("Job:"); mJobXpBar = new ProgressBar(1.0f, 80, 15, 220, 135, 203); - mJobValueLabel = new gcn::Label(""); + mJobValueLabel = new gcn::Label; int y = 3; int x = 5; @@ -120,34 +122,34 @@ StatusWindow::StatusWindow(LocalPlayer *player): // ---------------------- // Static Labels - gcn::Label *mStatsTitleLabel = new gcn::Label("Stats"); - gcn::Label *mStatsTotalLabel = new gcn::Label("Total"); - gcn::Label *mStatsCostLabel = new gcn::Label("Cost"); + gcn::Label *mStatsTitleLabel = new gcn::Label(_("Stats")); + gcn::Label *mStatsTotalLabel = new gcn::Label(_("Total")); + gcn::Label *mStatsCostLabel = new gcn::Label(_("Cost")); // Derived Stats - mStatsAttackLabel = new gcn::Label("Attack:"); - mStatsDefenseLabel= new gcn::Label("Defense:"); - mStatsMagicAttackLabel = new gcn::Label("M.Attack:"); - mStatsMagicDefenseLabel = new gcn::Label("M.Defense:"); - mStatsAccuracyLabel = new gcn::Label("% Accuracy:"); - mStatsEvadeLabel = new gcn::Label("% Evade:"); - mStatsReflexLabel = new gcn::Label("% Reflex:"); - - mStatsAttackPoints = new gcn::Label(""); - mStatsDefensePoints = new gcn::Label(""); - mStatsMagicAttackPoints = new gcn::Label(""); - mStatsMagicDefensePoints = new gcn::Label(""); - mStatsAccuracyPoints = new gcn::Label("% Accuracy:"); - mStatsEvadePoints = new gcn::Label("% Evade:"); - mStatsReflexPoints = new gcn::Label("% Reflex:"); + mStatsAttackLabel = new gcn::Label(_("Attack:")); + mStatsDefenseLabel= new gcn::Label(_("Defense:")); + mStatsMagicAttackLabel = new gcn::Label(_("M.Attack:")); + mStatsMagicDefenseLabel = new gcn::Label(_("M.Defense:")); + mStatsAccuracyLabel = new gcn::Label(_("% Accuracy:")); + mStatsEvadeLabel = new gcn::Label(_("% Evade:")); + mStatsReflexLabel = new gcn::Label(_("% Reflex:")); + + mStatsAttackPoints = new gcn::Label; + mStatsDefensePoints = new gcn::Label; + mStatsMagicAttackPoints = new gcn::Label; + mStatsMagicDefensePoints = new gcn::Label; + mStatsAccuracyPoints = new gcn::Label; + mStatsEvadePoints = new gcn::Label; + mStatsReflexPoints = new gcn::Label; // New labels for (int i = 0; i < 6; i++) { - mStatsLabel[i] = new gcn::Label(); - mStatsDisplayLabel[i] = new gcn::Label(); + mStatsLabel[i] = new gcn::Label; + mStatsDisplayLabel[i] = new gcn::Label; mPointsLabel[i] = new gcn::Label("0"); } - mRemainingStatsPointsLabel = new gcn::Label(); + mRemainingStatsPointsLabel = new gcn::Label; // Set button events Id mStatsButton[0] = new Button("+", "STR", this); @@ -225,13 +227,13 @@ void StatusWindow::update() { // Status Part // ----------- - mLvlLabel->setCaption("Level: " + toString(mPlayer->mLevel)); + mLvlLabel->setCaption(strprintf(_("Level: %d"), mPlayer->mLevel)); mLvlLabel->adjustSize(); - mJobLvlLabel->setCaption("Job: " + toString(mPlayer->mJobLevel)); + mJobLvlLabel->setCaption(strprintf(_("Job: %d"), mPlayer->mJobLevel)); mJobLvlLabel->adjustSize(); - mGpLabel->setCaption("Money: " + toString(mPlayer->mGp) + " GP"); + mGpLabel->setCaption(strprintf(_("Money: %d GP"), mPlayer->mGp)); mGpLabel->adjustSize(); mHpValueLabel->setCaption(toString(mPlayer->mHp) + @@ -274,20 +276,20 @@ void StatusWindow::update() // Stats Part // ---------- - static const std::string attrNames[6] = { - "Strength", - "Agility", - "Vitality", - "Intelligence", - "Dexterity", - "Luck" + static const char *attrNames[6] = { + N_("Strength"), + N_("Agility"), + N_("Vitality"), + N_("Intelligence"), + N_("Dexterity"), + N_("Luck") }; int statusPoints = mPlayer->mStatsPointsToAttribute; // Update labels for (int i = 0; i < 6; i++) { - mStatsLabel[i]->setCaption(attrNames[i]); + mStatsLabel[i]->setCaption(gettext(attrNames[i])); mStatsDisplayLabel[i]->setCaption(toString((int) mPlayer->mAttr[i])); mPointsLabel[i]->setCaption(toString((int) mPlayer->mAttrUp[i])); @@ -297,8 +299,8 @@ void StatusWindow::update() mStatsButton[i]->setEnabled(mPlayer->mAttrUp[i] <= statusPoints); } - mRemainingStatsPointsLabel->setCaption("Remaining Status Points: " + - toString(statusPoints)); + mRemainingStatsPointsLabel->setCaption( + strprintf(_("Remaining Status Points: %d"), statusPoints)); mRemainingStatsPointsLabel->adjustSize(); // Derived Stats Points @@ -351,12 +353,12 @@ void StatusWindow::update() mXpBar->getX() + mXpBar->getWidth() + 5, mXpLabel->getY()); - mJobXpLabel->setPosition(mXpBar->getX() - mJobXpLabel->getWidth() - 5, + 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, + mJobValueLabel->setPosition(mJobXpBar->getX() + mJobXpBar->getWidth() + 5, mJobXpLabel->getY()); } diff --git a/src/gui/trade.cpp b/src/gui/trade.cpp index 4546cd9e..f6e1c5ea 100644 --- a/src/gui/trade.cpp +++ b/src/gui/trade.cpp @@ -280,8 +280,8 @@ void TradeWindow::action(const gcn::ActionEvent &event) return; if (mMyInventory->contains(item)) { - chatWindow->chatLog("Failed adding item. You can not " - "overlap one kind of item on the window.", BY_SERVER); + chatWindow->chatLog(_("Failed adding item. You can not " + "overlap one kind of item on the window."), BY_SERVER); return; } diff --git a/src/gui/updatewindow.cpp b/src/gui/updatewindow.cpp index e0a9da2e..72cbb34a 100644 --- a/src/gui/updatewindow.cpp +++ b/src/gui/updatewindow.cpp @@ -43,6 +43,7 @@ #include "../resources/resourcemanager.h" +#include "../utils/gettext.h" #include "../utils/tostring.h" /** @@ -75,7 +76,7 @@ loadTextFile(const std::string &fileName) std::ifstream fin(fileName.c_str()); if (!fin) { - logger->log("Couldn't load text file: %s", fileName.c_str()); + logger->log(_("Couldn't load text file: %s"), fileName.c_str()); return lines; } @@ -90,7 +91,7 @@ loadTextFile(const std::string &fileName) UpdaterWindow::UpdaterWindow(const std::string &updateHost, const std::string &updatesDir): - Window("Updating..."), + Window(_("Updating...")), mThread(NULL), mDownloadStatus(UPDATE_NEWS), mUpdateHost(updateHost), @@ -109,10 +110,10 @@ UpdaterWindow::UpdaterWindow(const std::string &updateHost, mBrowserBox = new BrowserBox(); mScrollArea = new ScrollArea(mBrowserBox); - mLabel = new gcn::Label("Connecting..."); + mLabel = new gcn::Label(_("Connecting...")); mProgressBar = new ProgressBar(0.0, 310, 20, 168, 116, 31); - mCancelButton = new Button("Cancel", "cancel", this); - mPlayButton = new Button("Play", "play", this); + mCancelButton = new Button(_("Cancel"), "cancel", this); + mPlayButton = new Button(_("Play"), "play", this); mBrowserBox->setOpaque(false); mPlayButton->setEnabled(false); @@ -193,7 +194,7 @@ void UpdaterWindow::loadNews() { if (!mMemoryBuffer) { - logger->log("Couldn't load news"); + logger->log(_("Couldn't load news")); return; } @@ -324,8 +325,8 @@ int UpdaterWindow::downloadThread(void *ptr) { case CURLE_COULDNT_CONNECT: default: - std::cerr << "curl error " << res << ": " - << uw->mCurlError << " host: " << url.c_str() + std::cerr << _("curl error ") << res << ": " + << uw->mCurlError << _(" host: ") << url.c_str() << std::endl; break; } @@ -360,7 +361,7 @@ int UpdaterWindow::downloadThread(void *ptr) // Remove the corrupted file ::remove(outFilename.c_str()); logger->log( - "Checksum for file %s failed: (%lx/%lx)", + _("Checksum for file %s failed: (%lx/%lx)"), uw->mCurrentFile.c_str(), adler, uw->mCurrentChecksum); attempts++; @@ -410,7 +411,7 @@ void UpdaterWindow::download() if (mThread == NULL) { - logger->log("Unable to create mThread"); + logger->log(_("Unable to create mThread")); mDownloadStatus = UPDATE_ERROR; } } @@ -448,9 +449,9 @@ void UpdaterWindow::logic() mThread = NULL; } mBrowserBox->addRow(""); - mBrowserBox->addRow("##1 The update process is incomplete."); - mBrowserBox->addRow("##1 It is strongly recommended that"); - mBrowserBox->addRow("##1 you try again later"); + mBrowserBox->addRow(_("##1 The update process is incomplete.")); + mBrowserBox->addRow(_("##1 It is strongly recommended that")); + mBrowserBox->addRow(_("##1 you try again later")); mBrowserBox->addRow(mCurlError); mScrollArea->setVerticalScrollAmount( mScrollArea->getVerticalMaxScroll()); @@ -504,7 +505,7 @@ void UpdaterWindow::logic() } else { - logger->log("%s already here", mCurrentFile.c_str()); + logger->log(_("%s already here"), mCurrentFile.c_str()); } mLineIndex++; } @@ -517,7 +518,7 @@ void UpdaterWindow::logic() break; case UPDATE_COMPLETE: enable(); - setLabel("Completed"); + setLabel(_("Completed")); break; case UPDATE_IDLE: break; diff --git a/src/main.cpp b/src/main.cpp index 4a3acce8..c15011ff 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -202,12 +202,12 @@ void setUpdatesDir() << "/" << loginData.port; updatesDir = updates.str(); } else { - logger->log("Error: Invalid update host: %s", updateHost.c_str()); - errorMessage = "Invalid update host: " + updateHost; + logger->log(_("Error: Invalid update host: %s"), updateHost.c_str()); + errorMessage = _("Invalid update host: ") + updateHost; state = ERROR_STATE; } } else { - logger->log("Warning: no protocol was specified for the update host"); + logger->log(_("Warning: no protocol was specified for the update host")); updates << "updates/" << updateHost << "/" << loginData.port; updatesDir = updates.str(); } @@ -217,9 +217,9 @@ void setUpdatesDir() // Verify that the updates directory exists. Create if necessary. if (!resman->isDirectory("/" + updatesDir)) { if (!resman->mkdir("/" + updatesDir)) { - logger->log("Error: %s/%s can't be made, but doesn't exist!", + logger->log(_("Error: %s/%s can't be made, but doesn't exist!"), homeDir.c_str(), updatesDir.c_str()); - errorMessage = "Error creating updates directory!"; + errorMessage = _("Error creating updates directory!"); state = ERROR_STATE; } } @@ -247,7 +247,7 @@ void init_engine(const Options &options) #endif { std::cout << homeDir - << " can't be created, but it doesn't exist! Exiting." + << _(" can't be created, but it doesn't exist! Exiting.") << std::endl; exit(1); } @@ -256,15 +256,15 @@ void init_engine(const Options &options) logger->setLogFile(homeDir + std::string("/aethyra.log")); #ifdef PACKAGE_VERSION - logger->log("Starting Aethyra Version %s", PACKAGE_VERSION); + logger->log(_("Starting Aethyra Version %s"), PACKAGE_VERSION); #else - logger->log("Starting Aethyra - Version not defined"); + logger->log(_("Starting Aethyra - Version not defined")); #endif // Initialize SDL - logger->log("Initializing SDL..."); + logger->log(_("Initializing SDL...")); if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_TIMER) < 0) { - std::cerr << "Could not initialize SDL: " << + std::cerr << _("Could not initialize SDL: ") << SDL_GetError() << std::endl; exit(1); } @@ -277,7 +277,7 @@ void init_engine(const Options &options) if (!resman->setWriteDir(homeDir)) { std::cout << homeDir - << " couldn't be set as home directory! Exiting." + << _(" couldn't be set as home directory! Exiting.") << std::endl; exit(1); } @@ -297,7 +297,7 @@ void init_engine(const Options &options) if (!CFURLGetFileSystemRepresentation(resourcesURL, TRUE, (UInt8 *)path, PATH_MAX)) { - fprintf(stderr, "Can't find Resources directory\n"); + fprintf(stderr, _("Can't find Resources directory\n")); } CFRelease(resourcesURL); strncat(path, "/data", PATH_MAX - 1); @@ -307,7 +307,7 @@ void init_engine(const Options &options) #endif // Fill configuration with defaults - logger->log("Initializing configuration..."); + logger->log(_("Initializing configuration...")); config.setValue("host", "www.aethyra.org"); config.setValue("port", 21001); config.setValue("hwaccel", 0); @@ -390,8 +390,8 @@ void init_engine(const Options &options) // 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: " + std::cerr << _("Couldn't set ") + << width << "x" << height << "x" << bpp << _(" video mode: ") << SDL_GetError() << std::endl; exit(1); } @@ -418,7 +418,7 @@ void init_engine(const Options &options) catch (const char *err) { state = ERROR_STATE; errorMessage = err; - logger->log("Warning: %s", err); + logger->log(_("Warning: %s"), err); } // Initialize keyboard @@ -458,29 +458,28 @@ void exit_engine() void printHelp() { std::cout - << "aethyra" << std::endl << std::endl - << "Options: " << std::endl - << " -C --configfile : Configuration file to use" << std::endl - << " -d --data : Directory to load game data from" << std::endl - << " -D --default : Bypass the login process with default " - "settings" << std::endl - << " -h --help : Display this help" << std::endl - << " -H --updatehost : Use this update host" << std::endl - << " -p --playername : Login with this player" << std::endl - << " -P --password : Login with this password" << std::endl - << " -u --skipupdate : Skip the update downloads" << std::endl - << " -U --username : Login with this username" << std::endl - << " -v --version : Display the version" << std::endl; + << _("aethyra") << std::endl << std::endl + << _("Options: ") << std::endl + << _(" -C --configfile : Configuration file to use") << std::endl + << _(" -d --data : Directory to load game data from") << std::endl + << _(" -D --default : Bypass the login process with default settings") << std::endl + << _(" -h --help : Display this help") << std::endl + << _(" -H --updatehost : Use this update host") << std::endl + << _(" -p --playername : Login with this player") << std::endl + << _(" -P --password : Login with this password") << std::endl + << _(" -u --skipupdate : Skip the update downloads") << std::endl + << _(" -U --username : Login with this username") << std::endl + << _(" -v --version : Display the version") << std::endl; } void printVersion() { #ifdef PACKAGE_VERSION - std::cout << "Aethyra version " << PACKAGE_VERSION << + std::cout << _("Aethyra version ") << PACKAGE_VERSION << std::endl; #else - std::cout << "Aethyra version " << - "(local build?, PACKAGE_VERSION is not defined)" << std::endl; + std::cout << _("Aethyra version ") << + _("(local build?, PACKAGE_VERSION is not defined)") << std::endl; #endif } @@ -576,8 +575,8 @@ struct ErrorListener : public gcn::ActionListener // TODO Find some nice place for these functions void accountLogin(Network *network, LoginData *loginData) { - logger->log("Trying to connect to account server..."); - logger->log("Username is %s", loginData->username.c_str()); + logger->log(_("Trying to connect to account server...")); + logger->log(_("Username is %s"), loginData->username.c_str()); network->connect(loginData->hostname, loginData->port); network->registerHandler(&loginHandler); loginHandler.setLoginData(loginData); @@ -631,7 +630,7 @@ void positionDialog(Window *dialog, int screenWidth, int screenHeight) void charLogin(Network *network, LoginData *loginData) { - logger->log("Trying to connect to char server..."); + logger->log(_("Trying to connect to char server...")); network->connect(loginData->hostname, loginData->port); network->registerHandler(&charServerHandler); charServerHandler.setCharInfo(&charInfo); @@ -653,14 +652,14 @@ void charLogin(Network *network, LoginData *loginData) void mapLogin(Network *network, LoginData *loginData) { - logger->log("Memorizing selected character %s", + logger->log(_("Memorizing selected character %s"), player_node->getName().c_str()); config.setValue("lastCharacter", player_node->getName()); MessageOut outMsg(network); - logger->log("Trying to connect to map server..."); - logger->log("Map: %s", map_path.c_str()); + logger->log(_("Trying to connect to map server...")); + logger->log(_("Map: %s"), map_path.c_str()); network->connect(loginData->hostname, loginData->port); network->registerHandler(&mapLoginHandler); @@ -745,7 +744,7 @@ int main(int argc, char *argv[]) top->add(progressLabel, 15 + progressBar->getWidth(), progressBar->getY() + 4); progressBar->setVisible(false); - gcn::Button *setup = new Button("Setup", "Setup", &listener); + gcn::Button *setup = new Button(_("Setup"), "Setup", &listener); setup->setPosition(top->getWidth() - setup->getWidth() - 3, 3); top->add(setup); @@ -787,7 +786,7 @@ int main(int argc, char *argv[]) login_wallpaper = ResourceManager::getInstance()-> getImage(wallpaperName); if (!login_wallpaper) - logger->log("Couldn't load %s as wallpaper", wallpaperName.c_str()); + logger->log(_("Couldn't load %s as wallpaper"), wallpaperName.c_str()); // Needs to be created in main, as the updater uses it textColour = new Colour(); @@ -823,7 +822,7 @@ int main(int argc, char *argv[]) if (!network->getError().empty()) { errorMessage = network->getError(); } else { - errorMessage = "Got disconnected from server!"; + errorMessage = _("Got disconnected from server!"); } } @@ -1013,7 +1012,7 @@ int main(int argc, char *argv[]) case ERROR_STATE: logger->log("State: ERROR"); - currentDialog = new OkDialog("Error", errorMessage); + currentDialog = new OkDialog(_("Error"), errorMessage); positionDialog(currentDialog, screenWidth, screenHeight); currentDialog->addActionListener(&errorListener); currentDialog = NULL; // OkDialog deletes itself @@ -1024,7 +1023,8 @@ int main(int argc, char *argv[]) case CONNECTING_STATE: logger->log("State: CONNECTING"); progressBar->setVisible(true); - progressLabel->setCaption("Connecting to map server..."); + progressLabel->setCaption( + _("Connecting to map server...")); progressLabel->adjustSize(); mapLogin(network, &loginData); break; @@ -1032,7 +1032,7 @@ int main(int argc, char *argv[]) case CHAR_CONNECT_STATE: progressBar->setVisible(true); progressLabel->setCaption( - "Connecting to character server..."); + _("Connecting to character server...")); progressLabel->adjustSize(); charLogin(network, &loginData); break; @@ -1040,7 +1040,7 @@ int main(int argc, char *argv[]) case ACCOUNT_STATE: progressBar->setVisible(true); progressLabel->setCaption( - "Connecting to account server..."); + _("Connecting to account server...")); progressLabel->adjustSize(); accountLogin(network, &loginData); break; -- cgit v1.2.3-70-g09d2 From 9eb240c821d75292ed02c64246d83558c8b84324 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Mon, 12 Jan 2009 16:44:38 -0700 Subject: Updated the po files so that they shouldn't generate errors for us any more, as well as a few more code style fixes. Signed-off-by: Ira Rice --- po/POTFILES.in | 6 +- po/ar.po | 1264 +++++++++++++++++++++++++++++++--------- po/ca.po | 1240 +++++++++++++++++++++++++++++++--------- po/cs.po | 1257 +++++++++++++++++++++++++++++++--------- po/da.po | 1269 +++++++++++++++++++++++++++++++--------- po/de.po | 1269 +++++++++++++++++++++++++++++++--------- po/en_GB.po | 1264 +++++++++++++++++++++++++++++++--------- po/eo.po | 1231 ++++++++++++++++++++++++++++++--------- po/es.po | 1264 +++++++++++++++++++++++++++++++--------- po/fi.po | 1266 +++++++++++++++++++++++++++++++--------- po/fr.po | 1271 ++++++++++++++++++++++++++++++++--------- po/he.po | 1266 +++++++++++++++++++++++++++++++--------- po/hr.po | 1255 +++++++++++++++++++++++++++++++--------- po/id.po | 1264 +++++++++++++++++++++++++++++++--------- po/it.po | 1264 +++++++++++++++++++++++++++++++--------- po/ja.po | 1255 +++++++++++++++++++++++++++++++--------- po/nl.po | 1264 +++++++++++++++++++++++++++++++--------- po/pl.po | 1264 +++++++++++++++++++++++++++++++--------- po/pt.po | 1264 +++++++++++++++++++++++++++++++--------- po/pt_BR.po | 1269 +++++++++++++++++++++++++++++++--------- po/ru.po | 1264 +++++++++++++++++++++++++++++++--------- po/sk.po | 1243 +++++++++++++++++++++++++++++++--------- po/sv.po | 1264 +++++++++++++++++++++++++++++++--------- po/th.po | 1245 +++++++++++++++++++++++++++++++--------- po/zh_CN.po | 1264 +++++++++++++++++++++++++++++++--------- src/gui/setup_colours.cpp | 2 +- src/gui/setup_players.cpp | 15 +- src/gui/setup_video.cpp | 10 +- src/gui/shortcutcontainer.cpp | 3 +- 29 files changed, 23738 insertions(+), 6538 deletions(-) (limited to 'src/gui/setup_players.cpp') diff --git a/po/POTFILES.in b/po/POTFILES.in index 1816a886..5f244d22 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -8,6 +8,9 @@ src/gui/chat.cpp src/gui/colour.cpp src/gui/confirm_dialog.cpp src/gui/connection.cpp +src/gui/emotecontainer.cpp +src/gui/emoteshortcutcontainer.cpp +src/gui/emotewindow.cpp src/gui/equipmentwindow.cpp src/gui/help.cpp src/gui/inventorywindow.cpp @@ -29,9 +32,6 @@ src/gui/setup_keyboard.cpp src/gui/setup_players.cpp src/gui/setup_video.cpp src/gui/skill.cpp -src/gui/smileycontainer.cpp -src/gui/smileyshortcutcontainer.cpp -src/gui/smileywindow.cpp src/gui/speechbubble.cpp src/gui/status.cpp src/gui/trade.cpp diff --git a/po/ar.po b/po/ar.po index 0a19529e..e07e5814 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-07-16 18:28+0000\n" "Last-Translator: صقر بن عبدالله \n" "Language-Team: Arabic \n" @@ -17,898 +17,1622 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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: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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "السعر: %d GP / الإجمالي: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "الوصÙ: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "التأثير: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy 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:48 ../src/gui/sell.cpp:68 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "إلغاء" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 msgid "Are you sure you want to delete this character?" msgstr "هل أنت متأكّد من حذ٠هذه الشخصيّة؟" -#: src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:80 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" -msgstr "مواÙÙ‚" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "جديد" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "حذÙ" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "السّابق" - -#: src/gui/char_select.cpp:89 -msgid "Next" -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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "الاسم: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "المستوى: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "المستوى: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "النقود: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "السّابق" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "التّالي" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "جديد" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "حذÙ" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "مواÙÙ‚" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 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:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "الاسم:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "لون الشعر:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "قصّة الشعر:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "إنشاء" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy 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:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "إنشاء" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "الخادوم:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "تغيير OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "المنÙØ°:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "الخادوم:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "نعم" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "لا" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "جار٠الاتّصال..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "استخدام" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "العتاد" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../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" -msgstr "استخدام" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "إسقاط" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "الوصÙ: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "التأثير: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "الاسم:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "التأثير: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "الوصÙ: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "تجريد من العتاد" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "استعمال العتاد" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "انتقاء كمّيّة من المواد للمتاجرة بها." -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:79 msgid "Select amount of items to drop." msgstr "انتقاء كمّيّة من المواد لإسقاطها." -#: src/gui/login.cpp:42 +#: ../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:67 msgid "Password:" msgstr "كلمة السرّ:" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "المنÙØ°:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "ترك" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "تسجيل" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 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:117 ../src/gui/skill.cpp:124 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/main.cpp:756 msgid "Setup" msgstr "تثبيت" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "خارطة صغيرة" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "خارطة صغيرة" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@تجارة|متاجرة مع %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@مهاجمة|هاجم %s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@محادثة|تحدّث مع NPC@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@إلغاء|إلغاء@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@اقتطاÙ|اقتطا٠%s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@استخدام|استخدام العتاد@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@استخدام|استخدام العتاد@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@استخدم|استخدم@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@إسقاط|إسقاط@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@الوصÙ|الوصÙ@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "تأكيد:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, c-format msgid "The username needs to be at least %d characters long." msgstr "يجب أن يكون طول اسم المستخدم على الأقل %d محارÙ." -#: src/gui/register.cpp:184 +#: ../src/gui/register.cpp:203 #, c-format msgid "The username needs to be less than %d characters long." msgstr "يجب أن يكون طول اسم المستخدم أقل من %d محارÙ." -#: src/gui/register.cpp:192 +#: ../src/gui/register.cpp:211 #, c-format msgid "The password needs to be at least %d characters long." msgstr "يجب أن تكون طول كلمة السرّ على الأقل %d محارÙ." -#: src/gui/register.cpp:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "يجب أن يكون طول كلمة السرّ أقل من %d محارÙ." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "كلمات السرّ غير متطابقة." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "خطأ" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "صوت" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "حجم صوت المؤثرّات" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "حجم صوت الموسيقا" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "تطبيق" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "تصÙير النواÙØ°" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "مرئية" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "سمعيّ" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "عصا الألعاب" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "لون الشعر:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 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:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "معايرة" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "تÙعيل عصا الألعاب" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "إيقاÙ" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 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:93 #, fuzzy msgid "Default" msgstr "حذÙ" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "الاسم:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "ملء الشاشة" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "مؤشّر مخصّص" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "حدّ FPS:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "عتمة واجهة المستخدم" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "نص٠قطر اللÙÙ‘" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "كسل اللÙÙ‘" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "مؤثّرات محيطة" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "مرتÙع" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "ملء الشاشة" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "جار٠ملء الشاشة" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 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:342 msgid "Changing OpenGL" msgstr "تغيير OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "تطبيق التغيير على OpenGL يحتاج لإعادة تشغيل." -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, fuzzy +msgid "Restart your client for the change to take effect." +msgstr "يجب إعادة التشغيل لتÙعّل التغييرات." + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, fuzzy +msgid "Restart your client or change maps for the change to take effect." +msgstr "يجب إعادة التشغيل لتÙعّل التغييرات." + +#: ../src/gui/skill.cpp:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "استخدام" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "المستوى: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "النقود: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "الحالة" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "مهاجمة %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "دÙاع %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "مهاجمة %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "دÙاع %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "القوّة:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Ø®Ùّة الحركة:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "نشاط:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "ذكاء:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "المهارة:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "إضاÙØ©" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "هل أنت متأكّد من حذ٠هذه الشخصيّة؟" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "جار٠الاتّصال..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "جار٠الاتّصال..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "جار٠الاتّصال..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "الاسم: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "جار٠الاتّصال..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" @@ -951,9 +1675,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "اختار خادومك لـMana World" -#~ msgid "Port:" -#~ msgstr "المنÙØ°:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "رجاء طباعة عنوان ومنÙØ° الخادوم." @@ -980,6 +1701,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "الوزن الإجماليّ: %d - وزن الحدّ الأقصى: %d" - -#~ msgid "Keep" -#~ msgstr "ترك" diff --git a/po/ca.po b/po/ca.po index 7325a252..569fdab4 100644 --- a/po/ca.po +++ b/po/ca.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-07-03 17:21+0000\n" "Last-Translator: Habari \n" "Language-Team: Catalan \n" @@ -17,885 +17,1587 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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: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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "preu %d GP / total %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "sortir" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, 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:48 ../src/gui/sell.cpp:68 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 msgid "Are you sure you want to delete this character?" msgstr "" -#: src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:80 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" -msgstr "ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "" - -#: src/gui/char_select.cpp:89 -msgid "Next" -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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, c-format msgid "Job Level: %d" msgstr "" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 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:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "nom" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 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:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "canvi" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" +msgstr "" + +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +msgid "Changing prefix to " +msgstr "" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." +msgstr "" + +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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:37 msgid "Yes" msgstr "si" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "no" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "" -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../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:55 +msgid "Drop" msgstr "" -#: src/gui/inventorywindow.cpp:57 -msgid "Drop" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +msgid "Description:" msgstr "" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +msgid "Effect:" msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "nom" + +#: ../src/gui/inventorywindow.cpp:170 +msgid "Effect: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:172 +msgid "Description: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "" -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:79 msgid "Select amount of items to drop." msgstr "" -#: src/gui/login.cpp:42 +#: ../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:67 msgid "Password:" msgstr "" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 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:117 ../src/gui/skill.cpp:124 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/main.cpp:756 msgid "Setup" msgstr "" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +msgid "Map" +msgstr "" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +msgid "@@trade|Trade With " msgstr "" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +msgid "@@attack|Attack " +msgstr "" + +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " msgstr "" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:109 +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:117 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:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:184 +#: ../src/gui/register.cpp:203 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: src/gui/register.cpp:192 +#: ../src/gui/register.cpp:211 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:200 +#: ../src/gui/register.cpp:219 #, 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:226 msgid "Passwords do not match." msgstr "" -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +msgid "Color:" +msgstr "" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 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:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 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:93 msgid "Default" msgstr "" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "nom" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "fullscreen" +msgstr "" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 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:342 msgid "Changing OpenGL" msgstr "" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "" -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +msgid "Restart your client for the change to take effect." +msgstr "" + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:452 +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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +msgid "use" +msgstr "" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, c-format msgid "Job: %d" msgstr "" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, c-format msgid "Money: %d GP" msgstr "" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 msgid "Stats" msgstr "" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 msgid "Attack:" msgstr "" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 msgid "Defense:" msgstr "" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 msgid "M.Attack:" msgstr "" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 msgid "M.Defense:" msgstr "" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 msgid "Strength" msgstr "" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 msgid "Agility" msgstr "" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 msgid "Vitality" msgstr "" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 msgid "Intelligence" msgstr "" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 msgid "Dexterity" msgstr "" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +msgid "Are you sure you want to quit?" +msgstr "" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +msgid "Trying to connect to account server..." +msgstr "" + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +msgid "Trying to connect to char server..." +msgstr "" + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +msgid "Trying to connect to map server..." +msgstr "" + +#: ../src/main.cpp:668 +#, c-format +msgid "Map: %s" +msgstr "" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 msgid "Connecting to map server..." msgstr "" -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" - -#~ msgid "Change" -#~ msgstr "canvi" diff --git a/po/cs.po b/po/cs.po index efb03f63..9191a30c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-12-17 16:31+0000\n" "Last-Translator: Lubos \n" "Language-Team: Czech \n" @@ -17,899 +17,1617 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Nákup" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, 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:69 ../src/game.cpp:638 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Popis: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, 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:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Prodej" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "ZruÅ¡it" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "PotvrÄte vymazání postavy" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 #, fuzzy msgid "Select Character" msgstr "VytvoÅ™it postavu" -#: 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" -msgstr "Ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Nová" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Odstranit" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "PÅ™edchozí" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Další" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Jméno: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Úroveň: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Úroveň: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Peníze: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "PÅ™edchozí" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Další" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Nová" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Odstranit" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "VytvoÅ™it postavu" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Jméno:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Barva vlasů:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Styl vlasů:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "VytvoÅ™it" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Server:" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "VytvoÅ™it" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Server:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +msgid "Changing prefix to " +msgstr "" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Port:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Server:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Ano" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Ne" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "PÅ™ipojuji se..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Vybavení" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventář" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Upustit" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Popis: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +msgid "Effect:" msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Jméno:" + +#: ../src/gui/inventorywindow.cpp:170 +msgid "Effect: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Popis: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Vybavit" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 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:79 msgid "Select amount of items to drop." msgstr "Vyberte množství zboží, které chcete upustit." -#: src/gui/login.cpp:42 +#: ../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:67 msgid "Password:" msgstr "Heslo:" -#: src/gui/login.cpp:50 -msgid "Remember Username" -msgstr "Zapamatovat uživatelské jméno" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Port:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" +msgstr "" + +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Registrace" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Stav" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Dovednosti" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Zkratka" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Nastavení" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "MiniMapa" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMapa" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +msgid "@@trade|Trade With " msgstr "" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +msgid "@@attack|Attack " +msgstr "" + +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " msgstr "" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 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:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "Muž" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "Žena" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Heslo musí být kratší než %d znaků." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "Hesla se neshodují." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Chyba" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Zvuk" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Audio" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "Klávesnice" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Barva vlasů:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 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:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Kalibrovat" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 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:93 #, fuzzy msgid "Default" msgstr "Odstranit" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Jméno:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "fullscreen" +msgstr "" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 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:342 msgid "Changing OpenGL" msgstr "" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "" -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +msgid "Restart your client for the change to take effect." +msgstr "" + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:452 +msgid "Restart your client or change maps for the change to take effect." +msgstr "" + +#: ../src/gui/skill.cpp:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +msgid "use" +msgstr "" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Úroveň: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Peníze: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Stav" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Útok %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Obrana %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Útok %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Obrana %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Síla:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Vitalita:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Vitalita:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Inteligence:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 msgid "Dexterity" msgstr "" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Jste si jistí, že chcete vymazat tuto postavu?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "PÅ™ipojuji se..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "PÅ™ipojuji se..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "PÅ™ipojuji se..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Jméno: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "PÅ™ipojuji se..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" +#~ msgid "Remember Username" +#~ msgstr "Zapamatovat uživatelské jméno" + #~ msgid "Account and Character Management" #~ msgstr "Správa úÄtu a postavy" @@ -943,9 +1661,6 @@ msgstr "" #~ msgid "Email:" #~ msgstr "E-mail:" -#~ msgid "Port:" -#~ msgstr "Port:" - #~ msgid "Propose trade" #~ msgstr "Nabídnout obchod" diff --git a/po/da.po b/po/da.po index dae66aca..99f118ef 100644 --- a/po/da.po +++ b/po/da.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-12-28 14:45+0000\n" "Last-Translator: Niels L Ellegaard \n" "Language-Team: Danish \n" @@ -17,901 +17,1628 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Køb" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Pris: %d GP / Total: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Afslut" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Beskrivelse: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Effekt: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Stop" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Sælg" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Fortryd" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "Er du sikker pÃ¥ at du vil slette denne figur?" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 msgid "Are you sure you want to delete this character?" msgstr "Er du sikker pÃ¥ at du vil slette denne figur?" -#: src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:80 msgid "Select Character" msgstr "Vælg Bruger" -#: 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" -msgstr "O.k." - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Opret" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Slet" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Forrige" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Næste" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Navn; %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Niveau: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Niveau: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Penge: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Forrige" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Næste" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Opret" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Slet" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "O.k." + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Lav figur." -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Navn:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "HÃ¥rfarve:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Frisure:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Opret" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Vælg Bruger" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Opret" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Server:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Skrifter til OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Port:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Server:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Ja" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Nej" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Opretter forbindelse..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Brug" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Udstyr" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventarliste" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Brug" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Smid" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Beskrivelse: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Effekt: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Navn:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Effekt: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Beskrivelse: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "Tag af" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Tag pÃ¥" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Vælge hvor mange du vil bytte." -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:79 msgid "Select amount of items to drop." msgstr "Vælg hvor mange du vil smide," -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "Log Ind" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Adgangskode:" -#: src/gui/login.cpp:50 -msgid "Remember Username" -msgstr "Husk dette brugernavn." +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Port:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" +msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "Behold" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Registrer" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Status" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Færdigheder" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Genvej" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Opsætning" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "MiniKort" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniKort" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Byt Med %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|Angrib %s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Snak med NPC@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Annuller@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Saml Op %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Tag pÃ¥@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Tag pÃ¥@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Brug@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Smid@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|Beskrivelse@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Bekræft:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "Mand" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "Kvinde" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Adgangskoden skal være mindre end %d bogstaver langt." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "Adgangskoder stemmer ikke overens." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Fejl" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Lyd" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "Lydstyrke pÃ¥ effekter" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "Lydstyrke pÃ¥ musik" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Anvend" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "Nulstil vinduer" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Video" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Lyd" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "Joystick" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "Tastatur" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "HÃ¥rfarve:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "Tryk pÃ¥ knappen for at starte justeringen." -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Justering" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "Aktiver joystick" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Stop" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 msgid "Rotate the stick" msgstr "Roter joystick" -#: 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:93 #, fuzzy msgid "Default" msgstr "Slet" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Navn:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Fuld Skærm" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "Brugerdefineret Musepil" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "FPS grænse:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "Gennemsigtighed" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "Følsomhed pÃ¥ mus" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "Acceleration pÃ¥ mus" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "Omgivende FX" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "fra" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "lav" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "høj" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Fuld Skærm" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Skifter til fuld skærm" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "Ændringerne kræver at du genstarter klienten." -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "Skrifter til OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "Ændringerne til OpenGL kræver at du genstarter klienten." -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, fuzzy +msgid "Restart your client for the change to take effect." +msgstr "Ændringerne kræver at du genstarter klienten." + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, fuzzy +msgid "Restart your client or change maps for the change to take effect." +msgstr "Ændringerne kræver at du genstarter klienten." + +#: ../src/gui/skill.cpp:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Brug" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Niveau: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Penge: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Status" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Angrib %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Forsvar %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Angrib %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Forsvar %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Styrke" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Adræthed" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Helbred:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Intelligens:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Behændighed:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Tilføj" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Er du sikker pÃ¥ at du vil slette denne figur?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Opretter forbindelse..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Opretter forbindelse..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Opretter forbindelse..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Navn; %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Opretter forbindelse..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" +#~ msgid "Remember Username" +#~ msgstr "Husk dette brugernavn." + #~ msgid "Account and Character Management" #~ msgstr "Ret konto og figurer" @@ -972,9 +1699,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Vælg din Mana World Server" -#~ msgid "Port:" -#~ msgstr "Port:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "Skriv bÃ¥de adressen og porten pÃ¥ serveren." @@ -1004,6 +1728,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "Total Vægt: %d - Maximum Vægt: %d" - -#~ msgid "Keep" -#~ msgstr "Behold" diff --git a/po/de.po b/po/de.po index 6e71b451..bd230744 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: 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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-10-13 00:25+0000\n" "Last-Translator: Aeneas Jaißle \n" "Language-Team: German\n" @@ -17,903 +17,1630 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Kaufen" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Preis: %d GP / Summe: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Beenden" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Beschreibung: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Effekt: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Stopp" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Verkaufen" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Abbrechen" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "Bestätige Charakter-Löschung" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 msgid "Select Character" msgstr "Spielfigur auswählen" -#: 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" -msgstr "Ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Neu" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Löschen" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Zurück" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Weiter" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Name : %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Stufe: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Stufe: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Geld: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Zurück" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Weiter" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Neu" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Löschen" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Charakter erstellen" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Name :" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Haarfarbe" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Frisur" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Erstellen" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Spielfigur auswählen" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Erstellen" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Server:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Ändere OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Port:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Server:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Ja" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Nein" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Verbinde..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Benutzen" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Ausrüstung" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventar" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Benutzen" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Wegwerfen" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Beschreibung: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Effekt: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Name :" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Effekt: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Beschreibung: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "Ablegen" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Ausrüsten" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 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:79 msgid "Select amount of items to drop." msgstr "Wähle aus, wieviele Gegenstände Du wegwerfen möchtest." -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "Anmelden" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Passwort:" -#: src/gui/login.cpp:50 -msgid "Remember Username" -msgstr "Benutzernamen merken" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Port:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" +msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "Erinnern" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Registrieren" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Status" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Fertigkeiten" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Tastenkürzel" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Einstellungen" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "Ãœbersichtskarte" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Ãœbersichtskarte" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Mit %s handeln@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|%s angreifen@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Mit NSC reden@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Abbrechen@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|%s aufheben@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Ausrüsten@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Ausrüsten@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Nutzen@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Fallen lassen@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|Beschreibung@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Bestätigen:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "Männlich" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "Weiblich" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Das Passwort muss kürzer als %d Zeichen sein." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "Passwörter stimmen nicht überein." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Fehler" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Ton" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "Lautstärke der Klangeffekte" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "Latustärke der Musik" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Anwenden" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "Fenster zurücksetzen" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Video" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Audio" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "Joystick" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "Tastatur" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Haarfarbe" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "Knopf drücken um die Kalibrierung zu starten" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Kalibrieren" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "Joystick aktivieren" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Stopp" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 msgid "Rotate the stick" msgstr "Kreise den Steuerknüppel" -#: 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:93 #, fuzzy msgid "Default" msgstr "Löschen" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Name :" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Vollbild" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "Benutzerdefinierten Zeiger" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "FPS-Limit:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "GUI Transparenz" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "Scroll-Radius" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "Scroll-Trägheit" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "Hintergrundeffekte" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "Aus" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "Niedrig" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "Hoch" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Vollbild" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Wechsle zum Vollbildmodus" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "Änderungen treten erst nach einem Neustart des Programmes in Kraft." -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "Ändere OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "" "Änderungen an OpenGL werden erst nach einem Neustart der Anwendung " "übernommen." -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, 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:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, 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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Benutzen" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Stufe: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Geld: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Status" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Angriff %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Verteidigung %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Angriff %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Verteidigung %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Stärke:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Agilität:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Vitalität:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Intelligenz:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Geschicklichkeit:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Hinzufügen" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Bist du sicher, dass du diesen Charakter löschen möchtest?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Verbinde..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Verbinde..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Verbinde..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Name : %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Verbinde..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" +#~ msgid "Remember Username" +#~ msgstr "Benutzernamen merken" + #~ msgid "Account and Character Management" #~ msgstr "Account- und Charakterverwaltung" @@ -974,9 +1701,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Wähle Deinen Mana World Spielserver" -#~ msgid "Port:" -#~ msgstr "Port:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "Bitte die Adresse und den Port eines Servers eingeben" @@ -1006,6 +1730,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "Gesamtgewicht : %d - Maximales Gewicht : %d" - -#~ msgid "Keep" -#~ msgstr "Erinnern" diff --git a/po/en_GB.po b/po/en_GB.po index 80a6ef41..4d10d394 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: 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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-05-10 16:51+0000\n" "Last-Translator: Me \n" "Language-Team: English (United Kingdom) \n" @@ -17,898 +17,1622 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Buy" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Price: %d GP / Total: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Exit" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Description: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Effect: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Stop" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Sell" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Cancel" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 msgid "Select Character" msgstr "Select Character" -#: 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" -msgstr "Ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "New" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Delete" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Previous" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Next" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Name: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Level: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Level: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Money: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Previous" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Next" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "New" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Delete" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Create Character" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Name:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Hair Colour:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Hair Style:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Create" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Select Character" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Create" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Server:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Changing OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Port:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Server:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Yes" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "No" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Connecting..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Use" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipment" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventory" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Use" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Drop" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Description: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Effect: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Name:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Effect: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Description: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "Unequip" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Equip" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 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:79 msgid "Select amount of items to drop." msgstr "Select amount of items to drop." -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "Login" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Password:" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Port:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "Keep" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Register" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Status" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Skills" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Shortcut" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Setup" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "MiniMap" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMap" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Trade With %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|Attack %s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Talk To NPC@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancel@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Pick Up %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equip@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Equip@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Use@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Drop@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|Description@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Confirm:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "The password needs to be less than %d characters long." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "Passwords do not match." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Error" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Sound" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "Sfx volume" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "Music volume" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Apply" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "Reset Windows" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Video" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Audio" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "Joystick" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Hair Colour:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "Press the button to start calibration" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Calibrate" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "Enable joystick" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Stop" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 msgid "Rotate the stick" msgstr "Rotate the stick" -#: 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:93 #, fuzzy msgid "Default" msgstr "Delete" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Name:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Full screen" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "Custom cursor" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "FPS Limit:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "Gui opacity" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "Scroll radius" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "Scroll laziness" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "Ambient FX" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "off" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "low" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "high" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Full screen" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Switching to full screen" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "Restart needed for changes to take effect." -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "Changing OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "Applying change to OpenGL requires restart." -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, fuzzy +msgid "Restart your client for the change to take effect." +msgstr "Restart needed for changes to take effect." + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, 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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Use" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Level: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Money: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Status" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Attack %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Defense %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Attack %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Defense %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Strength:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Agility:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Vitality:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Intelligence:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Dexterity:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Add" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Are you sure you want to delete this character?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Connecting..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Connecting..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Connecting..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Name: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Connecting..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" @@ -951,9 +1675,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Choose your Mana World Server" -#~ msgid "Port:" -#~ msgstr "Port:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "Please type both the address and the port of a server." @@ -980,6 +1701,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "Total Weight: %d - Maximum Weight: %d" - -#~ msgid "Keep" -#~ msgstr "Keep" diff --git a/po/eo.po b/po/eo.po index 928b0fbf..0692acc3 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-11-10 22:03+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Esperanto \n" @@ -17,881 +17,1584 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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: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:65 +#: ../src/gui/sell.cpp:259 #, 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:69 ../src/game.cpp:638 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, 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:48 ../src/gui/sell.cpp:68 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 msgid "Are you sure you want to delete this character?" msgstr "" -#: src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:80 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:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 +#, c-format +msgid "Name: %s" msgstr "" -#: src/gui/char_select.cpp:86 -msgid "New" +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 +#, 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:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 +#, c-format +msgid "Job Level: %d" msgstr "" -#: src/gui/char_select.cpp:88 -msgid "Previous" +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 +#, c-format +msgid "Money: %d" msgstr "" -#: src/gui/char_select.cpp:89 -msgid "Next" +#: ../src/gui/char_select.cpp:91 +msgid "Previous" 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:92 +msgid "Next" 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:93 +msgid "New" 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:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" msgstr "" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 -#, c-format -msgid "Money: %d" +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" msgstr "" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 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:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 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:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +msgid "Chat" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" +msgstr "" + +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +msgid "Changing prefix to " +msgstr "" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." +msgstr "" + +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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:37 msgid "Yes" msgstr "" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "" -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../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:55 +msgid "Drop" msgstr "" -#: src/gui/inventorywindow.cpp:57 -msgid "Drop" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +msgid "Description:" msgstr "" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +msgid "Effect:" msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:168 +msgid "Name: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:170 +msgid "Effect: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:172 +msgid "Description: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "" -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:79 msgid "Select amount of items to drop." msgstr "" -#: src/gui/login.cpp:42 +#: ../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:67 msgid "Password:" msgstr "" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 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:117 ../src/gui/skill.cpp:124 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/main.cpp:756 msgid "Setup" msgstr "" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +msgid "Map" +msgstr "" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +msgid "@@trade|Trade With " msgstr "" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +msgid "@@attack|Attack " +msgstr "" + +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " msgstr "" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 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:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:184 +#: ../src/gui/register.cpp:203 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: src/gui/register.cpp:192 +#: ../src/gui/register.cpp:211 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:200 +#: ../src/gui/register.cpp:219 #, 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:226 msgid "Passwords do not match." msgstr "" -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +msgid "Color:" +msgstr "" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 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:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 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:93 msgid "Default" msgstr "" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 msgid "Name" msgstr "" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "fullscreen" +msgstr "" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 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:342 msgid "Changing OpenGL" msgstr "" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "" -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +msgid "Restart your client for the change to take effect." +msgstr "" + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:452 +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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +msgid "use" +msgstr "" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, c-format msgid "Job: %d" msgstr "" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, c-format msgid "Money: %d GP" msgstr "" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 msgid "Stats" msgstr "" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 msgid "Attack:" msgstr "" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 msgid "Defense:" msgstr "" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 msgid "M.Attack:" msgstr "" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 msgid "M.Defense:" msgstr "" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 msgid "Strength" msgstr "" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 msgid "Agility" msgstr "" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 msgid "Vitality" msgstr "" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 msgid "Intelligence" msgstr "" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 msgid "Dexterity" msgstr "" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +msgid "Are you sure you want to quit?" +msgstr "" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +msgid "Trying to connect to account server..." +msgstr "" + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +msgid "Trying to connect to char server..." +msgstr "" + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +msgid "Trying to connect to map server..." +msgstr "" + +#: ../src/main.cpp:668 +#, c-format +msgid "Map: %s" +msgstr "" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 msgid "Connecting to map server..." msgstr "" -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" diff --git a/po/es.po b/po/es.po index f4f67a3f..442a5e8e 100644 --- a/po/es.po +++ b/po/es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-10-15 01:37+0000\n" "Last-Translator: catalania \n" "Language-Team: Spanish \n" @@ -17,898 +17,1622 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Comprar" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Precio: %d GP / Total: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Salir" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Descripción: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Efecto: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Detener" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Vender" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Cancelar" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 msgid "Select Character" msgstr "Seleccionar personaje" -#: 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" -msgstr "Aceptar" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Nuevo" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Eliminar" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Anterior" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Siguiente" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Nombre: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Nivel: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nivel: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Dinero: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Anterior" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Siguiente" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Nuevo" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Eliminar" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Aceptar" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Crear Personaje" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Nombre:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Color de pelo:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "corte de pelo" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Crear" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Seleccionar personaje" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Crear" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Servidor:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Cambiar a OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Puerto:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Servidor:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Sí" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "No" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Conectando…" -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Usar" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipo" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventario" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Usar" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "tirar" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Descripción: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Efecto: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Nombre:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Efecto: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Descripción: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "quitarselo" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Equipar" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Seleccione objetos para comerciar." -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:79 msgid "Select amount of items to drop." msgstr "Seleccione objetos para soltar." -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "conectarse" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Contraseña:" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Puerto:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "Mantener" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Registrar" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Estado" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Habilidades" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Atajos" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Configuración" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "Minimapa" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Minimapa" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Comerciar con %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|Atacar a %s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Hablar al NPC@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancelar@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Recoger %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equipar@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Equipar@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Usar@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Tirar@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|Descripción@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Confirmar:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "La contraseña puede tener como máximo %d caracteres." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "Las contraseñas no coinciden." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Error" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Sonido" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "Volumen efectos" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "Volumen musica" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Aplicar" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "Reiniciar ventanas" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Vídeo" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Audio" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "Joystick" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "Teclado" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Color de pelo:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "Presione el botón para comenzar la calibración" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Calibrar" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "Activar joystick" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Detener" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 msgid "Rotate the stick" msgstr "Gire el stick" -#: 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:93 #, fuzzy msgid "Default" msgstr "Eliminar" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Nombre:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Pantalla completa" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "Cursor propio" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "Límite de FPS:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "Transparencia menus" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "Ratio de scroll" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "Velocidad de scroll" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "Efectos ambientales" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "desactivado" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "bajo" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "alto" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Pantalla completa" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Cambiar a pantalla completa" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "Se necesita reiniciar para aplicar los cambios." -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "Cambiar a OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "Se necesita reiniciar para aplicar los cambios hechos a OpenGL." -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, fuzzy +msgid "Restart your client for the change to take effect." +msgstr "Se necesita reiniciar para aplicar los cambios." + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, 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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Usar" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Nivel: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Dinero: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Estado" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Ataque %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Defensa %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Ataque %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Defensa %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Fuerza:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Agilidad:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Vitalidad:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Inteligencia:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Destreza:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Añadir" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "¿Seguro que quieres borrar este personaje?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Conectando…" + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Conectando…" + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Conectando…" + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Nombre: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Conectando…" -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" @@ -951,9 +1675,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Elija su servidor de Mana World" -#~ msgid "Port:" -#~ msgstr "Puerto:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "Escriba la dirección y el puerto de un servidor." @@ -980,6 +1701,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "Peso Total: %d - Peso Máximo: %d" - -#~ msgid "Keep" -#~ msgstr "Mantener" diff --git a/po/fi.po b/po/fi.po index 80b21093..f7aef242 100644 --- a/po/fi.po +++ b/po/fi.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-12-30 10:23+0000\n" "Last-Translator: ville-v \n" "Language-Team: Finnish \n" @@ -17,902 +17,1629 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Osta" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Kappalehinta: %d GP / Yhteensä: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Sulje" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Kuvaus: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Vaikutus: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Lopeta" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Myy" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Peru" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "Vahvista hahmon poistopyyntö" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 #, fuzzy msgid "Select Character" msgstr "Luo hahmo" -#: 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" -msgstr "Ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Uusi" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Poista" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Edellinen" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Seuraava" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Nimi: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Taso: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Taso: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Rahatilanne: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Edellinen" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Seuraava" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Uusi" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Poista" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Luo hahmo" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Nimi:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Hiusten väri:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Hiustyyli:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Luo" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Vaihda palvelinta" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Luo" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Palvelin:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Vaihdetaan OpenGL -toimintatilaan" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Portti:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Palvelin:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Kyllä" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Ei" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Yhdistetään..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Käytä" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Varusteet" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Tavaraluettelo" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Käytä" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Pudota" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Kuvaus: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Vaikutus: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Nimi:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Vaikutus: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Kuvaus: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "Poista varuste käytöstä" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Ota käyttöön" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Anna vaihdettavien tavaroiden määrä." -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:79 msgid "Select amount of items to drop." msgstr "Anna pudotettavien tavaroiden määrä." -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "Kirjaudu sisään" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Salasana:" -#: src/gui/login.cpp:50 -msgid "Remember Username" -msgstr "Muista käyttäjätunnus" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Portti:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" +msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Rekisteröidy" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Hahmon tiedot" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Taidot" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Pikavalinnat" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Asetukset" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "Apukartta" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Apukartta" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "Epäpelattava hahmo" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Vaihda tavaroita %s kanssa@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|Hyökkää %s kimppuun@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 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:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Peruuta@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Poimi %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Ota varuste käyttöön@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Ota varuste käyttöön@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Käytä@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Pudota maahan@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|Kuvaus@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Vahvista:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "Miespuolinen" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "Naispuolinen" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Salasanan tulee olla alle %d merkkiä pitkä." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "Salasanat eivät täsmää." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Virhe" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Ääni" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "Äänitehosteiden voimakkuus" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "Musiikin voimakkuus" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Käytä" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "Palauta ikkunoiden oletusasetukset" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Kuva" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Ääni" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "Peliohjain" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "Näppäimistö" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Hiusten väri:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "Paina tätä nappia aloittaaksesi peliohjaimen kalibroinnin" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Kalibroi" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "Peliohjaintuki päälle" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Lopeta" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 msgid "Rotate the stick" msgstr "Käytä ohjain ääriasennoissaan pyörittämällä" -#: 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:93 #, fuzzy msgid "Default" msgstr "Poista" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Nimi:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Kokoruututila" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "Tyylitelty hiiren osoitin" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "Piirtonopeusrajoitin (kuvaa / sekunti)" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "Käyttöliittymän läpinäkyvyys" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "Kameran perässälaahaus" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "Kameran perässälaahauksen tiukkuus" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "Taustaäänet" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "pois päältä" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "matala" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "korkea" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Kokoruututila" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Kokoruututilaan siirtyminen" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "Ohjelma pitää käynnistää uudelleen, jotta muutokset astuvat voimaan." -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "Vaihdetaan OpenGL -toimintatilaan" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "OpenGL -asetusten muutokset vaativat ohjelman uudelleenkäynnistyksen" -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:433 +#, 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:451 +msgid "Particle effect settings changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:452 +#, 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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Käytä" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Taso: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Rahatilanne: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Hahmon tiedot" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Hyökkäys %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Puolustus %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Hyökkäys %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Puolustus %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Voima:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Ketteryys:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Elinvoima:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Älykkyys:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Näppäryys:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Lisää" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Oletko varma, että haluat poistaa tämän hahmon?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Yhdistetään..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Yhdistetään..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Yhdistetään..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Nimi: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Yhdistetään..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" +#~ msgid "Remember Username" +#~ msgstr "Muista käyttäjätunnus" + #~ msgid "Account and Character Management" #~ msgstr "Tilin ja hahmojen hallinta" @@ -970,9 +1697,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Valitse Mana World -palvelimesi" -#~ msgid "Port:" -#~ msgstr "Portti:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "Kirjoita kenttiin sekä palvelimen osoite että portti" diff --git a/po/fr.po b/po/fr.po index 3d8a121c..4e365259 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: 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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-12-26 10:43+0000\n" "Last-Translator: Johan Serre \n" "Language-Team: French\n" @@ -18,903 +18,1632 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Acheter" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Prix : %d PO / Total : %d PO" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Quitter" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Description : %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Effet : %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Stop" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Vendre" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Annuler" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "Confirmer la suppression du personnage" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 msgid "Select Character" msgstr "Choix du personnage" -#: 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" -msgstr "Ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Nouveau" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Supprimer" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Précédent" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Suivant" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Nom : %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Niveau : %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Niveau : %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Argent : %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Précédent" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Suivant" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Nouveau" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Supprimer" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Création du personnage" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Nom :" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Couleur des cheveux" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Coiffure :" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Créer" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Choix du personnage" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Créer" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Serveur :" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Changement OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Port :" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Serveur :" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Oui" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Non" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Connexion..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Utiliser" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Équipement" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventaire" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Utiliser" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Lâcher" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Description : %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Effet : %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Nom :" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Effet : %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Description : %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "Retirer" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Équiper" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 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:79 msgid "Select amount of items to drop." msgstr "Choisissez le nombre d'objets à lâcher." -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "Connexion" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Mot de passe :" -#: src/gui/login.cpp:50 -msgid "Remember Username" -msgstr "Se souvenir du nom d'utilisateur" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Port :" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" +msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "Conserver" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "S'inscrire" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Statut" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Compétences" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Raccourci" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Configuration" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "Plan" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Plan" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "PNJ" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Troquer avec %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|Attaquer %s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Parler au PNJ@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Annuler@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Ramasser %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Équiper@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Équiper@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Utiliser@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Lâcher@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|Description@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Vérification :" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "Masculin" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "Féminin" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, 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." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "Les deux mots de passe ne correspondent pas." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Erreur" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Son" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "Volume des effets sonores" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "Volume de la musique" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Appliquer" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "Rétablir les fenêtres" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Vidéo" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Audio" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "Joystick" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "Clavier" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Couleur des cheveux" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "Presser le bouton pour démarrer la calibration" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Calibrer" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "Activer le joystick" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Stop" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 msgid "Rotate the stick" msgstr "Tourner le joystick" -#: 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:93 #, fuzzy msgid "Default" msgstr "Supprimer" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Nom :" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Plein écran" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "Curseur personnalisé" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "Limite FPS :" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "Opacité de l'interface" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "Rayon du scrolling" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "Paresse du scrolling" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "Effets ambiants" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "aucun" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "léger" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "complet" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Plein écran" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Passage en plein écran" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "" "Les changements ne seront pris en compte qu'au prochain démarrage du jeu." -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "Changement OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 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/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, 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:451 +msgid "Particle effect settings changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:452 +#, 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:132 src/gui/skill.cpp:188 +#: ../src/gui/skill.cpp:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Utiliser" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Niveau : %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Argent : %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Statut" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Attaque %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Défense %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Attaque %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Défense %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Force :" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Agilité :" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Vitalité :" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Intelligence :" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Dextérité :" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Ajouter" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Êtes-vous certain de vouloir supprimer ce personnage ?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Connexion..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Connexion..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Connexion..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Nom : %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Connexion..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" +#~ msgid "Remember Username" +#~ msgstr "Se souvenir du nom d'utilisateur" + #~ msgid "Account and Character Management" #~ msgstr "Gestion du compte et du personnage" @@ -975,9 +1704,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Choisissez votre serveur The Mana World" -#~ msgid "Port:" -#~ msgstr "Port :" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "Veuillez entrer l'adresse et le port du serveur." @@ -1007,6 +1733,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "Poids total : %d - Poids maximal : %d" - -#~ msgid "Keep" -#~ msgstr "Conserver" diff --git a/po/he.po b/po/he.po index 87766812..9b622a04 100644 --- a/po/he.po +++ b/po/he.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-10-20 00:23+0000\n" "Last-Translator: Ddorda \n" "Language-Team: Hebrew \n" @@ -17,902 +17,1629 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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: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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "מחיר: %d זהב / סה\"×› %d זהב" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "תי×ור: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "השפעה: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy 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:48 ../src/gui/sell.cpp:68 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "ביטול" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "×שר מחיקת שחקן" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 msgid "Are you sure you want to delete this character?" msgstr "×”×× ×תה בטוח ×›×™ ברצונך למחוק ×ת השחקן?" -#: src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:80 #, fuzzy 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" -msgstr "×ישור" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "חדש" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "מחק" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "הקוד×" - -#: src/gui/char_select.cpp:89 -msgid "Next" -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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "ש×: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "רמה: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "רמה: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "זהב: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "הקוד×" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "הב×" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "חדש" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "מחק" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "×ישור" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 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:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "ש×:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "צבע שיער:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "תיספורת:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "צור" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy 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:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "צור" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "שרת:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "משנה OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "פורט:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "שרת:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "כן" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "ל×" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "מתחבר..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "השתמש" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "ציוד" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../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" -msgstr "השתמש" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "השלך" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "תי×ור: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "השפעה: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "ש×:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "השפעה: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "תי×ור: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "הורד" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "החזק" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "בחר כמות ×—×¤×¦×™× ×œ×¡×—×•×¨." -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:79 msgid "Select amount of items to drop." msgstr "בחר כמות ×—×¤×¦×™× ×œ×”×©×œ×™×š." -#: src/gui/login.cpp:42 +#: ../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:67 msgid "Password:" msgstr "סיסמה:" -#: src/gui/login.cpp:50 -msgid "Remember Username" -msgstr "זכור ×©× ×ž×©×ª×ž×©" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "פורט:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" +msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "הרש×" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 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:117 ../src/gui/skill.cpp:124 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/main.cpp:756 msgid "Setup" msgstr "הגדרות" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "מיני-מפה" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "מיני-מפה" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|סחור ×¢× %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|תקוף ×ת %s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|דבר ×ל NPC@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|ביטול@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|×”×¨× %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|החזק@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|החזק@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Use@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|השלך@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|תי×ור@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "×שר:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "זכר" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "נקבה" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, c-format msgid "The username needs to be at least %d characters long." msgstr "×©× ×”×ž×©×ª×ž×© חייב להכיל לפחות %d תוי×." -#: src/gui/register.cpp:184 +#: ../src/gui/register.cpp:203 #, c-format msgid "The username needs to be less than %d characters long." msgstr "×©× ×”×ž×©×ª×ž×© חייב להכיל פחות מ-%d תוי×." -#: src/gui/register.cpp:192 +#: ../src/gui/register.cpp:211 #, c-format msgid "The password needs to be at least %d characters long." msgstr "הסיסמה חייבת להכיל לפחות %d תוי×." -#: src/gui/register.cpp:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "הסיסמה חייבת להכיל פחות מ-%d תוי×." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "הסיסמ×ות ×ינן תו×מות." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "שגי××”" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "צליל" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "עוצמת SFX" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "עוצמת מוזיקה" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "×שר" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "×תחל חלונות" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "ויד×ו" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "שמע" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "×’'ויסטיק" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "מקלדת" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "צבע שיער:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 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:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "כייל" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "×פשר ×’'ויסטיק" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "עצור" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 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:93 #, fuzzy msgid "Default" msgstr "מחק" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "ש×:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "מסך מל×" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "â€OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "סמן-עכבר מות××" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "הגבלת FPS:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "×טימות Gui" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "תווך גלילה" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "עצלנות גלילה" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "×ופף FX" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "גבוה" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "מסך מל×" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "מחליף למסך מל×" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 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:342 msgid "Changing OpenGL" msgstr "משנה OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "×ישור ×©×™× ×•×™×™× ×¢×‘×•×¨ OpenGL דורש ×יתחול." -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:433 +#, fuzzy +msgid "Restart your client for the change to take effect." +msgstr "נדרש ×יתחול כדי ×©×”×©×™× ×•×™×™× ×™×”×™×• ברי-תוקף." + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:452 +#, fuzzy +msgid "Restart your client or change maps for the change to take effect." +msgstr "נדרש ×יתחול כדי ×©×”×©×™× ×•×™×™× ×™×”×™×• ברי-תוקף." + +#: ../src/gui/skill.cpp:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "השתמש" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "רמה: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "זהב: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "מצב" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "התקפה %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "×”×’× ×” %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "התקפה %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "×”×’× ×” %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "עוצמה:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "זריזות:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "חיוניות:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "תבונה:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "מיומנות:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "הוסף" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "×”×× ×תה בטוח ×›×™ ברצונך למחוק ×ת השחקן?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "מתחבר..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "מתחבר..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "מתחבר..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "ש×: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "מתחבר..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" +#~ msgid "Remember Username" +#~ msgstr "זכור ×©× ×ž×©×ª×ž×©" + #~ msgid "Account and Character Management" #~ msgstr "ניהול משתמש ושחקן" @@ -970,9 +1697,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "בחר ×ת שרת ×”-Mana World" -#~ msgid "Port:" -#~ msgstr "פורט:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "×× × ×”×›× ×¡ ×’× ×ת כתובת ×•×’× ×ת פורט השרת." diff --git a/po/hr.po b/po/hr.po index cef7cc6f..fb7f13e7 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-12-28 23:36+0000\n" "Last-Translator: Dino Paskvan \n" "Language-Team: Croatian \n" @@ -17,896 +17,1615 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Kupi" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Cijena: %d zlatnika / Ukupno: %d zlatnika" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Izlaz" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Opis: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "UÄinak: %s" -#: 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:48 ../src/gui/sell.cpp:68 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "PoniÅ¡ti" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "Potvrdi Brisanje Lika" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 #, fuzzy msgid "Select Character" msgstr "Stvori Lika" -#: 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" -msgstr "U redu" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Novi" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "ObriÅ¡i" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Prethodni" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Slijedeći" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Ime: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Nivo: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nivo: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Novac: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Prethodni" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Slijedeći" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Novi" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "ObriÅ¡i" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "U redu" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Stvori Lika" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Ime:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Boja kose:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Frizura:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Stvori" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 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:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Stvori" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +msgid "Changing prefix to " +msgstr "" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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:37 msgid "Yes" msgstr "Da" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Ne" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Spajanje..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Upotrijebi" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Oprema" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Zalihe" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Upotrijebi" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Ispusti" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Opis: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "UÄinak: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Ime:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "UÄinak: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Opis: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "Skini opremu" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Opremi" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 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:79 msgid "Select amount of items to drop." msgstr "Odaberi koliÄinu predmeta za ispuÅ¡tanje." -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "KorisniÄko ime" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Lozinka" -#: src/gui/login.cpp:50 -msgid "Remember Username" -msgstr "Zapamti korisniÄko ime" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" +msgstr "" + +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Registriraj se" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Stanje" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "VjeÅ¡tine" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Kratica" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "PodeÅ¡avanje" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "Karta" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Karta" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +msgid "@@trade|Trade With " msgstr "" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +msgid "@@attack|Attack " msgstr "" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 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:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "Skini opremu" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "MuÅ¡ko" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "Žensko" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:184 +#: ../src/gui/register.cpp:203 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: src/gui/register.cpp:192 +#: ../src/gui/register.cpp:211 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:200 +#: ../src/gui/register.cpp:219 #, 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:226 msgid "Passwords do not match." msgstr "" -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "GreÅ¡ka" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Boja kose:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 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:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 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:93 #, fuzzy msgid "Default" msgstr "ObriÅ¡i" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Ime:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "fullscreen" +msgstr "" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 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:342 msgid "Changing OpenGL" msgstr "" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "" -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +msgid "Restart your client for the change to take effect." +msgstr "" + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +msgid "Restart your client or change maps for the change to take effect." +msgstr "" + +#: ../src/gui/skill.cpp:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Upotrijebi" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Nivo: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Novac: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Stanje" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 msgid "Attack:" msgstr "" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 msgid "Defense:" msgstr "" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 msgid "M.Attack:" msgstr "" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 msgid "M.Defense:" msgstr "" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Snaga:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Okretnost:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Vitalnost:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Inteligencija:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Spretnost:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Da li ste sigurni da želite obrisati ovog lika?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Spajanje..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Spajanje..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Spajanje..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Ime: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Spajanje..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" +#~ msgid "Remember Username" +#~ msgstr "Zapamti korisniÄko ime" + #~ msgid "Account and Character Management" #~ msgstr "Upravljanje RaÄunom i Likovima" diff --git a/po/id.po b/po/id.po index 6f2dda71..1d6a8530 100644 --- a/po/id.po +++ b/po/id.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-03-26 09:11+0000\n" "Last-Translator: ActiveFile \n" "Language-Team: Indonesian \n" @@ -17,898 +17,1622 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Beli" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Harga: %d GP / Jumlah: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Keluar" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Deskripsi: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Efek: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Berhenti" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Jual" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Batal" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 msgid "Select Character" msgstr "Pilih Karakter" -#: 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" -msgstr "Ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Buat baru" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Hapus" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Sebelumnya" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Berikutnya" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Nama: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Tingkatan: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Tingkatan: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Uang: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Sebelumnya" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Berikutnya" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Buat baru" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Hapus" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Buat Karakter" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Nama:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Warna Rambut:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Gaya Rambut:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Buat" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Pilih Karakter" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Buat" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Server:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Mengubah OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Port:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Server:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Ya" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Tidak" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Menyambung..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Gunakan" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Perlengkapan" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventaris" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Gunakan" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Jatuh" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Deskripsi: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Efek: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Nama:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Efek: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Deskripsi: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 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:79 msgid "Select amount of items to drop." msgstr "Pilih jumlah item yang mau di buang" -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "Login" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Kata Sandi:" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Port:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "Pertahankan" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Mendaftar" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Status" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Keahlian" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Tombol Singkat" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Atur" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "MiniMap" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMap" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Dagang Dengan %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|Serang%s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Bicara dengan NPC@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Batal@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Ambil %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Melengkapi@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Melengkapi@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Gunakan@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Buang@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|Deskripsi@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Konfirmasi:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Panjang username setidak-tidaknya %d karakter" -#: src/gui/register.cpp:184 +#: ../src/gui/register.cpp:203 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: src/gui/register.cpp:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, 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:226 msgid "Passwords do not match." msgstr "Kata sandi tidak sama." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Kesalahan" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Suara" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "Volume sfx" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "Volume Musik" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Terapkan" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Video" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Suara" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Warna Rambut:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "Tekan tombol untuk memulai kalibrasi" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Kalibrasi" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "Membolehkan joistik" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Berhenti" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 msgid "Rotate the stick" msgstr "Memutar tongkat" -#: 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:93 #, fuzzy msgid "Default" msgstr "Hapus" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Nama:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Layar penuh" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "Batas FPS" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "Radius gulungan" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "mati" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "rendah" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "tinggi" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Layar penuh" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Mengganti ke layar penuh" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "Memulai dari awal di butuhkan untuk melihat efek" -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "Mengubah OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "Mendaftar perubahan ke OpenGL membutuhkan memulai dari awal" -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, 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:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, 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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Gunakan" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Tingkatan: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Uang: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Status" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Serangan %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Pertahanan %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Serangan %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Pertahanan %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Kekuatan" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Daya/Tenaga Hidup" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Daya/Tenaga Hidup" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Kecerdasan" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Ketangkasan" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Tambah" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Apakah anda bersungguh-sungguh ingin menghapus karakter ini?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Menyambung..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Menyambung..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Menyambung..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Nama: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Menyambung..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" @@ -951,9 +1675,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Pilih Server Mana World" -#~ msgid "Port:" -#~ msgstr "Port:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "Tolong tulis address dan port dari server" @@ -980,6 +1701,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "Jumlah Berat: %d - Berat Maksimum: %d" - -#~ msgid "Keep" -#~ msgstr "Pertahankan" diff --git a/po/it.po b/po/it.po index a86caec2..b1bf327c 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: 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-01-12 16:41-0700\n" "PO-Revision-Date: 2007-12-03 01:45+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: Italian\n" @@ -19,898 +19,1622 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Compra" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Prezzo: %d GP / Totale: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Esci" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Descrizione : %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Effetto : %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Ferma" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Vendi" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Cancella" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 msgid "Select Character" msgstr "Scelta Personaggio" -#: 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" -msgstr "Ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Nuovo" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Elimina" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Precedente" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Prossimo" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Nome : %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Livello: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Livello: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Monete: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Precedente" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Prossimo" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Nuovo" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Elimina" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Crea Personaggio" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Nome :" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Colore Capelli" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Stile Capelli:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Create" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Scelta Personaggio" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Create" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Server:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Modifica OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Porta:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Server:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Si" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "No" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Connessione..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Usa" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipaggiamento" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventario" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Usa" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Lascia" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Descrizione : %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Effetto : %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Nome :" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Effetto : %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Descrizione : %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "Rimuovi" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Equipaggia" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 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:79 msgid "Select amount of items to drop." msgstr "Seleziona la quantità di oggetti da lasciare." -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "Autenticazione" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Password:" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Porta:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "Mantieni" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Registra" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Stato" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Abilità" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Scorciatoia" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Impostazioni" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "Mini mappa" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Mini mappa" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Scambia Con %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|Attacca %s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Parla con NPC@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancella@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Raccogli %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equipaggia@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Equipaggia@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@usa|Usa@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Lascia@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|Descrizione@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Conferma:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "La password deve contenere meno di %d caratteri." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "Le password non corrispondono." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Errore" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Suono" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "Volume effetti sonori" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "Volume musica" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Applica" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "Resetta finestre" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Video" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Audio" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "Joystick" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Colore Capelli" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "Premi il pulsante per cominciare la calibrazione" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Calibra" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "Abilita joystick" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Ferma" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 msgid "Rotate the stick" msgstr "Ruota la manopola" -#: 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:93 #, fuzzy msgid "Default" msgstr "Elimina" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Nome :" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Schermo intero" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "Cursore personalizzato" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "Limita FPS:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "Opacità IU" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "Raggio dello scroll" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "Lentezza dello scroll" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "Suoni ambientali" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "Spento" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "Basso" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "Alto" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Schermo intero" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Modalità a schermo intero" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "Riavvio necessario affinchè i cambiamenti abbiano effetto." -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "Modifica OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "Applicare le modifiche ad OpenGL richiede il riavvio." -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, fuzzy +msgid "Restart your client for the change to take effect." +msgstr "Riavvio necessario affinchè i cambiamenti abbiano effetto." + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, 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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Usa" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Livello: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Monete: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Stato" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Attacco %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Difesa %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Attacco %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Difesa %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Forza:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Agilità:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Vitalità:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Intelligenza:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Destrezza:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Aggiungi" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Sei sicuro di voler cancellare questo personaggio?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Connessione..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Connessione..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Connessione..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Nome : %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Connessione..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" @@ -953,9 +1677,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Scegli il tuo server Mana World" -#~ msgid "Port:" -#~ msgstr "Porta:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "Per favore inserisci l'indirizzo e la porta del server." @@ -982,6 +1703,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "Peso totale : %d - Peso massimo : %d" - -#~ msgid "Keep" -#~ msgstr "Mantieni" diff --git a/po/ja.po b/po/ja.po index bd629cd2..f82bdaef 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-06-28 16:27+0000\n" "Last-Translator: fate \n" "Language-Team: Japanese \n" @@ -17,893 +17,1611 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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: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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "価格: %d GP / åˆè¨ˆ: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "å状: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "効用: %s" -#: 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:48 ../src/gui/sell.cpp:68 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "å–消" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 msgid "Are you sure you want to delete this character?" msgstr "ã“ã®ã‚­ãƒ£ãƒ©ã¯æ¶ˆã—ã¦ã‚‚ã„ã„ã§ã™ã‹?" -#: src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:80 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" -msgstr "了解" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "æ–°è¦" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "削除" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "å‰ã¸" - -#: src/gui/char_select.cpp:89 -msgid "Next" -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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "åå‰: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "レベル: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "レベル: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "GP: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "å‰ã¸" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "次ã¸" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "æ–°è¦" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "削除" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "了解" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 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:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "åå‰:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "髪ã®è‰²ï¼š" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "髪型:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "作æˆ" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy 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:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "作æˆ" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "サーãƒ:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +msgid "Changing prefix to " +msgstr "" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "ãƒãƒ¼ãƒˆ:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "サーãƒ:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "ã¯ã„" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "ã„ã„ãˆ" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "接続ã—ã¦ã„ã¾ã™..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "使ã†" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../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" -msgstr "使ã†" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "å状: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "効用: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "åå‰:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "効用: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "å状: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "" -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:79 msgid "Select amount of items to drop." msgstr "" -#: src/gui/login.cpp:42 +#: ../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:67 msgid "Password:" msgstr "パスワード:" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "ãƒãƒ¼ãƒˆ:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" +msgstr "" + +#: ../src/gui/login.cpp:75 +msgid "Keep" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 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:117 ../src/gui/skill.cpp:124 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/main.cpp:756 msgid "Setup" msgstr "セットアップ" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +msgid "Map" +msgstr "" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +msgid "@@trade|Trade With " msgstr "" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|%sを攻撃ã™ã‚‹@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|NPCã‚’å–‹ã‚‹@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|使ã†@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|使ã†@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:184 +#: ../src/gui/register.cpp:203 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: src/gui/register.cpp:192 +#: ../src/gui/register.cpp:211 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:200 +#: ../src/gui/register.cpp:219 #, 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:226 msgid "Passwords do not match." msgstr "パスワードãŒä¸€è‡´ã—ã¦ã„ã¾ã›ã‚“。" -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "エラー" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "音声" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "髪ã®è‰²ï¼š" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 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:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 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:93 #, fuzzy msgid "Default" msgstr "削除" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "åå‰:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "fullscreen" +msgstr "" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 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:342 msgid "Changing OpenGL" msgstr "" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "" -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +msgid "Restart your client for the change to take effect." +msgstr "" + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +msgid "Restart your client or change maps for the change to take effect." +msgstr "" + +#: ../src/gui/skill.cpp:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "使ã†" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "レベル: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "GP: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "状態" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 msgid "Attack:" msgstr "" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 msgid "Defense:" msgstr "" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 msgid "M.Attack:" msgstr "" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 msgid "M.Defense:" msgstr "" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "筋力:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "ç´ æ—©ã•:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "体力:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "知性:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "æ•æ·:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "ã“ã®ã‚­ãƒ£ãƒ©ã¯æ¶ˆã—ã¦ã‚‚ã„ã„ã§ã™ã‹?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "接続ã—ã¦ã„ã¾ã™..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "接続ã—ã¦ã„ã¾ã™..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "接続ã—ã¦ã„ã¾ã™..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "åå‰: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "接続ã—ã¦ã„ã¾ã™..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" @@ -922,9 +1640,6 @@ msgstr "" #~ msgid "Email:" #~ msgstr "Eメール:" -#~ msgid "Port:" -#~ msgstr "ãƒãƒ¼ãƒˆ:" - #~ msgid "Confirm" #~ msgstr "確èª" diff --git a/po/nl.po b/po/nl.po index c2700ada..ed33a824 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: 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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-10-10 00:04+0000\n" "Last-Translator: Bjørn Lindeijer \n" "Language-Team: Dutch\n" @@ -17,894 +17,1618 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Kopen" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, 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:69 ../src/game.cpp:638 msgid "Quit" msgstr "Afsluiten" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Beschrijving: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Effect: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Stoppen" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Annuleren" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 msgid "Select Character" msgstr "Kies Personage" -#: 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" -msgstr "Oké" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Nieuw" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Verwijderen" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Vorige" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Volgende" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Naam: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Level: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Level: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Geld: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Vorige" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Volgende" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Nieuw" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Verwijderen" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Oké" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Personage Aanmaken" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Naam:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Haarkleur:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Haarstijl:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Aanmaken" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Kies Personage" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Aanmaken" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Server:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Veranderen van OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Poort:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Server:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Ja" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Nee" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Verbinden..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Gebruiken" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Uitrusting" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventaris" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Gebruiken" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Neerleggen" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Beschrijving: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Effect: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Naam:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Effect: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Beschrijving: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "Afdoen" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Uitrusten" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 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:79 msgid "Select amount of items to drop." msgstr "Selecteer het aantal exemplaren om neer te leggen" -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "Inloggen" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Wachtword:" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Poort:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "Behouden" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Aanmelden" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Status" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Vaardigheden" -#: 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/main.cpp:756 msgid "Setup" msgstr "Configureren" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "Kaartje" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Kaartje" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Handelen met %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|%s aanvallen@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Praat met NPC@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Annuleren@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|%s oppakken@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Uitrusten@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Uitrusten@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Gebruiken@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Neerleggen@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|Beschrijving@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Bevestigen:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Het wachtwoord moet uit minder dan %d tekens bestaan." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "Wachtwoorden komen niet overeen." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Fout" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Geluid" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "Volume van geluiden" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "Muziek volume" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Toepassen" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "Vensters in beginstand" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Video" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Audio" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "Joystick" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Haarkleur:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "Druk op de knop om het kalibreren te starten" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Kalibreren" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "Joystick activeren" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Stoppen" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 msgid "Rotate the stick" msgstr "Maak rondjes met de stick" -#: 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:93 #, fuzzy msgid "Default" msgstr "Verwijderen" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Naam:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Volledig scherm" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "Aangepaste cursor" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "FPS limiet:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "Dekking van de GUI" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "Scroll radius" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "Scroll vertraging" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "Omgevingseffecten" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "uit" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "laag" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "hoog" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Volledig scherm" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Overgaan naar volledig scherm" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "De veranderingen worden pas actief na opnieuw opstarten" -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "Veranderen van OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "Het wisselen van of naar OpenGL wordt pas actief na opnieuw opstarten" -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, 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:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, 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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Gebruiken" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Level: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Geld: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Status" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 msgid "Attack:" msgstr "" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 msgid "Defense:" msgstr "" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 msgid "M.Attack:" msgstr "" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 msgid "M.Defense:" msgstr "" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Sterkte:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Agiliteit:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Vitaliteit:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Intelligentie:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Dexteriteit:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, c-format msgid "You get %d GP." msgstr "" -#: src/gui/trade.cpp:81 +#: ../src/gui/trade.cpp:81 msgid "You give:" msgstr "Je geeft:" -#: src/gui/trade.cpp:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Weet je zeker dat je deze personage wilt verwijderen?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Verbinden..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Verbinden..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Verbinden..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Naam: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Verbinden..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" @@ -941,9 +1665,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Kies uw Mana World server" -#~ msgid "Port:" -#~ msgstr "Poort:" - #~ msgid "Confirm" #~ msgstr "Bevestigen" @@ -952,6 +1673,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "Totaal gewicht: %d - Maximum gewicht: %d" - -#~ msgid "Keep" -#~ msgstr "Behouden" diff --git a/po/pl.po b/po/pl.po index 46cee40e..84f5e412 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: 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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-10-10 05:26+0000\n" "Last-Translator: MichaÅ‚ Trzebiatowski \n" "Language-Team: \n" @@ -19,899 +19,1623 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Kup" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Cena: %d GP / Razem: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Wyjdź" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Opis: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Efekt: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Zatrzymaj" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Sprzedaj" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Anuluj" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 msgid "Select Character" msgstr "Wybierz postać" -#: 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" -msgstr "Ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Nowa" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "UsuÅ„" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Poprzedni" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "NastÄ™pny" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "ImiÄ™: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Poziom: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Poziom: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "PieniÄ…dze: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Poprzedni" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "NastÄ™pny" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Nowa" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "UsuÅ„" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Stwórz postać" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "ImiÄ™:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Kolor wÅ‚osów:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Fryzura:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Stwórz" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Wybierz postać" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Stwórz" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Serwer:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "ZmieÅ„ ustawienia OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Port:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Serwer:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Tak" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Nie" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "ÅÄ…czenie..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Użyj" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Ekwipunek" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inwentarz" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Użyj" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Upuść" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Opis: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Efekt: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "ImiÄ™:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Efekt: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Opis: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "Zdejmij" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Załóż" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 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:79 msgid "Select amount of items to drop." msgstr "Wybierz ilość przedmiotów do upuszczenia." -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "Użytkownik" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "HasÅ‚o:" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Port:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "Zachowaj" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Rejestruj" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Stan" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "ZdolnoÅ›ci" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Skrót" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Konfiguracja" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "MiniMapa" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMapa" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Targ z %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|Atakuj %s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Rozmawiaj z NPC@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Anuluj@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|PodnieÅ› %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Załóż@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Załóż@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Użyj@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Upuść@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|Opis@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Potwierdź:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "Mężczyzna" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "Kobieta" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, 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." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "HasÅ‚a nie zgadzajÄ… siÄ™." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "BÅ‚Ä…d" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "DźwiÄ™k" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "GÅ‚oÅ›ność efektów dźwiÄ™kowych" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "GÅ‚oÅ›ność muzyki" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Zastosuj" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "Zresetuj okna" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Obraz" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "DźwiÄ™k" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "Joystick" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Kolor wÅ‚osów:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "WciÅ›nij przycisk aby rozpocząć kalibracjÄ™" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Kalibruj" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "WÅ‚Ä…cz joystick" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Zatrzymaj" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 msgid "Rotate the stick" msgstr "Obróć drążek" -#: 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:93 #, fuzzy msgid "Default" msgstr "UsuÅ„" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "ImiÄ™:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "PeÅ‚en ekran" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "WÅ‚asny kursor" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "Limit FPS:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "Przezroczystość GUI" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "Skok przy przewijaniu ekranu" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "Opóźnienie przy przewijaniu ekranu" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "DźwiÄ™ki otoczenia" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "wyÅ‚Ä…czone" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "niskie" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "wysokie" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "PeÅ‚en ekran" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "PrzeÅ‚Ä…czanie na peÅ‚en ekran" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "Wymagane ponowne uruchomienia aby zastosować zmiany." -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "ZmieÅ„ ustawienia OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "" "Zastosowywanie zmian w konfiguracji OpenGL wymaga ponownego uruchomienia." -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, fuzzy +msgid "Restart your client for the change to take effect." +msgstr "Wymagane ponowne uruchomienia aby zastosować zmiany." + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, 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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Użyj" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Poziom: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "PieniÄ…dze: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Stan" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Atak %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Obrona %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Atak %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Obrona %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "SiÅ‚a:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Zwinność:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Witalność:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Inteligencja:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "ZrÄ™czność:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Dodaj" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Czy jesteÅ› pewien, że chcesz usunąć tÄ™ postać?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "ÅÄ…czenie..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "ÅÄ…czenie..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "ÅÄ…czenie..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "ImiÄ™: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "ÅÄ…czenie..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" @@ -957,9 +1681,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Wybierz serwer Mana World" -#~ msgid "Port:" -#~ msgstr "Port:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "ProszÄ™ wpisać adres i port serwera" @@ -986,6 +1707,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "CaÅ‚kowita waga: %d - Maksymalna waga: %d" - -#~ msgid "Keep" -#~ msgstr "Zachowaj" diff --git a/po/pt.po b/po/pt.po index bd9630d1..09f31b9b 100644 --- a/po/pt.po +++ b/po/pt.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-02-03 10:14+0000\n" "Last-Translator: Tiago Silva \n" "Language-Team: Portuguese \n" @@ -17,906 +17,1630 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Comprar" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Preço: %d GP / Total: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Sair" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Descrição: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Efeito: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Parar" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Vender" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Cancelar" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 msgid "Select Character" msgstr "Seleccione um Personagem" -#: 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" -msgstr "Ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Novo" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Eliminar" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Anterior" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Seguinte" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Nome: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Nível: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nível: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Dinheiro: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Anterior" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Seguinte" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Novo" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Eliminar" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Criar Personagem" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Nome:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Cor de Cabelo:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Estilo do Cabelo:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Criar" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Seleccione um Personagem" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Criar" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Servidor:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Mudando OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Porta:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Servidor:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Sim" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Não" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Conectando..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Usar" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipamento" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventário" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Usar" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Largar" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Descrição: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Efeito: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Nome:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Efeito: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Descrição: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "Desequipar" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Equipar" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 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:79 msgid "Select amount of items to drop." msgstr "Seleccionar a quantidade de itens a largar." -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "Autenticar" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Senha:" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Porta:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "Manter" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Registo" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Estado" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Competências" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Atalho" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Configuração" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "MiniMapa" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMapa" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Negociar com %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|Atacar %s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 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:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Cancelar@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Apanhar %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Equipar@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Equipar@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Usar@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Largar@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@descrição|Descrição@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Confirmar:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "A password só pode ter até %d caracteres." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "As senhas não coincidem." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Erro" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Som" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "Volume dos Efeitos" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "Volume da Música" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Aplicar" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "Reiniciar Janelas" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Vídeo" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Ãudio" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "Joystick" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Cor de Cabelo:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "Pressione o botão para começar a calibragem" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Calibrar" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "Habilitar Joystick" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Parar" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 msgid "Rotate the stick" msgstr "Rode o manipulo" -#: 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:93 #, fuzzy msgid "Default" msgstr "Eliminar" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Nome:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Ecrã completo" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "Cursor personalizado" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "Limite de FPS:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "Opacidade do Interface" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "Efeitos Ambientais" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "desligado" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "baixo" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "elevado" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Ecrã completo" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Mudar para ecrã completo" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "É necessário reiniciar para as alterações terem efeito." -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "Mudando OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "É necessário reiniciar para as alterações ao OpenGl terem efeito." -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, 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:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, 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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Usar" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Nível: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Dinheiro: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Estado" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "" "Copy text \t\r\n" "Ataque %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "" "Copy text \t\r\n" "Defesa %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "" "Copy text \t\r\n" "Ataque %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "" "Copy text \t\r\n" "Defesa %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Força:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Agilidade:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Vitalidade:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Inteligência:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Destreza:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Adicionar" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Tem a certeza que quer apagar este personagem" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Conectando..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Conectando..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Conectando..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Nome: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Conectando..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" @@ -959,9 +1683,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Escolha o seu Servidor de Mana World" -#~ msgid "Port:" -#~ msgstr "Porta:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "Por favor escreva o endereço e a porta do servidor." @@ -988,6 +1709,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "Peso Total: %d - Peso Máximo: %d" - -#~ msgid "Keep" -#~ msgstr "Manter" diff --git a/po/pt_BR.po b/po/pt_BR.po index 586cfc2d..a1e318a6 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: 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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-12-14 21:37+0000\n" "Last-Translator: Enrico Nicoletto \n" "Language-Team: Brazilian Portuguese \n" @@ -17,901 +17,1628 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Comprar" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Preço: %d GP / Total: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Sair" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Descrição: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Efeito: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Parar" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Vender" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Cancelar" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "Confimar exclusão do personagem" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 msgid "Are you sure you want to delete this character?" msgstr "Tem certeza de que deseja excluir este personagem?" -#: src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:80 msgid "Select Character" msgstr "Selecionar personagem" -#: 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" -msgstr "Ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Novo" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Excluir" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Anterior" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Próximo" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Nome: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Nível: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Nível: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Dinheiro: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Anterior" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Próximo" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Novo" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Excluir" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Criar Personagem" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Nome:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Cor do Cabelo:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Estilo do Cabelo:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Criar" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Selecionar personagem" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Criar" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Servidor:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Trocando OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Porta:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Servidor:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Sim" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Não" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Conectando..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Usar" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Equipamento" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventório" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Usar" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Descartar" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Descrição: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Efeito: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Nome:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Efeito: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Descrição: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "Desequipar" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Equipar" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 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:79 msgid "Select amount of items to drop." msgstr "Selecionar montante de itens para descartar." -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "Login" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Senha:" -#: src/gui/login.cpp:50 -msgid "Remember Username" -msgstr "Lembrar nome de usuário" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Porta:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" +msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "Manter" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Registrar" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Status" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Habilidades" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Atalho" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Configurar" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "MiniMapa" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "MiniMapa" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@Negociar|Negociar com %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@atacar|Atacar %s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@falar|Falar com NPC@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancelar|Cancelar@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pegar|Pegar %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@usar|Equipar@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@usar|Equipar@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@usar|Usar@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@descartar|Descartar@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@descrição|Descrição@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Confirmar:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "Homem" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "Mulher" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "A senha deve ser menor que %d caracteres." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "Senhas não conferem." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Erro" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Som" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "Volume Sfx" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "Volume da Música" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Aplicar" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "Restaurar janelas" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Vídeo" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Ãudio" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "Joystick" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "Teclado" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Cor do Cabelo:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "Aperto o botão para começar a calibração" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Calibrar" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "Habilitar joystick" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Parar" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 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:93 #, fuzzy msgid "Default" msgstr "Excluir" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Nome:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Tela cheia" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "Cursor customizado" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "Limite FPS:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "Opacidade da GUI" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "Ambiente FX" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "desligado" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "baixo" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "alto" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Tela cheia" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Mudando para Tela cheia" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "É preciso reiniciar para as mudanças terem efeito." -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "Trocando OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "Aplicando mudança a OpenGL requer reiniciar o jogo." -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, 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:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, 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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Usar" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Nível: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Dinheiro: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Status" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Ataque %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Defesa %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Ataque %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Defesa %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Força:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Agilidade:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Vitalidade:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Inteligência:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Destreza:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Adicionar" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Tem certeza de que deseja excluir este personagem?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Conectando..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Conectando..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Conectando..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Nome: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Conectando..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" +#~ msgid "Remember Username" +#~ msgstr "Lembrar nome de usuário" + #~ msgid "Account and Character Management" #~ msgstr "Gerenciamento de Conta e Personagem" @@ -972,9 +1699,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Escolha seu Servidor de Mana World" -#~ msgid "Port:" -#~ msgstr "Porta:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "Por favor especifique ambos os Endereços e a Porta do servidor" @@ -1004,6 +1728,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "Peso Total: %d - Peso Máximo: %d" - -#~ msgid "Keep" -#~ msgstr "Manter" diff --git a/po/ru.po b/po/ru.po index 94be1f08..9dc5c43a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-01-08 11:50+0000\n" "Last-Translator: idle sign \n" "Language-Team: Russian \n" @@ -17,898 +17,1622 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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: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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "СтоимоÑÑ‚ÑŒ: %d GP / Ð’Ñегоl: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "ОпиÑание: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Эффект: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy 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:48 ../src/gui/sell.cpp:68 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Отмена" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 msgid "Are you sure you want to delete this character?" msgstr "Ð’Ñ‹ уверены, что хотите удалить Ñтого перÑонажа?" -#: src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:80 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" -msgstr "Ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Ðовый" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Удалить" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Предыдущий" - -#: src/gui/char_select.cpp:89 -msgid "Next" -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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "ИмÑ: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Уровень: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Уровень: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Деньги: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Предыдущий" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Следующий" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Ðовый" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Удалить" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 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:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "ИмÑ:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Цвет волоÑ:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Стрижка:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Создать" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy 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:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Создать" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Сервер:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Переключение на OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Порт:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Сервер:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Да" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Ðет" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Соединение..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "ИÑпользовать" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "СнарÑжение" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../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" -msgstr "ИÑпользовать" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "СброÑить" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "ОпиÑание: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Эффект: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "ИмÑ:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Эффект: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "ОпиÑание: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "СнÑÑ‚ÑŒ" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Ðадеть" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "Сколько предметов продать." -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:79 msgid "Select amount of items to drop." msgstr "Сколько предметов ÑброÑить." -#: src/gui/login.cpp:42 +#: ../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:67 msgid "Password:" msgstr "Пароль:" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Порт:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "ОÑтавить" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "ЗарегиÑтрироватьÑÑ" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 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:117 ../src/gui/skill.cpp:124 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/main.cpp:756 msgid "Setup" msgstr "ÐаÑтройка" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "МиниКарта" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "МиниКарта" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Торговать Ñ %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|Ðтаковать %s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Говорить Ñ NPC@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancelОтмена@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Подобрать %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Ðадеть@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Ðадеть@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|ИÑпользовать@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|СброÑить@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|ОпиÑание@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Подтвердите:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, c-format msgid "The username needs to be at least %d characters long." msgstr "Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð´Ð¾Ð»Ð¶Ð½Ð¾ Ñодержать не менее %d Ñимволов." -#: src/gui/register.cpp:184 +#: ../src/gui/register.cpp:203 #, c-format msgid "The username needs to be less than %d characters long." msgstr "Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð½Ðµ должно Ñодержать более %d Ñимволов." -#: src/gui/register.cpp:192 +#: ../src/gui/register.cpp:211 #, c-format msgid "The password needs to be at least %d characters long." msgstr "Пароль должен Ñодержать не менее %d Ñимволов." -#: src/gui/register.cpp:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Пароль не должен Ñодержать более %d Ñимволов." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "Пароли не Ñовпадают." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Ошибка" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Звук" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "ГромкоÑÑ‚ÑŒ Ñффектов" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "ГромкоÑÑ‚ÑŒ музыки" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Применить" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "ВоÑÑтановить раÑположение окон" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Видео" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Ðудио" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "ДжойÑтик" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Цвет волоÑ:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 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:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Калибровать" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "ИÑпользовать джойÑтик" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Стоп" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 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:93 #, fuzzy msgid "Default" msgstr "Удалить" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "ИмÑ:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Ðа полный Ñкран" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "Выборочный курÑор" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "Ограничение кадр/Ñ:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "ПрозрачноÑÑ‚ÑŒ интерфейÑа" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð¿Ñ€Ð¾ÐºÑ€ÑƒÑ‚ÐºÐ¸" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "ЗаторможенноÑÑ‚ÑŒ прокрутки" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "Эффекты окружающей Ñреды" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "выÑ." -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Ðа полный Ñкран" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Переключение в полноÑкранный режим" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 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:342 msgid "Changing OpenGL" msgstr "Переключение на OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "Переход к OpenGL требует перезагрузки игры." -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, fuzzy +msgid "Restart your client for the change to take effect." +msgstr "Ð”Ð»Ñ Ð²ÑÑ‚ÑƒÐ¿Ð»ÐµÐ½Ð¸Ñ Ð² Ñилу выбранных наÑтроек требуетÑÑ Ð¿ÐµÑ€ÐµÐ·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ° игры." + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, fuzzy +msgid "Restart your client or change maps for the change to take effect." +msgstr "Ð”Ð»Ñ Ð²ÑÑ‚ÑƒÐ¿Ð»ÐµÐ½Ð¸Ñ Ð² Ñилу выбранных наÑтроек требуетÑÑ Ð¿ÐµÑ€ÐµÐ·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ° игры." + +#: ../src/gui/skill.cpp:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "ИÑпользовать" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Уровень: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Деньги: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "СоÑтоÑние" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Ðтака %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Защита %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Ðтака %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Защита %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Сила:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "ВыноÑливоÑÑ‚ÑŒ:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "ЖивучеÑÑ‚ÑŒ:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Интеллект:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "ЛовкоÑÑ‚ÑŒ:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Добавить" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Ð’Ñ‹ уверены, что хотите удалить Ñтого перÑонажа?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Соединение..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Соединение..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Соединение..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "ИмÑ: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Соединение..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" @@ -951,9 +1675,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Выберите Ñервер Mana World" -#~ msgid "Port:" -#~ msgstr "Порт:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "Следует указать Ð°Ð´Ñ€ÐµÑ Ð¸ порт Ñервера." @@ -980,6 +1701,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "Суммарный веÑ: %d - МакÑ. веÑ: %d" - -#~ msgid "Keep" -#~ msgstr "ОÑтавить" diff --git a/po/sk.po b/po/sk.po index 453c67dc..e6b7a602 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-12-30 14:07+0000\n" "Last-Translator: TomasKovacik \n" "Language-Team: Slovak \n" @@ -17,887 +17,1598 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "KúpiÅ¥" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Cena: %d GP / Spolu: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "UkonÄiÅ¥" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Popis: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Effekt: %s" -#: 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:48 ../src/gui/sell.cpp:68 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "ZruÅ¡iÅ¥" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "Potvrdte zmazanie postavy" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 #, fuzzy msgid "Select Character" msgstr "VytvoriÅ¥ postavu" -#: 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" -msgstr "Ano" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Nový" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "VymazaÅ¥" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "Predchádzajúci" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Nasledujúci" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "Level: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "Level: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Peniaze: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "Predchádzajúci" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Nasledujúci" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Nový" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "VymazaÅ¥" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ano" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "VytvoriÅ¥ postavu" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Meno" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "Farba vlasov:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Å týl vlasov:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "VytvoriÅ¥" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 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:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "VytvoriÅ¥" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +msgid "Changing prefix to " +msgstr "" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." +msgstr "" + +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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:37 msgid "Yes" msgstr "" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "" -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../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:55 +msgid "Drop" msgstr "" -#: src/gui/inventorywindow.cpp:57 -msgid "Drop" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Popis: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Effekt: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Meno" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Effekt: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Popis: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "" -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:79 msgid "Select amount of items to drop." msgstr "" -#: src/gui/login.cpp:42 +#: ../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:67 msgid "Password:" msgstr "" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" +msgstr "" + +#: ../src/gui/login.cpp:75 +msgid "Keep" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 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:117 ../src/gui/skill.cpp:124 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/main.cpp:756 msgid "Setup" msgstr "" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +msgid "Map" +msgstr "" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +msgid "@@trade|Trade With " msgstr "" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +msgid "@@attack|Attack " msgstr "" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 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:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "Muž" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "Žena" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:184 +#: ../src/gui/register.cpp:203 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: src/gui/register.cpp:192 +#: ../src/gui/register.cpp:211 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:200 +#: ../src/gui/register.cpp:219 #, 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:226 msgid "Passwords do not match." msgstr "" -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "Farba vlasov:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 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:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 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:93 #, fuzzy msgid "Default" msgstr "VymazaÅ¥" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Meno" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "fullscreen" +msgstr "" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 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:342 msgid "Changing OpenGL" msgstr "" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "" -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +msgid "Restart your client for the change to take effect." +msgstr "" + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:452 +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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +msgid "use" +msgstr "" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "Level: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Peniaze: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 msgid "Stats" msgstr "" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 msgid "Attack:" msgstr "" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 msgid "Defense:" msgstr "" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 msgid "M.Attack:" msgstr "" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 msgid "M.Defense:" msgstr "" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Sila:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 msgid "Agility" msgstr "" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 msgid "Vitality" msgstr "" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Inteligencia:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 msgid "Dexterity" msgstr "" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "Naozaj chcete odstrániÅ¥ túto postavu?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +msgid "Trying to connect to account server..." +msgstr "" + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +msgid "Trying to connect to char server..." +msgstr "" + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +msgid "Trying to connect to map server..." +msgstr "" + +#: ../src/main.cpp:668 +#, c-format +msgid "Map: %s" +msgstr "" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 msgid "Connecting to map server..." msgstr "" -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" diff --git a/po/sv.po b/po/sv.po index 85e37a50..e4c7a401 100644 --- a/po/sv.po +++ b/po/sv.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-05-07 19:04+0000\n" "Last-Translator: Kess Vargavind \n" "Language-Team: Swedish \n" @@ -17,898 +17,1622 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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:60 ../src/gui/buysell.cpp:34 msgid "Buy" msgstr "Köp" -#: 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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "Pris: %d GP / Totalt: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 msgid "Quit" msgstr "Avsluta" -#: 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "Beskrivning: %s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "Effekt: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy msgid "Shop" msgstr "Stopp" -#: src/gui/buysell.cpp:35 src/gui/sell.cpp:48 src/gui/sell.cpp:68 +#: ../src/gui/buysell.cpp:34 ../src/gui/sell.cpp:48 ../src/gui/sell.cpp:68 msgid "Sell" msgstr "Sälj" -#: 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "Avbryt" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 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:80 msgid "Select Character" msgstr "Välj karaktär" -#: 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" -msgstr "Ok" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "Ny" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "Ta bort" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "FöregÃ¥ende" - -#: src/gui/char_select.cpp:89 -msgid "Next" -msgstr "Nästa" - -#: 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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "Namn: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "NivÃ¥: %d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "NivÃ¥: %d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "Pengar: %d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "FöregÃ¥ende" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "Nästa" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "Ny" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "Ta bort" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "Ok" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 msgid "Create Character" msgstr "Skapa karaktär" -#: src/gui/char_select.cpp:250 src/gui/login.cpp:44 src/gui/register.cpp:65 +#: ../src/gui/char_select.cpp:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "Namn:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "HÃ¥rfärg:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "Frisyr:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "Skapa" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy msgid "Select Server" msgstr "Välj karaktär" -#: src/gui/char_server.cpp:59 src/gui/npclistdialog.cpp:44 -#: src/gui/npc_text.cpp:46 +#: ../src/gui/char_server.cpp:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "Skapa" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "Server:" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "Ändrar OpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "Port:" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "Server:" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "Ja" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "Nej" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "Ansluter..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "Använd" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "Utrustning" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:109 msgid "Inventory" msgstr "Inventarium" -#: src/gui/inventorywindow.cpp:56 src/gui/inventorywindow.cpp:232 -#: src/gui/skill.cpp:134 -msgid "Use" -msgstr "Använd" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "Släpp" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "Beskrivning: %s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "Effekt: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "Namn:" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "Effekt: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "Beskrivning: %s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "Avrusta" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "Utrusta" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 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:79 msgid "Select amount of items to drop." msgstr "Välj antal föremÃ¥l att släppa." -#: src/gui/login.cpp:42 +#: ../src/gui/login.cpp:49 msgid "Login" msgstr "Användarnamn" -#: src/gui/login.cpp:45 src/gui/register.cpp:66 +#: ../src/gui/login.cpp:52 ../src/gui/register.cpp:67 msgid "Password:" msgstr "Lösenord:" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "Port:" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "BehÃ¥ll" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "Registrera" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 msgid "Status" msgstr "Status" -#: src/gui/menuwindow.cpp:64 src/gui/skill.cpp:119 +#: ../src/gui/menuwindow.cpp:66 ../src/gui/menuwindow.cpp:113 +#: ../src/gui/skill.cpp:117 ../src/gui/skill.cpp:124 msgid "Skills" msgstr "Färdigheter" -#: src/gui/menuwindow.cpp:65 +#: ../src/gui/menuwindow.cpp:67 ../src/gui/menuwindow.cpp:117 msgid "Shortcut" msgstr "Genväg" -#: src/gui/menuwindow.cpp:66 src/main.cpp:716 +#: ../src/gui/menuwindow.cpp:69 ../src/gui/menuwindow.cpp:125 +#: ../src/main.cpp:756 msgid "Setup" msgstr "Inställningar" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "Minikarta" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "Minikarta" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@trade|Handla med %s@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@attack|Attackera %s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@talk|Prata med NPC@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@cancel|Avbryt@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@pickup|Plocka upp %s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@use|Utrusta@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@use|Utrusta@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@use|Använd@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@drop|Släpp@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@description|Beskrivning@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "Bekräfta:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, 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:184 +#: ../src/gui/register.cpp:203 #, 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:192 +#: ../src/gui/register.cpp:211 #, 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:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "Lösenordet mÃ¥ste vara kortare än %d tecken." -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "Lösenorden stämmer inte överens." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "Fel" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "Ljud" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "Volym för ljudeffekter" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "Musikvolym" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "Verkställ" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "Ã…terställ fönster" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "Video" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "Ljud" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "Joystick" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "HÃ¥rfärg:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 msgid "Press the button to start calibration" msgstr "Klicka pÃ¥ knappen för att starta kalibreringen" -#: src/gui/setup_joystick.cpp:37 src/gui/setup_joystick.cpp:68 +#: ../src/gui/setup_joystick.cpp:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "Kalibrera" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "Aktivera joystick" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "Stopp" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 msgid "Rotate the stick" msgstr "Rotera spaken" -#: 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:93 #, fuzzy msgid "Default" msgstr "Ta bort" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "Namn:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "Helskärm" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "Särskild muspekare" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "FPS-gräns:" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "Genomskinlighet" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "Rullningsradie" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "Tröghet för rullning" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "Omgivande FX" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 msgid "off" msgstr "av" -#: 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 msgid "low" msgstr "lÃ¥g" -#: 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "hög" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "Helskärm" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "Byte till helskärm" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 msgid "Restart needed for changes to take effect." msgstr "Omstart krävs för att ändringarna ska synas." -#: src/gui/setup_video.cpp:322 +#. OpenGL can currently only be changed by restarting, notify user. +#: ../src/gui/setup_video.cpp:342 msgid "Changing OpenGL" msgstr "Ändrar OpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "Ändringar i OpenGL kräver omstart." -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, 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:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, 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:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "Använd" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "NivÃ¥: %d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "Pengar: %d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "Status" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "Attack %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "Försvar %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "Attack %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "Försvar %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Styrka:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Smidighet:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Hälsa:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Intelligens:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Skicklighet:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "Lägg till" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, 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:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "Ansluter..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "Ansluter..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "Ansluter..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "Namn: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "Ansluter..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" @@ -951,9 +1675,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "Välj din Mana World-server" -#~ msgid "Port:" -#~ msgstr "Port:" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "Var vänlig skriv bÃ¥de adressen och porten till en server." @@ -980,6 +1701,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "Nuvarande vikt: %d - Maxvikt: %d" - -#~ msgid "Keep" -#~ msgstr "BehÃ¥ll" diff --git a/po/th.po b/po/th.po index e2ee2ab5..b5937c8d 100644 --- a/po/th.po +++ b/po/th.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: tmw\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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-11-25 06:16+0000\n" "Last-Translator: Tharawut Paripaiboon \n" "Language-Team: Thai \n" @@ -17,892 +17,1603 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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: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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "ราคา: %d GP / ทั้งหมด: %d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, 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:48 ../src/gui/sell.cpp:68 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "ยà¸à¹€à¸¥à¸´à¸" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "ยืนยันà¸à¸²à¸£à¸¥à¸šà¸•à¸±à¸§à¸¥à¸°à¸„ร" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 msgid "Are you sure you want to delete this character?" msgstr "คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¹à¸¥à¹‰à¸§à¸«à¸£à¸·à¸­à¸—ี่จะลบตัวละครนี้?" -#: src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:80 #, fuzzy 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" -msgstr "ตà¸à¸¥à¸‡" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "สร้างใหม่" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "ลบทิ้ง" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²" - -#: src/gui/char_select.cpp:89 -msgid "Next" -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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "ชื่อ: %s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, c-format msgid "Job Level: %d" msgstr "" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "ถัดไป" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "สร้างใหม่" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "ลบทิ้ง" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "ตà¸à¸¥à¸‡" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 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:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "ชื่อ:" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "สีผม:" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "ทรงผม:" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "สร้าง" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 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:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "สร้าง" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +msgid "Changing prefix to " +msgstr "" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." +msgstr "" + +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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:37 msgid "Yes" msgstr "ใช่" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "ไม่" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "ใช้" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../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" -msgstr "ใช้" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "ทิ้ง" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +msgid "Description:" msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +msgid "Effect:" +msgstr "" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "ชื่อ:" + +#: ../src/gui/inventorywindow.cpp:170 +msgid "Effect: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:172 +msgid "Description: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "" -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:79 msgid "Select amount of items to drop." msgstr "" -#: src/gui/login.cpp:42 +#: ../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:67 msgid "Password:" msgstr "รหัสผ่าน:" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "สมัครสมาชิà¸" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 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:117 ../src/gui/skill.cpp:124 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/main.cpp:756 msgid "Setup" msgstr "ตั้งค่า" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +msgid "Map" +msgstr "" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +msgid "@@trade|Trade With " msgstr "" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +msgid "@@attack|Attack " +msgstr "" + +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " msgstr "" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:109 +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:117 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:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 msgid "@@use|Unequip@@" msgstr "" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "ยืนยัน:" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "ชาย" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "หà¸à¸´à¸‡" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, c-format msgid "The username needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:184 +#: ../src/gui/register.cpp:203 #, c-format msgid "The username needs to be less than %d characters long." msgstr "" -#: src/gui/register.cpp:192 +#: ../src/gui/register.cpp:211 #, c-format msgid "The password needs to be at least %d characters long." msgstr "" -#: src/gui/register.cpp:200 +#: ../src/gui/register.cpp:219 #, 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:226 msgid "Passwords do not match." msgstr "" -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "ผิดพลาด" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "สีผม:" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 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:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 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:93 #, fuzzy msgid "Default" msgstr "ลบทิ้ง" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "ชื่อ:" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "fullscreen" +msgstr "" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 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:342 msgid "Changing OpenGL" msgstr "" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "" -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +msgid "Restart your client for the change to take effect." +msgstr "" + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:452 +msgid "Restart your client or change maps for the change to take effect." +msgstr "" + +#: ../src/gui/skill.cpp:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "ใช้" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, c-format msgid "Job: %d" msgstr "" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, c-format msgid "Money: %d GP" msgstr "" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "สถานะ" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 msgid "Attack:" msgstr "" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 msgid "Defense:" msgstr "" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 msgid "M.Attack:" msgstr "" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 msgid "M.Defense:" msgstr "" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "Strength:" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "Agility:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "Vitality:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "Intelligence:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "Dexterity:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¹à¸¥à¹‰à¸§à¸«à¸£à¸·à¸­à¸—ี่จะลบตัวละครนี้?" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "ชื่อ: %s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "à¸à¸³à¸¥à¸±à¸‡à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 031fde9c..7fca175b 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: 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-01-12 16:41-0700\n" "PO-Revision-Date: 2008-09-17 14:41+0000\n" "Last-Translator: luojie-dune \n" "Language-Team: Simplified Chinese \n" @@ -17,898 +17,1622 @@ msgstr "" "X-Launchpad-Export-Date: 2009-01-06 12:40+0000\n" "X-Generator: Launchpad (build Unknown)\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: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:65 +#: ../src/gui/sell.cpp:259 #, c-format msgid "Price: %d GP / Total: %d GP" msgstr "价格:%d GP/总数:%d GP" -#: src/gui/buy.cpp:62 src/gui/sell.cpp:69 +#: ../src/gui/buy.cpp:61 ../src/gui/sell.cpp:69 ../src/game.cpp:638 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:70 ../src/gui/sell.cpp:230 ../src/gui/sell.cpp:244 +#: ../src/gui/trade.cpp:94 ../src/gui/trade.cpp:266 #, c-format msgid "Description: %s" msgstr "æ述:%s" -#: 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:71 ../src/gui/sell.cpp:232 ../src/gui/sell.cpp:245 #, c-format msgid "Effect: %s" msgstr "å½±å“: %s" -#: src/gui/buysell.cpp:31 +#: ../src/gui/buysell.cpp:30 #, fuzzy 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:48 ../src/gui/sell.cpp:68 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:96 +#: ../src/gui/char_select.cpp:259 ../src/gui/char_server.cpp:59 +#: ../src/gui/connection.cpp:46 ../src/gui/item_amount.cpp:60 +#: ../src/gui/login.cpp:77 ../src/gui/npclistdialog.cpp:42 +#: ../src/gui/register.cpp:79 ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:121 +#: ../src/gui/trade.cpp:63 ../src/gui/updatewindow.cpp:115 msgid "Cancel" msgstr "å–消" -#: src/gui/char_select.cpp:63 +#: ../src/gui/char_select.cpp:62 msgid "Confirm Character Delete" msgstr "" -#: src/gui/char_select.cpp:64 +#: ../src/gui/char_select.cpp:63 msgid "Are you sure you want to delete this character?" msgstr "你确定想删除这个较色" -#: src/gui/char_select.cpp:81 +#: ../src/gui/char_select.cpp:80 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" -msgstr "OK" - -#: src/gui/char_select.cpp:86 -msgid "New" -msgstr "新建" - -#: src/gui/char_select.cpp:87 src/gui/setup_players.cpp:220 -msgid "Delete" -msgstr "删除" - -#: src/gui/char_select.cpp:88 -msgid "Previous" -msgstr "上一页" - -#: src/gui/char_select.cpp:89 -msgid "Next" -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 +#: ../src/gui/char_select.cpp:86 ../src/gui/char_select.cpp:169 +#: ../src/gui/char_select.cpp:181 ../src/gui/trade.cpp:92 +#: ../src/gui/trade.cpp:264 #, c-format msgid "Name: %s" msgstr "å字:%s" -#: 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 +#. ---------------------- +#. Status Part +#. ---------------------- +#. Status Part +#. ----------- +#: ../src/gui/char_select.cpp:87 ../src/gui/char_select.cpp:170 +#: ../src/gui/char_select.cpp:182 ../src/gui/status.cpp:49 +#: ../src/gui/status.cpp:230 #, c-format msgid "Level: %d" msgstr "等级:%d" -#: src/gui/char_select.cpp:93 src/gui/char_select.cpp:173 -#: src/gui/char_select.cpp:185 +#: ../src/gui/char_select.cpp:88 ../src/gui/char_select.cpp:171 +#: ../src/gui/char_select.cpp:183 #, fuzzy, c-format msgid "Job Level: %d" msgstr "等级:%d" -#: src/gui/char_select.cpp:94 src/gui/char_select.cpp:186 +#: ../src/gui/char_select.cpp:89 ../src/gui/char_select.cpp:184 #, c-format msgid "Money: %d" msgstr "金钱:%d" -#: src/gui/char_select.cpp:174 +#: ../src/gui/char_select.cpp:91 +msgid "Previous" +msgstr "上一页" + +#: ../src/gui/char_select.cpp:92 +msgid "Next" +msgstr "下一页" + +#: ../src/gui/char_select.cpp:93 +msgid "New" +msgstr "新建" + +#: ../src/gui/char_select.cpp:94 ../src/gui/setup_players.cpp:219 +msgid "Delete" +msgstr "删除" + +#: ../src/gui/char_select.cpp:95 ../src/gui/item_amount.cpp:59 +#: ../src/gui/ok_dialog.cpp:37 ../src/gui/trade.cpp:62 +msgid "Ok" +msgstr "OK" + +#: ../src/gui/char_select.cpp:172 #, c-format msgid "Gold: %d" msgstr "" -#: src/gui/char_select.cpp:243 +#: ../src/gui/char_select.cpp:241 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:251 ../src/gui/inventorywindow.cpp:66 +#: ../src/gui/inventorywindow.cpp:158 ../src/gui/login.cpp:51 +#: ../src/gui/register.cpp:66 msgid "Name:" msgstr "å称" -#: src/gui/char_select.cpp:253 +#: ../src/gui/char_select.cpp:254 msgid "Hair Color:" msgstr "头å‘颜色" -#: src/gui/char_select.cpp:256 +#: ../src/gui/char_select.cpp:257 msgid "Hair Style:" msgstr "å‘åž‹" -#: src/gui/char_select.cpp:257 +#: ../src/gui/char_select.cpp:258 msgid "Create" msgstr "建立" -#: src/gui/char_server.cpp:52 +#: ../src/gui/char_server.cpp:51 #, fuzzy 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:58 ../src/gui/login.cpp:76 +#: ../src/gui/npclistdialog.cpp:41 ../src/gui/npc_text.cpp:43 msgid "OK" msgstr "" -#: src/gui/chat.cpp:122 -msgid "Global announcement:" +#: ../src/gui/chat.cpp:52 ../src/gui/colour.cpp:32 +#: ../src/gui/menuwindow.cpp:62 ../src/gui/menuwindow.cpp:97 +#, fuzzy +msgid "Chat" +msgstr "建立" + +#. Fix the owner of welcome message. +#: ../src/gui/chat.cpp:136 +msgid "Welcome" msgstr "" -#: src/gui/chat.cpp:125 -#, c-format -msgid "Global announcement from %s:" +#: ../src/gui/chat.cpp:147 +msgid "Global announcement: " +msgstr "" + +#: ../src/gui/chat.cpp:152 +msgid "Global announcement from " msgstr "" -#: src/gui/chat.cpp:140 src/gui/login.cpp:46 src/gui/register.cpp:68 +#: ../src/gui/chat.cpp:166 ../src/gui/login.cpp:53 ../src/gui/register.cpp:69 msgid "Server:" msgstr "æœåŠ¡å™¨ï¼š" -#: src/gui/chat.cpp:146 -#, c-format -msgid "%s whispers:" +#: ../src/gui/chat.cpp:291 +msgid "Trying to send a blank party message." msgstr "" -#: src/gui/chat.cpp:283 -#, c-format -msgid "Whispering to %s: %s" +#: ../src/gui/chat.cpp:402 +msgid "Whispering to " +msgstr "" + +#: ../src/gui/chat.cpp:411 +msgid "Return toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:412 +msgid "Message closes chat." +msgstr "" + +#: ../src/gui/chat.cpp:417 +msgid "Return now toggles chat." +msgstr "" + +#: ../src/gui/chat.cpp:422 +msgid "Message now closes chat." msgstr "" -#: src/gui/chat.cpp:356 +#: ../src/gui/chat.cpp:426 +msgid "" +"Options to /toggle are \"yes\", \"no\", \"true\", \"false\", \"1\", \"0\"." +msgstr "" + +#: ../src/gui/chat.cpp:432 +msgid "Unknown party command... Type \"/help\" party for more information." +msgstr "" + +#: ../src/gui/chat.cpp:470 +msgid "No such spell!" +msgstr "" + +#: ../src/gui/chat.cpp:473 +msgid "The current server doesn't support spells" +msgstr "" + +#: ../src/gui/chat.cpp:503 ../src/gui/chat.cpp:506 +msgid "Present: " +msgstr "" + +#: ../src/gui/chat.cpp:504 +msgid "Attendance written to record log." +msgstr "" + +#: ../src/gui/chat.cpp:510 msgid "Unknown command" msgstr "" -#: src/gui/chat.cpp:366 +#: ../src/gui/chat.cpp:519 msgid "Trade failed!" msgstr "" -#: src/gui/chat.cpp:369 +#: ../src/gui/chat.cpp:522 msgid "Emote failed!" msgstr "" -#: src/gui/chat.cpp:372 +#: ../src/gui/chat.cpp:525 msgid "Sit failed!" msgstr "" -#: src/gui/chat.cpp:375 +#: ../src/gui/chat.cpp:528 msgid "Chat creating failed!" msgstr "" -#: src/gui/chat.cpp:378 +#: ../src/gui/chat.cpp:531 msgid "Could not join party!" msgstr "" -#: src/gui/chat.cpp:381 +#: ../src/gui/chat.cpp:534 msgid "Cannot shout!" msgstr "" -#: src/gui/chat.cpp:389 +#: ../src/gui/chat.cpp:542 msgid "You have not yet reached a high enough lvl!" msgstr "" -#: src/gui/chat.cpp:392 +#: ../src/gui/chat.cpp:545 msgid "Insufficient HP!" msgstr "" -#: src/gui/chat.cpp:395 +#: ../src/gui/chat.cpp:548 msgid "Insufficient SP!" msgstr "" -#: src/gui/chat.cpp:398 +#: ../src/gui/chat.cpp:551 msgid "You have no memos!" msgstr "" -#: src/gui/chat.cpp:401 +#: ../src/gui/chat.cpp:554 msgid "You cannot do that right now!" msgstr "" -#: src/gui/chat.cpp:404 +#: ../src/gui/chat.cpp:557 msgid "Seems you need more Zeny... ;-)" msgstr "" -#: src/gui/chat.cpp:407 +#: ../src/gui/chat.cpp:560 msgid "You cannot use this skill with that kind of weapon!" msgstr "" -#: src/gui/chat.cpp:410 +#: ../src/gui/chat.cpp:563 msgid "You need another red gem!" msgstr "" -#: src/gui/chat.cpp:413 +#: ../src/gui/chat.cpp:566 msgid "You need another blue gem!" msgstr "" -#: src/gui/chat.cpp:416 +#: ../src/gui/chat.cpp:569 msgid "You're carrying to much to do this!" msgstr "" -#: src/gui/chat.cpp:419 +#: ../src/gui/chat.cpp:572 msgid "Huh? What's that?" msgstr "" -#: src/gui/chat.cpp:425 +#: ../src/gui/chat.cpp:578 msgid "Warp failed..." msgstr "" -#: src/gui/chat.cpp:428 +#: ../src/gui/chat.cpp:581 msgid "Could not steal anything..." msgstr "" -#: src/gui/chat.cpp:431 +#: ../src/gui/chat.cpp:584 msgid "Poison had no effect..." msgstr "" -#: src/gui/chat.cpp:496 +#: ../src/gui/chat.cpp:652 +msgid "The current party prefix is " +msgstr "" + +#: ../src/gui/chat.cpp:657 +msgid "Party prefix must be one character long." +msgstr "" + +#: ../src/gui/chat.cpp:660 +msgid "Cannot use a '/' as the prefix." +msgstr "" + +#: ../src/gui/chat.cpp:663 +#, fuzzy +msgid "Changing prefix to " +msgstr "改å˜æˆOpenGL" + +#: ../src/gui/chat.cpp:673 msgid "-- Help --" msgstr "" -#: src/gui/chat.cpp:499 +#: ../src/gui/chat.cpp:675 msgid "/announce: Global announcement (GM only)" msgstr "" -#: src/gui/chat.cpp:500 +#: ../src/gui/chat.cpp:676 msgid "/clear: Clears this window" msgstr "" -#: src/gui/chat.cpp:501 +#: ../src/gui/chat.cpp:677 msgid "/help: Display this help" msgstr "" -#: src/gui/chat.cpp:502 -msgid "/where: Display map name" +#: ../src/gui/chat.cpp:679 +msgid "/msg : Alternate form for /whisper" msgstr "" -#: src/gui/chat.cpp:503 -msgid "/whisper : Sends a private to " +#: ../src/gui/chat.cpp:680 +msgid "/present: Get list of players present" +msgstr "" + +#: ../src/gui/chat.cpp:682 +msgid "/toggle: Determine whether toggles the chat log." msgstr "" -#: src/gui/chat.cpp:505 +#: ../src/gui/chat.cpp:684 +msgid "/where: Display map name" +msgstr "" + +#: ../src/gui/chat.cpp:685 msgid "/w : Short form for /whisper" msgstr "" -#: src/gui/chat.cpp:506 +#: ../src/gui/chat.cpp:686 +msgid "/whisper : Sends a private to " +msgstr "" + +#: ../src/gui/chat.cpp:688 msgid "/who: Display number of online users" msgstr "" -#: src/gui/chat.cpp:507 +#: ../src/gui/chat.cpp:689 msgid "For more information, type /help " msgstr "" -#: src/gui/chat.cpp:512 +#: ../src/gui/chat.cpp:694 msgid "Command: /announce " msgstr "" -#: src/gui/chat.cpp:513 +#: ../src/gui/chat.cpp:695 msgid "*** only available to a GM ***" msgstr "" -#: src/gui/chat.cpp:514 +#: ../src/gui/chat.cpp:696 msgid "This command sends the message to all players currently online." msgstr "" -#: src/gui/chat.cpp:520 +#: ../src/gui/chat.cpp:702 msgid "Command: /clear" msgstr "" -#: src/gui/chat.cpp:521 +#: ../src/gui/chat.cpp:703 msgid "This command clears the chat log of previous chat." msgstr "" -#: src/gui/chat.cpp:527 +#: ../src/gui/chat.cpp:709 msgid "Command: /help" msgstr "" -#: src/gui/chat.cpp:528 +#: ../src/gui/chat.cpp:710 msgid "This command displays a list of all commands available." msgstr "" -#: src/gui/chat.cpp:530 +#: ../src/gui/chat.cpp:712 msgid "Command: /help " msgstr "" -#: src/gui/chat.cpp:531 +#: ../src/gui/chat.cpp:713 msgid "This command displays help on ." msgstr "" -#: src/gui/chat.cpp:536 +#: ../src/gui/chat.cpp:723 +msgid "Command: /present" +msgstr "" + +#: ../src/gui/chat.cpp:724 +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:734 +msgid "Command: /toggle " +msgstr "" + +#: ../src/gui/chat.cpp:735 +msgid "" +"This command sets whether the return key should toggle the chat log, or " +"whether the chat log turns off automatically." +msgstr "" + +#: ../src/gui/chat.cpp:737 +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:738 +msgid "Command: /toggle" +msgstr "" + +#: ../src/gui/chat.cpp:739 +msgid "This command displays the return toggle status." +msgstr "" + +#: ../src/gui/chat.cpp:744 msgid "Command: /where" msgstr "" -#: src/gui/chat.cpp:537 +#: ../src/gui/chat.cpp:745 msgid "This command displays the name of the current map." msgstr "" -#: src/gui/chat.cpp:543 +#: ../src/gui/chat.cpp:751 +msgid "Command: /msg " +msgstr "" + +#: ../src/gui/chat.cpp:752 msgid "Command: /whisper " msgstr "" -#: src/gui/chat.cpp:544 +#: ../src/gui/chat.cpp:753 msgid "Command: /w " msgstr "" -#: src/gui/chat.cpp:545 +#: ../src/gui/chat.cpp:754 msgid "This command sends the message to ." msgstr "" -#: src/gui/chat.cpp:547 +#: ../src/gui/chat.cpp:756 msgid "If the has spaces in it, enclose it in double quotes (\")." msgstr "" -#: src/gui/chat.cpp:553 +#: ../src/gui/chat.cpp:762 msgid "Command: /who" msgstr "" -#: src/gui/chat.cpp:554 +#: ../src/gui/chat.cpp:763 msgid "This command displays the number of players currently online." msgstr "" -#: src/gui/chat.cpp:558 +#: ../src/gui/chat.cpp:767 msgid "Unknown command." msgstr "" -#: src/gui/chat.cpp:559 +#: ../src/gui/chat.cpp:768 msgid "Type /help for a list of commands." msgstr "" -#: src/gui/confirm_dialog.cpp:35 +#: ../src/gui/colour.cpp:33 +msgid "GM" +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 +#, fuzzy +msgid "Party" +msgstr "端å£ï¼š" + +#: ../src/gui/colour.cpp:38 +#, fuzzy +msgid "Server" +msgstr "æœåŠ¡å™¨ï¼š" + +#: ../src/gui/colour.cpp:39 +msgid "Logger" +msgstr "" + +#: ../src/gui/colour.cpp:40 +msgid "Hyperlink" +msgstr "" + +#: ../src/gui/confirm_dialog.cpp:37 msgid "Yes" msgstr "是" -#: src/gui/confirm_dialog.cpp:36 +#: ../src/gui/confirm_dialog.cpp:38 msgid "No" msgstr "å¦" -#: src/gui/connection.cpp:49 src/gui/updatewindow.cpp:116 +#: ../src/gui/connection.cpp:48 ../src/gui/updatewindow.cpp:113 msgid "Connecting..." msgstr "连接中..." -#: src/gui/equipmentwindow.cpp:38 src/gui/menuwindow.cpp:62 +#: ../src/gui/emotecontainer.cpp:50 ../src/gui/emoteshortcutcontainer.cpp:52 +#: ../src/being.cpp:96 +msgid "Unable to load emotions" +msgstr "" + +#: ../src/gui/emotecontainer.cpp:53 +msgid "Unable to load selection.png" +msgstr "" + +#: ../src/gui/emotewindow.cpp:38 ../src/gui/emotewindow.cpp:40 +#: ../src/gui/menuwindow.cpp:68 ../src/gui/menuwindow.cpp:121 +msgid "Emote" +msgstr "" + +#: ../src/gui/emotewindow.cpp:46 ../src/gui/inventorywindow.cpp:54 +#: ../src/gui/inventorywindow.cpp:262 ../src/gui/skill.cpp:132 +msgid "Use" +msgstr "使用" + +#: ../src/gui/equipmentwindow.cpp:40 ../src/gui/menuwindow.cpp:64 +#: ../src/gui/menuwindow.cpp:105 msgid "Equipment" msgstr "装备" -#: src/gui/help.cpp:33 +#: ../src/gui/help.cpp:32 msgid "Help" msgstr "" -#: src/gui/help.cpp:41 +#: ../src/gui/help.cpp:40 msgid "Close" msgstr "" -#: src/gui/inventorywindow.cpp:46 src/gui/menuwindow.cpp:63 +#: ../src/gui/inventorywindow.cpp:45 ../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" -msgstr "使用" - -#: src/gui/inventorywindow.cpp:57 +#: ../src/gui/inventorywindow.cpp:55 msgid "Drop" msgstr "丢弃" -#: src/gui/inventorywindow.cpp:99 -#, c-format -msgid "Weight: %d / %d" +#: ../src/gui/inventorywindow.cpp:68 ../src/gui/inventorywindow.cpp:162 +#, fuzzy +msgid "Description:" +msgstr "æ述:%s" + +#: ../src/gui/inventorywindow.cpp:70 ../src/gui/inventorywindow.cpp:160 +#, fuzzy +msgid "Effect:" +msgstr "å½±å“: %s" + +#. Adjust widgets +#: ../src/gui/inventorywindow.cpp:72 ../src/gui/inventorywindow.cpp:110 +msgid "Weight: " msgstr "" -#: src/gui/inventorywindow.cpp:104 -#, c-format -msgid "Slots used: %d / %d" +#: ../src/gui/inventorywindow.cpp:73 +msgid " g Slots: " +msgstr "" + +#: ../src/gui/inventorywindow.cpp:111 +msgid " g Slots: " msgstr "" -#: src/gui/inventorywindow.cpp:225 +#: ../src/gui/inventorywindow.cpp:168 +#, fuzzy +msgid "Name: " +msgstr "å称" + +#: ../src/gui/inventorywindow.cpp:170 +#, fuzzy +msgid "Effect: " +msgstr "å½±å“: %s" + +#: ../src/gui/inventorywindow.cpp:172 +#, fuzzy +msgid "Description: " +msgstr "æ述:%s" + +#: ../src/gui/inventorywindow.cpp:255 msgid "Unequip" msgstr "å¸ä¸‹è£…备" -#: src/gui/inventorywindow.cpp:228 +#: ../src/gui/inventorywindow.cpp:258 msgid "Equip" msgstr "装备" -#: src/gui/item_amount.cpp:76 +#: ../src/gui/item_amount.cpp:75 msgid "Select amount of items to trade." msgstr "请选择交易的物å“æ•°é‡" -#: src/gui/item_amount.cpp:80 +#: ../src/gui/item_amount.cpp:79 msgid "Select amount of items to drop." msgstr "请选择丢弃的物å“æ•°é‡" -#: src/gui/login.cpp:42 +#: ../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:67 msgid "Password:" msgstr "密ç ï¼š" -#: src/gui/login.cpp:50 -msgid "Remember Username" +#: ../src/gui/login.cpp:54 ../src/gui/register.cpp:70 +msgid "Port:" +msgstr "端å£ï¼š" + +#: ../src/gui/login.cpp:55 +msgid "Recent:" msgstr "" -#: src/gui/login.cpp:53 src/gui/register.cpp:75 +#: ../src/gui/login.cpp:75 +msgid "Keep" +msgstr "ä¿æŒ" + +#: ../src/gui/login.cpp:78 ../src/gui/register.cpp:62 +#: ../src/gui/register.cpp:78 msgid "Register" msgstr "注册" -#: src/gui/menuwindow.cpp:61 +#: ../src/gui/menuwindow.cpp:63 ../src/gui/menuwindow.cpp:101 +#: ../src/gui/status.cpp:39 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:117 ../src/gui/skill.cpp:124 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/main.cpp:756 msgid "Setup" msgstr "安装" -#: src/gui/minimap.cpp:34 +#: ../src/gui/minimap.cpp:39 +#, fuzzy +msgid "Map" +msgstr "å°åœ°å›¾" + +#: ../src/gui/minimap.cpp:43 msgid "MiniMap" msgstr "å°åœ°å›¾" -#: src/gui/npclistdialog.cpp:35 src/gui/npc_text.cpp:35 +#: ../src/gui/npclistdialog.cpp:32 ../src/gui/npc_text.cpp:32 msgid "NPC" msgstr "NPC" -#: src/gui/popupmenu.cpp:81 -#, c-format -msgid "@@trade|Trade With %s@@" +#: ../src/gui/popupmenu.cpp:81 +#, fuzzy +msgid "@@trade|Trade With " msgstr "@@交易|与%s交易@@" -#: src/gui/popupmenu.cpp:83 -#, c-format -msgid "@@attack|Attack %s@@" +#: ../src/gui/popupmenu.cpp:82 +#, fuzzy +msgid "@@attack|Attack " msgstr "@@攻击|攻击%s@@" -#: src/gui/popupmenu.cpp:114 +#: ../src/gui/popupmenu.cpp:88 +msgid "@@friend|Befriend " +msgstr "" + +#: ../src/gui/popupmenu.cpp:91 +msgid "@@disregard|Disregard " +msgstr "" + +#: ../src/gui/popupmenu.cpp:92 +msgid "@@ignore|Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:96 ../src/gui/popupmenu.cpp:101 +msgid "@@unignore|Un-Ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:97 +msgid "@@ignore|Completely ignore " +msgstr "" + +#: ../src/gui/popupmenu.cpp:109 +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:117 msgid "@@talk|Talk To NPC@@" msgstr "@@è°ˆè¯|å’ŒNPCè°ˆè¯@@" -#: src/gui/popupmenu.cpp:124 src/gui/popupmenu.cpp:140 -#: src/gui/popupmenu.cpp:293 +#: ../src/gui/popupmenu.cpp:127 ../src/gui/popupmenu.cpp:143 +#: ../src/gui/popupmenu.cpp:302 msgid "@@cancel|Cancel@@" msgstr "@@å–消|å–消@@" -#: src/gui/popupmenu.cpp:136 +#: ../src/gui/popupmenu.cpp:139 #, c-format msgid "@@pickup|Pick Up %s@@" msgstr "@@æ¡èµ·|æ¡èµ·%s@@" -#: src/gui/popupmenu.cpp:283 +#: ../src/gui/popupmenu.cpp:292 #, fuzzy msgid "@@use|Unequip@@" msgstr "@@使用|装备@@" -#: src/gui/popupmenu.cpp:285 +#: ../src/gui/popupmenu.cpp:294 msgid "@@use|Equip@@" msgstr "@@使用|装备@@" -#: src/gui/popupmenu.cpp:288 +#: ../src/gui/popupmenu.cpp:297 msgid "@@use|Use@@" msgstr "@@使用|使用@@" -#: src/gui/popupmenu.cpp:290 +#: ../src/gui/popupmenu.cpp:299 msgid "@@drop|Drop@@" msgstr "@@丢弃|丢弃@@" -#: src/gui/popupmenu.cpp:291 +#: ../src/gui/popupmenu.cpp:300 msgid "@@description|Description@@" msgstr "@@æè¿°|æè¿°@@" -#: src/gui/register.cpp:67 +#: ../src/gui/register.cpp:68 msgid "Confirm:" msgstr "确定" -#: src/gui/register.cpp:73 +#: ../src/gui/register.cpp:76 msgid "Male" msgstr "" -#: src/gui/register.cpp:74 +#: ../src/gui/register.cpp:77 msgid "Female" msgstr "" -#: src/gui/register.cpp:176 +#: ../src/gui/register.cpp:186 +#, c-format +msgid "RegisterDialog::register Username is %s" +msgstr "" + +#: ../src/gui/register.cpp:195 #, c-format msgid "The username needs to be at least %d characters long." msgstr "用户å至少需è¦%d个字符" -#: src/gui/register.cpp:184 +#: ../src/gui/register.cpp:203 #, c-format msgid "The username needs to be less than %d characters long." msgstr "用户åä¸èƒ½å°‘于%d个字符" -#: src/gui/register.cpp:192 +#: ../src/gui/register.cpp:211 #, c-format msgid "The password needs to be at least %d characters long." msgstr "密ç éœ€è¦è‡³å°‘%d个字符" -#: src/gui/register.cpp:200 +#: ../src/gui/register.cpp:219 #, c-format msgid "The password needs to be less than %d characters long." msgstr "密ç ä¸èƒ½å°‘于%d个字符" -#: src/gui/register.cpp:207 +#. Password does not match with the confirmation one +#: ../src/gui/register.cpp:226 msgid "Passwords do not match." msgstr "密ç ä¸ä¸€è‡´." -#: src/gui/register.cpp:227 src/main.cpp:945 +#: ../src/gui/register.cpp:246 ../src/main.cpp:1022 msgid "Error" msgstr "错误" -#: src/gui/setup_audio.cpp:40 +#: ../src/gui/setup_audio.cpp:39 msgid "Sound" msgstr "声音" -#: src/gui/setup_audio.cpp:46 +#: ../src/gui/setup_audio.cpp:45 msgid "Sfx volume" msgstr "音效声é‡" -#: src/gui/setup_audio.cpp:47 +#: ../src/gui/setup_audio.cpp:46 msgid "Music volume" msgstr "音ä¹å£°é‡" -#: src/gui/setup.cpp:58 +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:116 msgid "Apply" msgstr "应用" -#: src/gui/setup.cpp:58 +#. Disable this button when the windows aren't created yet +#: ../src/gui/setup.cpp:59 ../src/gui/setup.cpp:70 ../src/gui/setup.cpp:126 msgid "Reset Windows" msgstr "é‡ç½®çª—å£" -#: src/gui/setup.cpp:79 +#: ../src/gui/setup.cpp:81 msgid "Video" msgstr "视频" -#: src/gui/setup.cpp:83 +#: ../src/gui/setup.cpp:85 msgid "Audio" msgstr "音频" -#: src/gui/setup.cpp:87 +#: ../src/gui/setup.cpp:89 msgid "Joystick" msgstr "游æˆæ†" -#: src/gui/setup.cpp:91 +#: ../src/gui/setup.cpp:93 msgid "Keyboard" msgstr "" -#: src/gui/setup.cpp:95 +#: ../src/gui/setup.cpp:97 +msgid "Colours" +msgstr "" + +#: ../src/gui/setup.cpp:101 msgid "Players" msgstr "" -#: src/gui/setup_joystick.cpp:36 src/gui/setup_joystick.cpp:70 +#: ../src/gui/setup_colours.cpp:38 +#, fuzzy +msgid "Color:" +msgstr "头å‘颜色" + +#: ../src/gui/setup_joystick.cpp:36 ../src/gui/setup_joystick.cpp:70 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:37 ../src/gui/setup_joystick.cpp:68 msgid "Calibrate" msgstr "校准" -#: src/gui/setup_joystick.cpp:38 +#: ../src/gui/setup_joystick.cpp:38 msgid "Enable joystick" msgstr "å¯ç”¨æ¸¸æˆæ†" -#: src/gui/setup_joystick.cpp:73 +#: ../src/gui/setup_joystick.cpp:73 msgid "Stop" msgstr "åœæ­¢" -#: src/gui/setup_joystick.cpp:74 +#: ../src/gui/setup_joystick.cpp:74 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:93 #, fuzzy msgid "Default" msgstr "删除" -#: src/gui/setup_keyboard.cpp:115 +#: ../src/gui/setup_keyboard.cpp:114 msgid "Key Conflict(s) Detected." msgstr "" -#: src/gui/setup_keyboard.cpp:116 +#: ../src/gui/setup_keyboard.cpp:115 msgid "Resolve them, or gameplay may result in strange behaviour." msgstr "" -#: src/gui/setup_players.cpp:53 +#: ../src/gui/setup_players.cpp:52 #, fuzzy msgid "Name" msgstr "å称" -#: src/gui/setup_players.cpp:54 +#: ../src/gui/setup_players.cpp:53 msgid "Relation" msgstr "" -#: src/gui/setup_players.cpp:58 +#: ../src/gui/setup_players.cpp:57 msgid "Neutral" msgstr "" -#: src/gui/setup_players.cpp:59 +#: ../src/gui/setup_players.cpp:58 msgid "Friend" msgstr "" -#: src/gui/setup_players.cpp:60 +#: ../src/gui/setup_players.cpp:59 msgid "Disregarded" msgstr "" -#: src/gui/setup_players.cpp:61 +#: ../src/gui/setup_players.cpp:60 msgid "Ignored" msgstr "" -#: src/gui/setup_players.cpp:214 +#: ../src/gui/setup_players.cpp:197 ../src/gui/skill.cpp:78 +msgid "???" +msgstr "" + +#: ../src/gui/setup_players.cpp:213 msgid "Save player list" msgstr "" -#: src/gui/setup_players.cpp:216 +#: ../src/gui/setup_players.cpp:215 msgid "Allow trading" msgstr "" -#: src/gui/setup_players.cpp:218 +#: ../src/gui/setup_players.cpp:217 msgid "Allow whispers" msgstr "" -#: src/gui/setup_players.cpp:245 +#: ../src/gui/setup_players.cpp:244 msgid "When ignoring:" msgstr "" -#: src/gui/setup_video.cpp:112 +#: ../src/gui/setup_video.cpp:90 +msgid "No modes available" +msgstr "" + +#: ../src/gui/setup_video.cpp:92 +msgid "All resolutions available" +msgstr "" + +#: ../src/gui/setup_video.cpp:115 msgid "Full screen" msgstr "å…¨å±" -#: src/gui/setup_video.cpp:113 +#: ../src/gui/setup_video.cpp:116 msgid "OpenGL" msgstr "OpenGL" -#: src/gui/setup_video.cpp:114 +#: ../src/gui/setup_video.cpp:117 msgid "Custom cursor" msgstr "通常的光标" -#: src/gui/setup_video.cpp:116 +#: ../src/gui/setup_video.cpp:118 +msgid "Particle effects" +msgstr "" + +#: ../src/gui/setup_video.cpp:119 +msgid "Speech bubbles" +msgstr "" + +#: ../src/gui/setup_video.cpp:120 +msgid "Show name" +msgstr "" + +#: ../src/gui/setup_video.cpp:122 msgid "FPS Limit:" msgstr "FPSé™åˆ¶" -#: src/gui/setup_video.cpp:135 +#: ../src/gui/setup_video.cpp:141 msgid "Gui opacity" msgstr "Gui é€æ˜Žåº¦" -#: src/gui/setup_video.cpp:192 +#: ../src/gui/setup_video.cpp:209 msgid "Scroll radius" msgstr "滚动åŠå¾„" -#: src/gui/setup_video.cpp:200 +#: ../src/gui/setup_video.cpp:217 msgid "Scroll laziness" msgstr "拉动æžé™" -#: src/gui/setup_video.cpp:208 +#: ../src/gui/setup_video.cpp:225 msgid "Ambient FX" msgstr "环境音效" -#: src/gui/setup_video.cpp:215 src/gui/setup_video.cpp:412 +#: ../src/gui/setup_video.cpp:232 ../src/gui/setup_video.cpp:491 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:235 ../src/gui/setup_video.cpp:251 +#: ../src/gui/setup_video.cpp:494 ../src/gui/setup_video.cpp:508 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:238 ../src/gui/setup_video.cpp:257 +#: ../src/gui/setup_video.cpp:497 ../src/gui/setup_video.cpp:514 msgid "high" msgstr "高" -#: src/gui/setup_video.cpp:227 +#: ../src/gui/setup_video.cpp:244 msgid "Particle Detail" msgstr "" -#: src/gui/setup_video.cpp:237 src/gui/setup_video.cpp:432 +#: ../src/gui/setup_video.cpp:254 ../src/gui/setup_video.cpp:511 msgid "medium" msgstr "" -#: src/gui/setup_video.cpp:243 src/gui/setup_video.cpp:438 +#: ../src/gui/setup_video.cpp:260 ../src/gui/setup_video.cpp:517 msgid "max" msgstr "" -#: src/gui/setup_video.cpp:309 +#: ../src/gui/setup_video.cpp:320 +msgid "Failed to switch to " +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +msgid "windowed" +msgstr "" + +#: ../src/gui/setup_video.cpp:321 +#, fuzzy +msgid "fullscreen" +msgstr "å…¨å±" + +#: ../src/gui/setup_video.cpp:322 +msgid "mode and restoration of old mode also failed!" +msgstr "" + +#: ../src/gui/setup_video.cpp:329 msgid "Switching to full screen" msgstr "切æ¢åˆ°å…¨å±" -#: src/gui/setup_video.cpp:310 +#: ../src/gui/setup_video.cpp:330 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:342 msgid "Changing OpenGL" msgstr "改å˜æˆOpenGL" -#: src/gui/setup_video.cpp:323 +#: ../src/gui/setup_video.cpp:343 msgid "Applying change to OpenGL requires restart." msgstr "è¿ç”¨æ”¹å˜ä¸ºOpenGL需è¦é‡æ–°å¼€å§‹" -#: src/gui/skill.cpp:79 -msgid "Mystery Skill" +#: ../src/gui/setup_video.cpp:420 ../src/main.cpp:394 +msgid "Couldn't set " +msgstr "" + +#: ../src/gui/setup_video.cpp:421 ../src/main.cpp:395 +msgid " video mode: " +msgstr "" + +#. TODO: Find out why the drawing area doesn't resize without a restart. +#: ../src/gui/setup_video.cpp:432 +msgid "Screen resolution changed" +msgstr "" + +#: ../src/gui/setup_video.cpp:433 +#, fuzzy +msgid "Restart your client for the change to take effect." +msgstr "åªæœ‰æ”¹å˜ç”Ÿæ•ˆåŽæ‰èƒ½é‡å¯" + +#: ../src/gui/setup_video.cpp:451 +msgid "Particle effect settings changed" msgstr "" -#: src/gui/skill.cpp:132 src/gui/skill.cpp:188 +#: ../src/gui/setup_video.cpp:452 +#, fuzzy +msgid "Restart your client or change maps for the change to take effect." +msgstr "åªæœ‰æ”¹å˜ç”Ÿæ•ˆåŽæ‰èƒ½é‡å¯" + +#: ../src/gui/skill.cpp:130 ../src/gui/skill.cpp:186 #, c-format msgid "Skill points: %d" msgstr "" -#: src/gui/skill.cpp:133 +#: ../src/gui/skill.cpp:131 msgid "Up" msgstr "" -#: src/gui/status.cpp:52 src/gui/status.cpp:235 +#: ../src/gui/skill.cpp:131 +msgid "inc" +msgstr "" + +#: ../src/gui/skill.cpp:132 +#, fuzzy +msgid "use" +msgstr "使用" + +#: ../src/gui/skill.cpp:257 +#, c-format +msgid "Error loading skills file: %s" +msgstr "" + +#: ../src/gui/speechbubble.cpp:35 ../src/net/playerhandler.cpp:193 +#: ../src/net/playerhandler.cpp:248 +msgid "Message" +msgstr "" + +#: ../src/gui/status.cpp:50 ../src/gui/status.cpp:233 #, fuzzy, c-format msgid "Job: %d" msgstr "等级:%d" -#: src/gui/status.cpp:53 src/gui/status.cpp:238 +#: ../src/gui/status.cpp:51 ../src/gui/status.cpp:236 #, fuzzy, c-format msgid "Money: %d GP" msgstr "金钱:%d" -#: src/gui/status.cpp:127 +#. ---------------------- +#. Stats Part +#. ---------------------- +#. Static Labels +#: ../src/gui/status.cpp:125 #, fuzzy msgid "Stats" msgstr "状æ€" -#: src/gui/status.cpp:128 +#: ../src/gui/status.cpp:126 msgid "Total" msgstr "" -#: src/gui/status.cpp:129 +#: ../src/gui/status.cpp:127 msgid "Cost" msgstr "" -#: src/gui/status.cpp:132 +#. Derived Stats +#: ../src/gui/status.cpp:130 #, fuzzy msgid "Attack:" msgstr "攻击 %+d" -#: src/gui/status.cpp:133 +#: ../src/gui/status.cpp:131 #, fuzzy msgid "Defense:" msgstr "防护 %+d" -#: src/gui/status.cpp:134 +#: ../src/gui/status.cpp:132 #, fuzzy msgid "M.Attack:" msgstr "攻击 %+d" -#: src/gui/status.cpp:135 +#: ../src/gui/status.cpp:133 #, fuzzy msgid "M.Defense:" msgstr "防护 %+d" -#: src/gui/status.cpp:136 +#: ../src/gui/status.cpp:134 #, c-format msgid "% Accuracy:" msgstr "" -#: src/gui/status.cpp:137 +#: ../src/gui/status.cpp:135 #, c-format msgid "% Evade:" msgstr "" -#: src/gui/status.cpp:138 +#: ../src/gui/status.cpp:136 msgid "% Reflex:" msgstr "" -#: src/gui/status.cpp:282 +#: ../src/gui/status.cpp:280 #, fuzzy msgid "Strength" msgstr "力é‡" -#: src/gui/status.cpp:283 +#: ../src/gui/status.cpp:281 #, fuzzy msgid "Agility" msgstr "æ•æ·:" -#: src/gui/status.cpp:284 +#: ../src/gui/status.cpp:282 #, fuzzy msgid "Vitality" msgstr "体力:" -#: src/gui/status.cpp:285 +#: ../src/gui/status.cpp:283 #, fuzzy msgid "Intelligence" msgstr "智力:" -#: src/gui/status.cpp:286 +#: ../src/gui/status.cpp:284 #, fuzzy msgid "Dexterity" msgstr "智慧:" -#: src/gui/status.cpp:287 +#: ../src/gui/status.cpp:285 msgid "Luck" msgstr "" -#: src/gui/status.cpp:305 +#: ../src/gui/status.cpp:303 #, c-format msgid "Remaining Status Points: %d" msgstr "" -#: src/gui/trade.cpp:61 +#: ../src/gui/trade.cpp:61 msgid "Add" msgstr "添加" -#: src/gui/trade.cpp:64 +#: ../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:80 ../src/gui/trade.cpp:156 ../src/gui/trade.cpp:204 #, 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:283 +#: ../src/gui/trade.cpp:283 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:79 +#, c-format +msgid "Couldn't load text file: %s" +msgstr "" + +#: ../src/gui/updatewindow.cpp:94 msgid "Updating..." msgstr "" -#: src/gui/updatewindow.cpp:119 +#: ../src/gui/updatewindow.cpp:116 msgid "Play" msgstr "" -#: src/gui/updatewindow.cpp:525 +#: ../src/gui/updatewindow.cpp:197 +msgid "Couldn't load news" +msgstr "" + +#: ../src/gui/updatewindow.cpp:329 +msgid "curl error " +msgstr "" + +#: ../src/gui/updatewindow.cpp:330 +msgid " host: " +msgstr "" + +#: ../src/gui/updatewindow.cpp:365 +#, c-format +msgid "Checksum for file %s failed: (%lx/%lx)" +msgstr "" + +#: ../src/gui/updatewindow.cpp:415 +msgid "Unable to create mThread" +msgstr "" + +#: ../src/gui/updatewindow.cpp:453 +msgid "##1 The update process is incomplete." +msgstr "" + +#: ../src/gui/updatewindow.cpp:454 +msgid "##1 It is strongly recommended that" +msgstr "" + +#: ../src/gui/updatewindow.cpp:455 +msgid "##1 you try again later" +msgstr "" + +#: ../src/gui/updatewindow.cpp:509 +#, c-format +msgid "%s already here" +msgstr "" + +#: ../src/gui/updatewindow.cpp:522 msgid "Completed" msgstr "" -#: src/resources/itemdb.cpp:99 +#: ../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:390 +msgid "Equip arrows first" +msgstr "" + +#: ../src/net/playerhandler.cpp:394 +#, c-format +msgid "0x013b: Unhandled message %i" +msgstr "" + +#: ../src/resources/itemdb.cpp:99 msgid "Unnamed" msgstr "" -#: src/main.cpp:769 +#: ../src/game.cpp:386 +msgid "Screenshot saved to ~/" +msgstr "" + +#: ../src/game.cpp:391 +msgid "Saving screenshot failed!" +msgstr "" + +#: ../src/game.cpp:392 +msgid "Error: could not save screenshot." +msgstr "" + +#: ../src/game.cpp:467 +msgid "Network Error" +msgstr "" + +#: ../src/game.cpp:468 +msgid "The connection to the server was lost, the program will now quit" +msgstr "" + +#: ../src/game.cpp:531 +msgid "Ignoring incoming trade requests" +msgstr "" + +#: ../src/game.cpp:536 +msgid "Accepting incoming trade requests" +msgstr "" + +#: ../src/game.cpp:638 +#, fuzzy +msgid "Are you sure you want to quit?" +msgstr "你确定想删除这个较色" + +#: ../src/game.cpp:644 +msgid "no" +msgstr "" + +#: ../src/game.cpp:785 +#, c-format +msgid "Warning: guichan input exception: %s" +msgstr "" + +#: ../src/main.cpp:206 +#, c-format +msgid "Error: Invalid update host: %s" +msgstr "" + +#: ../src/main.cpp:207 +msgid "Invalid update host: " +msgstr "" + +#: ../src/main.cpp:211 +msgid "Warning: no protocol was specified for the update host" +msgstr "" + +#: ../src/main.cpp:221 +#, c-format +msgid "Error: %s/%s can't be made, but doesn't exist!" +msgstr "" + +#: ../src/main.cpp:223 +msgid "Error creating updates directory!" +msgstr "" + +#: ../src/main.cpp:251 +msgid " can't be created, but it doesn't exist! Exiting." +msgstr "" + +#: ../src/main.cpp:260 +#, c-format +msgid "Starting Aethyra Version %s" +msgstr "" + +#: ../src/main.cpp:262 +msgid "Starting Aethyra - Version not defined" +msgstr "" + +#. Initialize SDL +#: ../src/main.cpp:266 +msgid "Initializing SDL..." +msgstr "" + +#: ../src/main.cpp:268 +msgid "Could not initialize SDL: " +msgstr "" + +#: ../src/main.cpp:281 +msgid " couldn't be set as home directory! Exiting." +msgstr "" + +#: ../src/main.cpp:301 +#, c-format +msgid "Can't find Resources directory\n" +msgstr "" + +#. Fill configuration with defaults +#: ../src/main.cpp:311 +msgid "Initializing configuration..." +msgstr "" + +#: ../src/main.cpp:425 +#, c-format +msgid "Warning: %s" +msgstr "" + +#: ../src/main.cpp:467 +msgid "aethyra" +msgstr "" + +#: ../src/main.cpp:468 +msgid "Options: " +msgstr "" + +#: ../src/main.cpp:469 +msgid " -C --configfile : Configuration file to use" +msgstr "" + +#: ../src/main.cpp:470 +msgid " -d --data : Directory to load game data from" +msgstr "" + +#: ../src/main.cpp:471 +msgid " -D --default : Bypass the login process with default settings" +msgstr "" + +#: ../src/main.cpp:472 +msgid " -h --help : Display this help" +msgstr "" + +#: ../src/main.cpp:473 +msgid " -H --updatehost : Use this update host" +msgstr "" + +#: ../src/main.cpp:474 +msgid " -p --playername : Login with this player" +msgstr "" + +#: ../src/main.cpp:475 +msgid " -P --password : Login with this password" +msgstr "" + +#: ../src/main.cpp:476 +msgid " -u --skipupdate : Skip the update downloads" +msgstr "" + +#: ../src/main.cpp:477 +msgid " -U --username : Login with this username" +msgstr "" + +#: ../src/main.cpp:478 +msgid " -v --version : Display the version" +msgstr "" + +#: ../src/main.cpp:484 ../src/main.cpp:487 +msgid "Aethyra version " +msgstr "" + +#: ../src/main.cpp:488 +msgid "(local build?, PACKAGE_VERSION is not defined)" +msgstr "" + +#: ../src/main.cpp:584 +#, fuzzy +msgid "Trying to connect to account server..." +msgstr "连接中..." + +#: ../src/main.cpp:585 +#, c-format +msgid "Username is %s" +msgstr "" + +#: ../src/main.cpp:639 +#, fuzzy +msgid "Trying to connect to char server..." +msgstr "连接中..." + +#: ../src/main.cpp:661 +#, c-format +msgid "Memorizing selected character %s" +msgstr "" + +#: ../src/main.cpp:667 +#, fuzzy +msgid "Trying to connect to map server..." +msgstr "连接中..." + +#: ../src/main.cpp:668 +#, fuzzy, c-format +msgid "Map: %s" +msgstr "å字:%s" + +#: ../src/main.cpp:798 +#, c-format +msgid "Couldn't load %s as wallpaper" +msgstr "" + +#: ../src/main.cpp:831 msgid "Got disconnected from server!" msgstr "" -#: src/main.cpp:956 +#: ../src/main.cpp:1034 #, fuzzy msgid "Connecting to map server..." msgstr "连接中..." -#: src/main.cpp:964 +#: ../src/main.cpp:1042 msgid "Connecting to character server..." msgstr "" -#: src/main.cpp:972 +#: ../src/main.cpp:1050 msgid "Connecting to account server..." msgstr "" @@ -951,9 +1675,6 @@ msgstr "" #~ msgid "Choose your Mana World Server" #~ msgstr "请选择你的魔法世界æœåŠ¡å™¨" -#~ msgid "Port:" -#~ msgstr "端å£ï¼š" - #~ msgid "Please type both the address and the port of a server." #~ msgstr "请输入æœåŠ¡å™¨çš„IP地å€å’Œç«¯å£" @@ -980,6 +1701,3 @@ msgstr "" #~ msgid "Total Weight: %d - Maximum Weight: %d" #~ msgstr "总的力é‡ï¼š%d - 最大力é‡ï¼š%d" - -#~ msgid "Keep" -#~ msgstr "ä¿æŒ" diff --git a/src/gui/setup_colours.cpp b/src/gui/setup_colours.cpp index dca47630..b542839a 100644 --- a/src/gui/setup_colours.cpp +++ b/src/gui/setup_colours.cpp @@ -35,7 +35,7 @@ #include "../utils/gettext.h" Setup_Colours::Setup_Colours() : - mColourLabel(_("Colour:")), + mColourLabel(_("Color:")), mSelected(-1) { mColourBox = new gcn::ListBox(textColour); diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index 0f52be41..0e960b84 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -281,8 +281,7 @@ Setup_Players::~Setup_Players(void) } -void -Setup_Players::reset() +void Setup_Players::reset() { // We now have to search through the list of ignore choices to find the // current selection. We could use an index into the table of config @@ -299,8 +298,7 @@ Setup_Players::reset() mIgnoreActionChoicesBox->setSelected(selection); } -void -Setup_Players::apply() +void Setup_Players::apply() { player_relations.setPersistIgnores(mPersistIgnores->isSelected()); player_relations.store(); @@ -312,13 +310,11 @@ Setup_Players::apply() | (mDefaultWhisper->isSelected()? PlayerRelation::WHISPER : 0)); } -void -Setup_Players::cancel() +void Setup_Players::cancel() { } -void -Setup_Players::action(const gcn::ActionEvent &event) +void Setup_Players::action(const gcn::ActionEvent &event) { if (event.getId() == ACTION_TABLE) { // temporarily eliminate ourselves: we are fully aware of this change, @@ -352,8 +348,7 @@ Setup_Players::action(const gcn::ActionEvent &event) } } -void -Setup_Players::updatedPlayer(const std::string &name) +void Setup_Players::updatedPlayer(const std::string &name) { mPlayerTableModel->playerRelationsUpdated(); mDefaultTrading->setSelected( diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index afc7b1b5..e424c43f 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -353,13 +353,12 @@ void Setup_Video::apply() mSpeechBubbleEnabled = config.getValue("speechbubble", 1); mNameEnabled = config.getValue("showownname", 0); mOpacity = config.getValue("guialpha", 0.8); - mOverlayDetail = (int)config.getValue("OverlayDetail", 2); + mOverlayDetail = (int) config.getValue("OverlayDetail", 2); mOpenGLEnabled = config.getValue("opengl", 0); } -int -Setup_Video::updateSlider(gcn::Slider *slider, gcn::TextField *field, - const std::string &configName) +int Setup_Video::updateSlider(gcn::Slider *slider, gcn::TextField *field, + const std::string &configName) { int value; std::stringstream temp(field->getText()); @@ -538,8 +537,7 @@ void Setup_Video::action(const gcn::ActionEvent &event) } } -void -Setup_Video::keyPressed(gcn::KeyEvent &event) +void Setup_Video::keyPressed(gcn::KeyEvent &event) { std::stringstream tempFps(mFpsField->getText()); diff --git a/src/gui/shortcutcontainer.cpp b/src/gui/shortcutcontainer.cpp index 88d9bb22..d03bc809 100644 --- a/src/gui/shortcutcontainer.cpp +++ b/src/gui/shortcutcontainer.cpp @@ -58,8 +58,7 @@ void ShortcutContainer::widgetResized(const gcn::Event &event) } } -int -ShortcutContainer::getIndexFromGrid(int pointX, int pointY) const +int ShortcutContainer::getIndexFromGrid(int pointX, int pointY) const { const gcn::Rectangle tRect = gcn::Rectangle( 0, 0, mGridWidth * mBoxWidth, mGridHeight * mBoxHeight); -- cgit v1.2.3-70-g09d2 From 731dcee8bec7e32d576b0e6a9d98b9a21050362e Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Tue, 13 Jan 2009 22:07:29 +0100 Subject: Merged Tab and TabbedArea from mainline Changes mostly done by David Athay. Currently these widgets are only used in the setup window, where they replace the previously used TabbedContainer. --- data/graphics/gui/CMakeLists.txt | 2 + data/graphics/gui/Makefile.am | 2 + data/graphics/gui/tab.png | Bin 0 -> 427 bytes data/graphics/gui/tabselected.png | Bin 0 -> 407 bytes src/CMakeLists.txt | 6 +- src/Makefile.am | 7 +- src/gui/setup.cpp | 22 +++--- src/gui/setup.h | 2 +- src/gui/setup_audio.cpp | 1 + src/gui/setup_colours.cpp | 3 + src/gui/setup_joystick.cpp | 2 + src/gui/setup_keyboard.cpp | 1 + src/gui/setup_players.cpp | 1 + src/gui/setup_video.cpp | 1 + src/gui/tabbedcontainer.cpp | 127 ------------------------------ src/gui/tabbedcontainer.h | 74 ------------------ src/gui/widgets/tab.cpp | 130 +++++++++++++++++++++++++++++++ src/gui/widgets/tab.h | 60 ++++++++++++++ src/gui/widgets/tabbedarea.cpp | 160 ++++++++++++++++++++++++++++++++++++++ src/gui/widgets/tabbedarea.h | 92 ++++++++++++++++++++++ 20 files changed, 476 insertions(+), 217 deletions(-) create mode 100644 data/graphics/gui/tab.png create mode 100644 data/graphics/gui/tabselected.png delete mode 100644 src/gui/tabbedcontainer.cpp delete mode 100644 src/gui/tabbedcontainer.h create mode 100644 src/gui/widgets/tab.cpp create mode 100644 src/gui/widgets/tab.h create mode 100644 src/gui/widgets/tabbedarea.cpp create mode 100644 src/gui/widgets/tabbedarea.h (limited to 'src/gui/setup_players.cpp') diff --git a/data/graphics/gui/CMakeLists.txt b/data/graphics/gui/CMakeLists.txt index 71031113..e5ecaa12 100644 --- a/data/graphics/gui/CMakeLists.txt +++ b/data/graphics/gui/CMakeLists.txt @@ -32,6 +32,8 @@ SET (FILES slider.png speech_bubble.png speech_bubble.xml + tab.png + tabselected.png target-cursor-blue-l.png target-cursor-blue-m.png target-cursor-blue-s.png diff --git a/data/graphics/gui/Makefile.am b/data/graphics/gui/Makefile.am index b2c499f0..1878fe5a 100644 --- a/data/graphics/gui/Makefile.am +++ b/data/graphics/gui/Makefile.am @@ -38,6 +38,8 @@ gui_DATA = \ slider.png \ speech_bubble.png \ speechbubble.xml \ + tab.png \ + tabselected.png \ target-cursor-blue-l.png \ target-cursor-blue-m.png \ target-cursor-blue-s.png \ diff --git a/data/graphics/gui/tab.png b/data/graphics/gui/tab.png new file mode 100644 index 00000000..71de8c8b Binary files /dev/null and b/data/graphics/gui/tab.png differ diff --git a/data/graphics/gui/tabselected.png b/data/graphics/gui/tabselected.png new file mode 100644 index 00000000..98dd41c6 Binary files /dev/null and b/data/graphics/gui/tabselected.png differ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9875257d..657d8e6b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -55,6 +55,10 @@ SET(SRCS gui/widgets/resizegrip.h gui/widgets/layout.cpp gui/widgets/layout.h + gui/widgets/tab.cpp + gui/widgets/tab.h + gui/widgets/tabbedarea.cpp + gui/widgets/tabbedarea.h gui/browserbox.cpp gui/browserbox.h gui/buddywindow.cpp @@ -163,8 +167,6 @@ SET(SRCS gui/speechbubble.h gui/status.cpp gui/status.h - gui/tabbedcontainer.cpp - gui/tabbedcontainer.h gui/table.cpp gui/table.h gui/table_model.cpp diff --git a/src/Makefile.am b/src/Makefile.am index 96be8465..a54bb5c8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,6 +5,10 @@ aethyra_SOURCES = gui/widgets/dropdown.cpp \ gui/widgets/layout.h \ gui/widgets/resizegrip.cpp \ gui/widgets/resizegrip.h \ + gui/widgets/tab.cpp \ + gui/widgets/tab.h \ + gui/widgets/tabbedarea.cpp \ + gui/widgets/tabbedarea.h \ gui/browserbox.cpp \ gui/browserbox.h \ gui/button.cpp \ @@ -127,8 +131,7 @@ aethyra_SOURCES = gui/widgets/dropdown.cpp \ gui/speechbubble.h \ gui/status.cpp \ gui/status.h \ - gui/tabbedcontainer.cpp \ - gui/tabbedcontainer.h \ + gui/table.h \ gui/table.cpp \ gui/table.h \ gui/table_model.cpp \ diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp index 551fe5bb..bd5a25f9 100644 --- a/src/gui/setup.cpp +++ b/src/gui/setup.cpp @@ -30,7 +30,8 @@ #include "setup_keyboard.h" #include "setup_players.h" #include "setup_video.h" -#include "tabbedcontainer.h" + +#include "widgets/tabbedarea.h" #include "../utils/dtor.h" #include "../utils/gettext.h" @@ -48,7 +49,7 @@ extern Window *emoteWindow; extern Window *tradeWindow; Setup::Setup(): - Window("Setup") + Window(_("Setup")) { setCloseButton(true); int width = 310; @@ -71,34 +72,33 @@ Setup::Setup(): btn->setEnabled(statusWindow != NULL); } - TabbedContainer *panel = new TabbedContainer(width, 5, 20, 45, 5, 3); - panel->setDimension(gcn::Rectangle(5, 5, width, height - 40)); - panel->setOpaque(false); + TabbedArea *panel = new TabbedArea(); + panel->setDimension(gcn::Rectangle(5, 5, width - 10, height - 40)); SetupTab *tab; tab = new Setup_Video(); - panel->addTab(tab, _("Video")); + panel->addTab(_("Video"), tab); mTabs.push_back(tab); tab = new Setup_Audio(); - panel->addTab(tab, _("Audio")); + panel->addTab(_("Audio"), tab); mTabs.push_back(tab); tab = new Setup_Joystick(); - panel->addTab(tab, _("Joystick")); + panel->addTab(_("Joystick"), tab); mTabs.push_back(tab); tab = new Setup_Keyboard(); - panel->addTab(tab, _("Keyboard")); + panel->addTab(_("Keyboard"), tab); mTabs.push_back(tab); tab = new Setup_Colours(); - panel->addTab(tab, _("Colors")); + panel->addTab(_("Colors"), tab); mTabs.push_back(tab); tab = new Setup_Players(); - panel->addTab(tab, _("Players")); + panel->addTab(_("Players"), tab); mTabs.push_back(tab); add(panel); diff --git a/src/gui/setup.h b/src/gui/setup.h index 1ad93cac..8a775093 100644 --- a/src/gui/setup.h +++ b/src/gui/setup.h @@ -48,7 +48,7 @@ class Setup : public Window, public gcn::ActionListener /** * Destructor. */ - virtual ~Setup(); + ~Setup(); /** * Event handling method. diff --git a/src/gui/setup_audio.cpp b/src/gui/setup_audio.cpp index bb824f33..eaa3ddba 100644 --- a/src/gui/setup_audio.cpp +++ b/src/gui/setup_audio.cpp @@ -41,6 +41,7 @@ Setup_Audio::Setup_Audio(): mMusicSlider(new Slider(0, 128)) { setOpaque(false); + setDimension(gcn::Rectangle(0, 0, 290, 255)); gcn::Label *sfxLabel = new gcn::Label(_("Sfx volume")); gcn::Label *musicLabel = new gcn::Label(_("Music volume")); diff --git a/src/gui/setup_colours.cpp b/src/gui/setup_colours.cpp index b542839a..33c7d86b 100644 --- a/src/gui/setup_colours.cpp +++ b/src/gui/setup_colours.cpp @@ -38,6 +38,9 @@ Setup_Colours::Setup_Colours() : mColourLabel(_("Color:")), mSelected(-1) { + setOpaque(false); + setDimension(gcn::Rectangle(0, 0, 290, 255)); + mColourBox = new gcn::ListBox(textColour); mScroll = new ScrollArea(mColourBox); diff --git a/src/gui/setup_joystick.cpp b/src/gui/setup_joystick.cpp index b55ccb7e..1457bc2f 100644 --- a/src/gui/setup_joystick.cpp +++ b/src/gui/setup_joystick.cpp @@ -38,6 +38,8 @@ Setup_Joystick::Setup_Joystick(): mJoystickEnabled(new CheckBox(_("Enable joystick"))) { setOpaque(false); + setDimension(gcn::Rectangle(0, 0, 290, 255)); + mJoystickEnabled->setPosition(10, 10); mCalibrateLabel->setPosition(10, 25); mCalibrateButton->setPosition(10, 30 + mCalibrateLabel->getHeight()); diff --git a/src/gui/setup_keyboard.cpp b/src/gui/setup_keyboard.cpp index 75fa542f..24d12049 100644 --- a/src/gui/setup_keyboard.cpp +++ b/src/gui/setup_keyboard.cpp @@ -73,6 +73,7 @@ Setup_Keyboard::Setup_Keyboard(): { keyboard.setSetupKeyboard(this); setOpaque(false); + setDimension(gcn::Rectangle(0, 0, 290, 255)); refreshKeys(); diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index 0e960b84..e7770959 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -220,6 +220,7 @@ Setup_Players::Setup_Players(): mIgnoreActionChoicesBox(new gcn::DropDown(new IgnoreChoicesListModel())) { setOpaque(false); + setDimension(gcn::Rectangle(0, 0, 290, 255)); int table_width = NAME_COLUMN_WIDTH + RELATION_CHOICE_COLUMN_WIDTH; mPlayerTableTitleModel->fixColumnWidth(NAME_COLUMN, NAME_COLUMN_WIDTH); diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index e424c43f..78e26e5e 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -136,6 +136,7 @@ Setup_Video::Setup_Video(): mParticleDetailField(new gcn::Label("")) { setOpaque(false); + setDimension(gcn::Rectangle(0, 0, 290, 255)); ScrollArea *scrollArea = new ScrollArea(mModeList); gcn::Label *alphaLabel = new gcn::Label(_("Gui opacity")); diff --git a/src/gui/tabbedcontainer.cpp b/src/gui/tabbedcontainer.cpp deleted file mode 100644 index f8bc451d..00000000 --- a/src/gui/tabbedcontainer.cpp +++ /dev/null @@ -1,127 +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 "tabbedcontainer.h" - -#include "../utils/dtor.h" -#include "../utils/tostring.h" - -TabbedContainer::TabbedContainer(int width, int padX, int buttonHeight, - int height, int padY, int buttonsPerRow): - mActiveContent(0), - mWidth(width), - mPadX(padX), - mButtonHeight(buttonHeight), - mHeight(height), - mPadY(padY), - mButtonsPerRow(buttonsPerRow), - - mButtonWidth((width - (buttonsPerRow - 1) * padX) / buttonsPerRow - padX) -{ -} - -TabbedContainer::~TabbedContainer() -{ - delete_all(mTabs); - mTabs.clear(); - mContents.clear(); -} - -void TabbedContainer::addTab(gcn::Widget *widget, const std::string &caption) -{ - int tabNumber = mTabs.size(); - - Button *tab = new Button(caption, toString(tabNumber), this); - - tab->setSize(mButtonWidth, mButtonHeight); - add(tab, (mButtonWidth + mPadX) * (tabNumber % mButtonsPerRow), - (mButtonHeight + mPadY) * (tabNumber / mButtonsPerRow)); - - mTabs[caption] = tab; - - mContents.push_back(widget); - widget->setPosition(0, mHeight); - - // If this is the first tab in this container, make it visible - if (!mActiveContent) { - mActiveContent = widget; - add(mActiveContent); - tab->setLogged(true); - } - - mWidgets[widget] = caption; -} - -void TabbedContainer::removeTab(const std::string &caption) -{ - gcn::ActionEvent actionEvent(this, "0"); - action(actionEvent); - remove(mTabs[caption]); - mTabs.erase(caption); -} - -void TabbedContainer::logic() -{ - if (mActiveContent) { - mActiveContent->setSize( - getWidth() - 2 * mActiveContent->getFrameSize(), - getHeight() - mHeight - 2 * mActiveContent->getFrameSize()); - } - - Container::logic(); -} - -void TabbedContainer::action(const gcn::ActionEvent &event) -{ - int tabNo; - std::stringstream ss(event.getId()); - ss >> tabNo; - - gcn::Widget *newContent = mContents[tabNo]; - - if (newContent) { - if (mActiveContent) { - // Unhighlight old tab - ((Button*)mTabs[mWidgets[mActiveContent]])->setLogged(false); - remove(mActiveContent); - } - mActiveContent = newContent; - // Highlight new tab - ((Button*)mTabs[mWidgets[mActiveContent]])->setLogged(true); - add(newContent); - } -} - -void TabbedContainer::setOpaque(bool opaque) -{ - Container::setOpaque(opaque); -} - -short TabbedContainer::getNumberOfTabs() -{ - return mTabs.size(); -} - -std::string TabbedContainer::getActiveWidget() -{ - return mWidgets[mActiveContent]; -} diff --git a/src/gui/tabbedcontainer.h b/src/gui/tabbedcontainer.h deleted file mode 100644 index 2fc41247..00000000 --- a/src/gui/tabbedcontainer.h +++ /dev/null @@ -1,74 +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 _TMW_TABPANE_H -#define _TMW_TABPANE_H - -#include -#include -#include - -#include - -#include - -#include "../guichanfwd.h" - -class TabbedContainer : public gcn::Container, public gcn::ActionListener -{ - public: - TabbedContainer(int width, int padX, int buttonHeight, - int height, int padY, int buttonsPerRow); - ~TabbedContainer(); - - void addTab(gcn::Widget *widget, const std::string &caption); - - void removeTab(const std::string &caption); - - void logic(); - - void action(const gcn::ActionEvent &event); - - void setOpaque(bool opaque); - - short getNumberOfTabs(); - - std::string getActiveWidget(); - - private: - typedef std::vector Widgets; - typedef Widgets::iterator WidgetIterator; - std::map mTabs; // tabs mapped to their channel name - Widgets mContents; // The contents of the tabs - - std::map mWidgets; - gcn::Widget *mActiveContent; - - int mWidth; /**< The total width of all buttons */ - int mPadX; /**< The horizontal gap between buttons */ - int mButtonHeight; /**< The height of each button */ - int mHeight; /**< Height of the panel */ - int mPadY; /**< The vertical gap between buttons */ - int mButtonsPerRow; /**< The number of buttons on each row */ - int mButtonWidth; /**< The width of each button */ -}; - -#endif diff --git a/src/gui/widgets/tab.cpp b/src/gui/widgets/tab.cpp new file mode 100644 index 00000000..c53ac85c --- /dev/null +++ b/src/gui/widgets/tab.cpp @@ -0,0 +1,130 @@ +/* + * The Mana World + * Copyright 2008 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 "tab.h" + +#include "tabbedarea.h" + +#include "../../graphics.h" + +#include "../../resources/image.h" +#include "../../resources/resourcemanager.h" + +#include "../../utils/dtor.h" + +int Tab::mInstances = 0; + +enum{ + TAB_STANDARD, // 0 + TAB_HIGHLIGHTED, // 1 + TAB_SELECTED, // 2 + TAB_UNUSED, // 3 + TAB_COUNT // 4 - Must be last. +}; + +struct TabData +{ + char const *file; + int gridX; + int gridY; +}; + +static TabData const data[TAB_COUNT] = { + {"graphics/gui/tab.png", 0, 0}, + {"graphics/gui/tab.png", 9, 4}, + {"graphics/gui/tabselected.png", 16, 19}, + {"graphics/gui/tab.png", 25, 23} +}; + +ImageRect Tab::tabImg[TAB_COUNT]; + +Tab::Tab() : gcn::Tab() +{ + init(); +} + +Tab::~Tab() +{ + mInstances--; + + if (mInstances == 0) + { + for (int mode = 0; mode < TAB_COUNT; mode++) + { + for_each(tabImg[mode].grid, tabImg[mode].grid + 9, dtor()); + } + } +} + +void Tab::init() +{ + setFrameSize(0); + + if (mInstances == 0) + { + // Load the skin + ResourceManager *resman = ResourceManager::getInstance(); + Image *tab[TAB_COUNT]; + + int a, x, y, mode; + + for (mode = 0; mode < TAB_COUNT; mode++) + { + tab[mode] = resman->getImage(data[mode].file); + a = 0; + for (y = 0; y < 3; y++) { + for (x = 0; x < 3; x++) { + tabImg[mode].grid[a] = tab[mode]->getSubImage( + data[x].gridX, data[y].gridY, + data[x + 1].gridX - data[x].gridX + 1, + data[y + 1].gridY - data[y].gridY + 1); + a++; + } + } + tab[mode]->decRef(); + } + } + mInstances++; +} + +void Tab::draw(gcn::Graphics *graphics) +{ + int mode; + + // check which type of tab to draw + if (mTabbedArea && mTabbedArea->isTabSelected(this)) + { + mode = TAB_SELECTED; + } + else + { + mode = TAB_STANDARD; + } + + // draw tab + static_cast(graphics)-> + drawImageRect(0, 0, getWidth(), getHeight(), tabImg[mode]); + + // draw label + drawChildren(graphics); +} diff --git a/src/gui/widgets/tab.h b/src/gui/widgets/tab.h new file mode 100644 index 00000000..42964b0f --- /dev/null +++ b/src/gui/widgets/tab.h @@ -0,0 +1,60 @@ +/* + * The Mana World + * Copyright 2008 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 _TMW_TAB_H +#define _TMW_TAB_H + +#include + +class ImageRect; + +/** + * A tab, the same as the guichan tab in 0.8, but extended to allow transparancy + */ +class Tab : public gcn::Tab +{ + public: + /** + * Constructor. + */ + Tab(); + + /** + * Destructor. + */ + ~Tab(); + + /** + * Draw the tabbed area. + */ + void draw(gcn::Graphics *graphics); + + private: + /** Load images if no other instances exist yet */ + void init(); + + static ImageRect tabImg[4]; /**< Tab state graphics */ + static int mInstances; /**< Number of tab instances */ +}; + +#endif + + diff --git a/src/gui/widgets/tabbedarea.cpp b/src/gui/widgets/tabbedarea.cpp new file mode 100644 index 00000000..205fdc99 --- /dev/null +++ b/src/gui/widgets/tabbedarea.cpp @@ -0,0 +1,160 @@ +/* + * The Mana World + * Copyright 2008 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 "tabbedarea.h" +#include "tab.h" + +#include + +TabbedArea::TabbedArea() : gcn::TabbedArea() +{ + mWidgetContainer->setOpaque(false); +} + +int TabbedArea::getNumberOfTabs() +{ + return mTabs.size(); +} + +Tab* TabbedArea::getTab(const std::string &name) +{ + TabContainer::iterator itr = mTabs.begin(), itr_end = mTabs.end(); + while (itr != itr_end) + { + if ((*itr).first->getCaption() == name) + { + return static_cast((*itr).first); + } + ++itr; + } + return NULL; +} + +void TabbedArea::draw(gcn::Graphics *graphics) +{ + if (mTabs.empty()) + { + return; + } + + drawChildren(graphics); +} + +gcn::Widget* TabbedArea::getWidget(const std::string &name) +{ + TabContainer::iterator itr = mTabs.begin(), itr_end = mTabs.end(); + while (itr != itr_end) + { + if ((*itr).first->getCaption() == name) + { + return (*itr).second; + } + ++itr; + } + + return NULL; +} + +void TabbedArea::addTab(const std::string &caption, gcn::Widget *widget) +{ + Tab* tab = new Tab(); + tab->setCaption(caption); + mTabsToDelete.push_back(tab); + + addTab(tab, widget); +} + +void TabbedArea::addTab(Tab *tab, gcn::Widget *widget) +{ + tab->setTabbedArea(this); + tab->addActionListener(this); + + mTabContainer->add(tab); + mTabs.push_back(std::pair(tab, widget)); + + if (mSelectedTab == NULL) + { + setSelectedTab(tab); + } + + adjustTabPositions(); + adjustSize(); +} + +void TabbedArea::removeTab(Tab *tab) +{ + int tabIndexToBeSelected = 0; + + if (tab == mSelectedTab) + { + int index = getSelectedTabIndex(); + + if (index == (int)mTabs.size() - 1 + && mTabs.size() == 1) + { + tabIndexToBeSelected = -1; + } + else + { + tabIndexToBeSelected = index - 1; + } + } + + TabContainer::iterator iter; + for (iter = mTabs.begin(); iter != mTabs.end(); iter++) + { + if (iter->first == tab) + { + mTabContainer->remove(tab); + mTabs.erase(iter); + break; + } + } + + std::vector::iterator iter2; + for (iter2 = mTabsToDelete.begin(); iter2 != mTabsToDelete.end(); iter2++) + { + if (*iter2 == tab) + { + mTabsToDelete.erase(iter2); + delete tab; + break; + } + } + + if (tabIndexToBeSelected == -1) + { + mSelectedTab = NULL; + mWidgetContainer->clear(); + } + else + { + setSelectedTab(tabIndexToBeSelected); + } + + adjustSize(); + adjustTabPositions(); +} + +void TabbedArea::logic() +{ + logicChildren(); +} diff --git a/src/gui/widgets/tabbedarea.h b/src/gui/widgets/tabbedarea.h new file mode 100644 index 00000000..2199264b --- /dev/null +++ b/src/gui/widgets/tabbedarea.h @@ -0,0 +1,92 @@ +/* + * The Mana World + * Copyright 2008 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 _TMW_TABBEDAREA_H +#define _TMW_TABBEDAREA_H + +#include +#include + +#include + +class Tab; + +/** + * A tabbed area, the same as the guichan tabbed area in 0.8, but extended + */ +class TabbedArea : public gcn::TabbedArea +{ + public: + /** + * Constructor. + */ + TabbedArea(); + + /** + * Draw the tabbed area. + */ + void draw(gcn::Graphics *graphics); + + /** + * Return how many tabs have been created + */ + int getNumberOfTabs(); + + /** + * Return tab with specified name as caption + */ + Tab* getTab(const std::string &name); + + /** + * Returns the widget with the tab that has specified caption + */ + gcn::Widget* getWidget(const std::string &name); + + /** + * Add a tab + * @param caption The Caption to display + * @param widget The widget to show when tab is selected + */ + void addTab(const std::string &caption, gcn::Widget *widget); + + /** + * Add a tab + * @param tab The tab + * @param widget The widget to display + */ + void addTab(Tab *tab, gcn::Widget *widget); + + /** + * Overload the remove tab function as its broken in guichan 0.8 + */ + void removeTab(Tab *tab); + + /** + * Overload the logic function since it's broken in guichan 0.8 + */ + void logic(); + + private: + typedef std::vector< std::pair > TabContainer; +}; + +#endif + -- cgit v1.2.3-70-g09d2 From 18c00fedebda79d4ebfbe15401c3e5bc8869fda2 Mon Sep 17 00:00:00 2001 From: Ira Rice Date: Sun, 18 Jan 2009 23:15:08 -0700 Subject: Reflowed Player tab in setup to use layout code. TODO: Fix up table model, cause it's a mess. Signed-off-by: Ira Rice --- src/gui/setup_players.cpp | 48 ++++++++++++++++++++++++++--------------------- src/gui/table_model.cpp | 6 +++--- 2 files changed, 30 insertions(+), 24 deletions(-) (limited to 'src/gui/setup_players.cpp') diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index e7770959..4bfca983 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -29,6 +29,8 @@ #include "ok_dialog.h" #include "setup_players.h" +#include "widgets/layouthelper.h" + #include "../configuration.h" #include "../log.h" #include "../player_relations.h" @@ -43,7 +45,7 @@ #define ROW_HEIGHT 12 // The following column widths really shouldn't be hardcoded but should scale with the size of the widget... except // that, right now, the widget doesn't exactly scale either. -#define NAME_COLUMN_WIDTH 120 +#define NAME_COLUMN_WIDTH 195 #define RELATION_CHOICE_COLUMN_WIDTH 80 #define WIDGET_AT(row, column) (((row) * COLUMNS_NR) + column) @@ -128,7 +130,8 @@ public: mPlayers = player_names; // set up widgets - for (unsigned int r = 0; r < player_names->size(); ++r) { + for (unsigned int r = 0; r < player_names->size(); ++r) + { std::string name = (*player_names)[r]; gcn::Widget *widget = new gcn::Label(name); mWidgets.push_back(widget); @@ -220,7 +223,6 @@ Setup_Players::Setup_Players(): mIgnoreActionChoicesBox(new gcn::DropDown(new IgnoreChoicesListModel())) { setOpaque(false); - setDimension(gcn::Rectangle(0, 0, 290, 255)); int table_width = NAME_COLUMN_WIDTH + RELATION_CHOICE_COLUMN_WIDTH; mPlayerTableTitleModel->fixColumnWidth(NAME_COLUMN, NAME_COLUMN_WIDTH); @@ -228,28 +230,30 @@ Setup_Players::Setup_Players(): RELATION_CHOICE_COLUMN_WIDTH); mPlayerTitleTable->setDimension(gcn::Rectangle(10, 10, table_width, 10)); mPlayerTitleTable->setBackgroundColor(gcn::Color(0xbf, 0xbf, 0xbf)); - for (int i = 0; i < COLUMNS_NR; i++) { + + for (int i = 0; i < COLUMNS_NR; i++) + { mPlayerTableTitleModel->set(0, i, new gcn::Label(gettext(table_titles[i]))); } + mPlayerTitleTable->setLinewiseSelection(true); - mPlayerScrollArea->setDimension(gcn::Rectangle(10, 25, table_width + COLUMNS_NR, 90)); mPlayerScrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); mPlayerTable->setActionEventId(ACTION_TABLE); mPlayerTable->setLinewiseSelection(true); mPlayerTable->addActionListener(this); - mDeleteButton->setPosition(10, 118); - gcn::Label *ignore_action_label = new gcn::Label(_("When ignoring:")); - ignore_action_label->setPosition(80, 118); mIgnoreActionChoicesBox->setDimension(gcn::Rectangle(80, 132, 120, 12)); mIgnoreActionChoicesBox->setActionEventId(ACTION_STRATEGY); mIgnoreActionChoicesBox->addActionListener(this); + int ignore_strategy_index = 0; // safe default - if (player_relations.getPlayerIgnoreStrategy()) { + + if (player_relations.getPlayerIgnoreStrategy()) + { ignore_strategy_index = player_relations.getPlayerIgnoreStrategyIndex( player_relations.getPlayerIgnoreStrategy()->mShortName); if (ignore_strategy_index < 0) @@ -258,22 +262,24 @@ Setup_Players::Setup_Players(): mIgnoreActionChoicesBox->setSelected(ignore_strategy_index); mIgnoreActionChoicesBox->adjustHeight(); - mPersistIgnores->setPosition(80, 148); - mDefaultTrading->setPosition(80, 160); - mDefaultWhisper->setPosition(80, 172); - reset(); - add(ignore_action_label); - add(mDefaultTrading); - add(mDefaultWhisper); - add(mIgnoreActionChoicesBox); - add(mDeleteButton); - add(mPlayerScrollArea); - add(mPlayerTitleTable); - add(mPersistIgnores); + // Do the layout + LayoutHelper h(this); + ContainerPlacer place = h.getPlacer(0, 0); + + place(0, 0, mPlayerTitleTable, 4); + place(0, 1, mPlayerScrollArea, 4, 4).setPadding(2); + place(0, 5, mDeleteButton); + place(2, 5, ignore_action_label); + place(2, 6, mIgnoreActionChoicesBox, 2).setPadding(2); + place(2, 7, mPersistIgnores); + place(2, 8, mDefaultTrading); + place(2, 9, mDefaultWhisper); player_relations.addListener(this); + + setDimension(gcn::Rectangle(0, 0, 290, 250)); } Setup_Players::~Setup_Players(void) diff --git a/src/gui/table_model.cpp b/src/gui/table_model.cpp index 9911eec3..d626423a 100644 --- a/src/gui/table_model.cpp +++ b/src/gui/table_model.cpp @@ -25,6 +25,8 @@ #include "table_model.h" +#include "../utils/dtor.h" + void TableModel::installListener(TableModelListener *listener) { listeners.insert(listener); @@ -63,9 +65,7 @@ StaticTableModel::StaticTableModel(int row, int column) : StaticTableModel::~StaticTableModel(void) { - for (std::vector::const_iterator it = mTableModel.begin(); it != mTableModel.end(); it++) - if (*it) - delete *it; + delete_all(mTableModel); } void StaticTableModel::resize(void) -- cgit v1.2.3-70-g09d2 From 7b64259cbdf2987159671c3226b42d902942b275 Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Fri, 23 Jan 2009 11:19:23 +0100 Subject: Removed unnecessary references to The Mana World in code headers This dates back to the old days of TMW, but the usage instructions of GPLv2 don't mention this being necessary. Since it doesn't add anything, avoid the branding in these sections. --- src/animatedsprite.cpp | 8 ++++---- src/animatedsprite.h | 8 ++++---- src/animationparticle.cpp | 8 ++++---- src/animationparticle.h | 8 ++++---- src/being.cpp | 8 ++++---- src/being.h | 8 ++++---- src/beingmanager.cpp | 8 ++++---- src/beingmanager.h | 8 ++++---- src/configlistener.h | 8 ++++---- src/configuration.cpp | 8 ++++---- src/configuration.h | 8 ++++---- src/effectmanager.cpp | 12 ++++++------ src/effectmanager.h | 11 +++++------ src/engine.cpp | 8 ++++---- src/engine.h | 8 ++++---- src/equipment.cpp | 8 ++++---- src/equipment.h | 8 ++++---- src/floor_item.cpp | 8 ++++---- src/floor_item.h | 8 ++++---- src/flooritemmanager.cpp | 8 ++++---- src/flooritemmanager.h | 8 ++++---- src/game.cpp | 8 ++++---- src/game.h | 8 ++++---- src/graphics.cpp | 8 ++++---- src/graphics.h | 8 ++++---- src/gui/browserbox.cpp | 8 ++++---- src/gui/browserbox.h | 8 ++++---- src/gui/button.cpp | 8 ++++---- src/gui/button.h | 8 ++++---- src/gui/buy.cpp | 8 ++++---- src/gui/buy.h | 8 ++++---- src/gui/buysell.cpp | 8 ++++---- src/gui/buysell.h | 8 ++++---- src/gui/char_select.cpp | 8 ++++---- src/gui/char_select.h | 8 ++++---- src/gui/char_server.cpp | 8 ++++---- src/gui/char_server.h | 8 ++++---- src/gui/chat.cpp | 8 ++++---- src/gui/chat.h | 8 ++++---- src/gui/chatinput.cpp | 8 ++++---- src/gui/chatinput.h | 8 ++++---- src/gui/checkbox.cpp | 8 ++++---- src/gui/checkbox.h | 8 ++++---- src/gui/confirm_dialog.cpp | 8 ++++---- src/gui/confirm_dialog.h | 8 ++++---- src/gui/connection.cpp | 8 ++++---- src/gui/connection.h | 8 ++++---- src/gui/debugwindow.cpp | 8 ++++---- src/gui/debugwindow.h | 8 ++++---- src/gui/equipmentwindow.cpp | 8 ++++---- src/gui/equipmentwindow.h | 8 ++++---- src/gui/focushandler.cpp | 8 ++++---- src/gui/focushandler.h | 8 ++++---- src/gui/gccontainer.cpp | 8 ++++---- src/gui/gccontainer.h | 8 ++++---- src/gui/gui.cpp | 8 ++++---- src/gui/gui.h | 8 ++++---- src/gui/help.cpp | 8 ++++---- src/gui/help.h | 8 ++++---- src/gui/inttextfield.cpp | 8 ++++---- src/gui/inttextfield.h | 8 ++++---- src/gui/inventorywindow.cpp | 8 ++++---- src/gui/inventorywindow.h | 8 ++++---- src/gui/item_amount.cpp | 8 ++++---- src/gui/item_amount.h | 8 ++++---- src/gui/itemcontainer.cpp | 8 ++++---- src/gui/itemcontainer.h | 8 ++++---- src/gui/itemshortcutcontainer.cpp | 8 ++++---- src/gui/itemshortcutcontainer.h | 8 ++++---- src/gui/linkhandler.h | 8 ++++---- src/gui/listbox.cpp | 8 ++++---- src/gui/listbox.h | 8 ++++---- src/gui/login.cpp | 8 ++++---- src/gui/login.h | 8 ++++---- src/gui/menuwindow.cpp | 8 ++++---- src/gui/menuwindow.h | 8 ++++---- src/gui/minimap.cpp | 8 ++++---- src/gui/minimap.h | 8 ++++---- src/gui/ministatus.cpp | 8 ++++---- src/gui/ministatus.h | 8 ++++---- src/gui/npc_text.cpp | 8 ++++---- src/gui/npc_text.h | 8 ++++---- src/gui/npcintegerdialog.cpp | 8 ++++---- src/gui/npcintegerdialog.h | 8 ++++---- src/gui/npclistdialog.cpp | 8 ++++---- src/gui/npclistdialog.h | 8 ++++---- src/gui/npcstringdialog.cpp | 8 ++++---- src/gui/npcstringdialog.h | 8 ++++---- src/gui/ok_dialog.cpp | 8 ++++---- src/gui/ok_dialog.h | 8 ++++---- src/gui/passwordfield.cpp | 8 ++++---- src/gui/passwordfield.h | 8 ++++---- src/gui/playerbox.cpp | 8 ++++---- src/gui/playerbox.h | 8 ++++---- src/gui/popupmenu.cpp | 8 ++++---- src/gui/popupmenu.h | 8 ++++---- src/gui/progressbar.cpp | 8 ++++---- src/gui/progressbar.h | 8 ++++---- src/gui/radiobutton.cpp | 8 ++++---- src/gui/radiobutton.h | 8 ++++---- src/gui/register.cpp | 8 ++++---- src/gui/register.h | 8 ++++---- src/gui/scrollarea.cpp | 8 ++++---- src/gui/scrollarea.h | 8 ++++---- src/gui/sdlinput.cpp | 2 +- src/gui/sdlinput.h | 2 +- src/gui/sell.cpp | 8 ++++---- src/gui/sell.h | 8 ++++---- src/gui/setup.cpp | 8 ++++---- src/gui/setup.h | 8 ++++---- src/gui/setup_audio.cpp | 8 ++++---- src/gui/setup_audio.h | 8 ++++---- src/gui/setup_joystick.cpp | 8 ++++---- src/gui/setup_joystick.h | 8 ++++---- src/gui/setup_keyboard.cpp | 8 ++++---- src/gui/setup_keyboard.h | 8 ++++---- src/gui/setup_players.cpp | 8 ++++---- src/gui/setup_players.h | 8 ++++---- src/gui/setup_video.cpp | 8 ++++---- src/gui/setup_video.h | 8 ++++---- src/gui/setuptab.h | 8 ++++---- src/gui/shop.cpp | 8 ++++---- src/gui/shop.h | 8 ++++---- src/gui/shoplistbox.cpp | 8 ++++---- src/gui/shoplistbox.h | 8 ++++---- src/gui/shortcutwindow.cpp | 8 ++++---- src/gui/shortcutwindow.h | 8 ++++---- src/gui/skill.cpp | 8 ++++---- src/gui/skill.h | 8 ++++---- src/gui/slider.cpp | 8 ++++---- src/gui/slider.h | 8 ++++---- src/gui/status.cpp | 8 ++++---- src/gui/status.h | 8 ++++---- src/gui/table.cpp | 8 ++++---- src/gui/table.h | 8 ++++---- src/gui/table_model.cpp | 8 ++++---- src/gui/table_model.h | 8 ++++---- src/gui/textbox.cpp | 8 ++++---- src/gui/textbox.h | 8 ++++---- src/gui/textfield.cpp | 8 ++++---- src/gui/textfield.h | 8 ++++---- src/gui/trade.cpp | 8 ++++---- src/gui/trade.h | 8 ++++---- src/gui/truetypefont.cpp | 8 ++++---- src/gui/truetypefont.h | 8 ++++---- src/gui/updatewindow.cpp | 8 ++++---- src/gui/updatewindow.h | 8 ++++---- src/gui/viewport.cpp | 8 ++++---- src/gui/viewport.h | 8 ++++---- src/gui/widgets/layout.cpp | 8 ++++---- src/gui/widgets/layout.h | 8 ++++---- src/gui/widgets/layouthelper.cpp | 8 ++++---- src/gui/widgets/layouthelper.h | 8 ++++---- src/gui/widgets/resizegrip.cpp | 8 ++++---- src/gui/widgets/resizegrip.h | 8 ++++---- src/gui/widgets/tab.cpp | 8 ++++---- src/gui/widgets/tab.h | 8 ++++---- src/gui/widgets/tabbedarea.cpp | 8 ++++---- src/gui/widgets/tabbedarea.h | 8 ++++---- src/gui/window.cpp | 8 ++++---- src/gui/window.h | 8 ++++---- src/gui/windowcontainer.cpp | 8 ++++---- src/gui/windowcontainer.h | 8 ++++---- src/guichanfwd.h | 8 ++++---- src/imageparticle.cpp | 8 ++++---- src/imageparticle.h | 8 ++++---- src/inventory.cpp | 8 ++++---- src/inventory.h | 8 ++++---- src/item.cpp | 8 ++++---- src/item.h | 8 ++++---- src/itemshortcut.cpp | 8 ++++---- src/itemshortcut.h | 8 ++++---- src/joystick.cpp | 8 ++++---- src/joystick.h | 8 ++++---- src/keyboardconfig.cpp | 8 ++++---- src/keyboardconfig.h | 8 ++++---- src/localplayer.cpp | 8 ++++---- src/localplayer.h | 8 ++++---- src/lockedarray.h | 8 ++++---- src/log.cpp | 8 ++++---- src/log.h | 8 ++++---- src/logindata.h | 8 ++++---- src/main.cpp | 8 ++++---- src/main.h | 8 ++++---- src/map.cpp | 8 ++++---- src/map.h | 8 ++++---- src/monster.cpp | 8 ++++---- src/monster.h | 8 ++++---- src/net/beinghandler.cpp | 8 ++++---- src/net/beinghandler.h | 8 ++++---- src/net/buysellhandler.cpp | 8 ++++---- src/net/buysellhandler.h | 8 ++++---- src/net/charserverhandler.cpp | 8 ++++---- src/net/charserverhandler.h | 8 ++++---- src/net/chathandler.cpp | 8 ++++---- src/net/chathandler.h | 8 ++++---- src/net/equipmenthandler.cpp | 8 ++++---- src/net/equipmenthandler.h | 8 ++++---- src/net/inventoryhandler.cpp | 8 ++++---- src/net/inventoryhandler.h | 8 ++++---- src/net/itemhandler.cpp | 8 ++++---- src/net/itemhandler.h | 8 ++++---- src/net/loginhandler.cpp | 8 ++++---- src/net/loginhandler.h | 8 ++++---- src/net/maploginhandler.cpp | 8 ++++---- src/net/maploginhandler.h | 8 ++++---- src/net/messagehandler.cpp | 8 ++++---- src/net/messagehandler.h | 8 ++++---- src/net/messagein.cpp | 8 ++++---- src/net/messagein.h | 8 ++++---- src/net/messageout.cpp | 8 ++++---- src/net/messageout.h | 8 ++++---- src/net/network.cpp | 8 ++++---- src/net/network.h | 8 ++++---- src/net/npchandler.cpp | 8 ++++---- src/net/npchandler.h | 8 ++++---- src/net/playerhandler.cpp | 8 ++++---- src/net/playerhandler.h | 8 ++++---- src/net/protocol.cpp | 8 ++++---- src/net/protocol.h | 8 ++++---- src/net/skillhandler.cpp | 8 ++++---- src/net/skillhandler.h | 8 ++++---- src/net/tradehandler.cpp | 8 ++++---- src/net/tradehandler.h | 8 ++++---- src/npc.cpp | 8 ++++---- src/npc.h | 8 ++++---- src/openglgraphics.cpp | 8 ++++---- src/openglgraphics.h | 8 ++++---- src/particle.cpp | 8 ++++---- src/particle.h | 8 ++++---- src/particlecontainer.cpp | 8 ++++---- src/particlecontainer.h | 8 ++++---- src/particleemitter.cpp | 8 ++++---- src/particleemitter.h | 8 ++++---- src/particleemitterprop.h | 8 ++++---- src/player.cpp | 8 ++++---- src/player.h | 8 ++++---- src/player_relations.cpp | 8 ++++---- src/player_relations.h | 8 ++++---- src/position.cpp | 8 ++++---- src/position.h | 8 ++++---- src/properties.h | 8 ++++---- src/recorder.h | 8 ++++---- src/resources/action.cpp | 8 ++++---- src/resources/action.h | 8 ++++---- src/resources/ambientoverlay.cpp | 8 ++++---- src/resources/ambientoverlay.h | 8 ++++---- src/resources/animation.cpp | 8 ++++---- src/resources/animation.h | 8 ++++---- src/resources/buddylist.cpp | 8 ++++---- src/resources/buddylist.h | 8 ++++---- src/resources/dye.cpp | 8 ++++---- src/resources/dye.h | 8 ++++---- src/resources/image.cpp | 8 ++++---- src/resources/image.h | 8 ++++---- src/resources/imageloader.cpp | 8 ++++---- src/resources/imageloader.h | 8 ++++---- src/resources/imageset.cpp | 8 ++++---- src/resources/imageset.h | 8 ++++---- src/resources/imagewriter.cpp | 8 ++++---- src/resources/imagewriter.h | 8 ++++---- src/resources/itemdb.cpp | 8 ++++---- src/resources/itemdb.h | 8 ++++---- src/resources/iteminfo.cpp | 8 ++++---- src/resources/iteminfo.h | 8 ++++---- src/resources/mapreader.cpp | 8 ++++---- src/resources/mapreader.h | 8 ++++---- src/resources/monsterdb.cpp | 8 ++++---- src/resources/monsterdb.h | 8 ++++---- src/resources/monsterinfo.cpp | 8 ++++---- src/resources/monsterinfo.h | 8 ++++---- src/resources/music.cpp | 8 ++++---- src/resources/music.h | 8 ++++---- src/resources/npcdb.cpp | 8 ++++---- src/resources/npcdb.h | 8 ++++---- src/resources/resource.cpp | 8 ++++---- src/resources/resource.h | 8 ++++---- src/resources/resourcemanager.cpp | 8 ++++---- src/resources/resourcemanager.h | 8 ++++---- src/resources/soundeffect.cpp | 8 ++++---- src/resources/soundeffect.h | 8 ++++---- src/resources/spritedef.cpp | 8 ++++---- src/resources/spritedef.h | 8 ++++---- src/serverinfo.h | 8 ++++---- src/shopitem.cpp | 8 ++++---- src/shopitem.h | 8 ++++---- src/simpleanimation.cpp | 8 ++++---- src/simpleanimation.h | 8 ++++---- src/sound.cpp | 8 ++++---- src/sound.h | 8 ++++---- src/sprite.h | 8 ++++---- src/text.cpp | 3 +-- src/text.h | 3 +-- src/textmanager.cpp | 3 +-- src/textmanager.h | 3 +-- src/textparticle.cpp | 8 ++++---- src/textparticle.h | 8 ++++---- src/tileset.h | 8 ++++---- src/utils/dtor.h | 8 ++++---- src/utils/gettext.h | 8 ++++---- src/utils/mutex.h | 8 ++++---- src/utils/strprintf.cpp | 8 ++++---- src/utils/strprintf.h | 8 ++++---- src/utils/tostring.h | 8 ++++---- src/utils/trim.h | 8 ++++---- src/utils/xml.cpp | 8 ++++---- src/utils/xml.h | 8 ++++---- src/vector.cpp | 8 ++++---- src/vector.h | 8 ++++---- tools/tmxcopy/main.cpp | 9 ++++----- tools/tmxcopy/map.cpp | 9 ++++----- tools/tmxcopy/tostring.h | 8 ++++---- tools/tmxcopy/xmlutils.cpp | 8 ++++---- tools/tmxcopy/xmlutils.h | 8 ++++---- 314 files changed, 1241 insertions(+), 1248 deletions(-) (limited to 'src/gui/setup_players.cpp') diff --git a/src/animatedsprite.cpp b/src/animatedsprite.cpp index ba71d0e0..aa2fb4ee 100644 --- a/src/animatedsprite.cpp +++ b/src/animatedsprite.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/animatedsprite.h b/src/animatedsprite.h index ddc663f2..c8a2b3c5 100644 --- a/src/animatedsprite.h +++ b/src/animatedsprite.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/animationparticle.cpp b/src/animationparticle.cpp index 59eacb05..9c1f7ccb 100644 --- a/src/animationparticle.cpp +++ b/src/animationparticle.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2006 The Mana World Development Team + * Copyright (C) 2006 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/animationparticle.h b/src/animationparticle.h index eabc2742..03065eb7 100644 --- a/src/animationparticle.h +++ b/src/animationparticle.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2006 The Mana World Development Team + * Copyright (C) 2006 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/being.cpp b/src/being.cpp index 8ed66c7a..a0b870e0 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/being.h b/src/being.h index 6dbcdfdd..1e9954c5 100644 --- a/src/being.h +++ b/src/being.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/beingmanager.cpp b/src/beingmanager.cpp index ada1ddfa..b2dc330b 100644 --- a/src/beingmanager.cpp +++ b/src/beingmanager.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/beingmanager.h b/src/beingmanager.h index 0179bed8..267b4655 100644 --- a/src/beingmanager.h +++ b/src/beingmanager.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/configlistener.h b/src/configlistener.h index 9fbc4544..e62d41ea 100644 --- a/src/configlistener.h +++ b/src/configlistener.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/configuration.cpp b/src/configuration.cpp index 4fb6a42b..04cb4f36 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/configuration.h b/src/configuration.h index 197e1a41..f7a44410 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/effectmanager.cpp b/src/effectmanager.cpp index 1fdf87e8..cf77de37 100644 --- a/src/effectmanager.cpp +++ b/src/effectmanager.cpp @@ -1,25 +1,25 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright 2008 The Mana World Development Team * - * This file is part of The Mana World. + * This file is part of Aethyra. * - * The Mana World is free software; you can redistribute it and/or modify + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * */ + #include "effectmanager.h" #include "log.h" #include "particle.h" diff --git a/src/effectmanager.h b/src/effectmanager.h index e6671498..a9efcdbc 100644 --- a/src/effectmanager.h +++ b/src/effectmanager.h @@ -1,23 +1,22 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright 2008 The Mana World Development Team * - * This file is part of The Mana World. + * This file is part of Aethyra. * - * The Mana World is free software; you can redistribute it and/or modify + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * */ #ifndef _EFFECT_MANAGER_H diff --git a/src/engine.cpp b/src/engine.cpp index 04e5f287..2a37d888 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/engine.h b/src/engine.h index 8d387f80..f2852351 100644 --- a/src/engine.h +++ b/src/engine.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/equipment.cpp b/src/equipment.cpp index 828de46b..d5e0f656 100644 --- a/src/equipment.cpp +++ b/src/equipment.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/equipment.h b/src/equipment.h index e6145d12..50fcbb32 100644 --- a/src/equipment.h +++ b/src/equipment.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/floor_item.cpp b/src/floor_item.cpp index 0b114e14..0c4c1c10 100644 --- a/src/floor_item.cpp +++ b/src/floor_item.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/floor_item.h b/src/floor_item.h index 4a4e8fb3..589835b4 100644 --- a/src/floor_item.h +++ b/src/floor_item.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/flooritemmanager.cpp b/src/flooritemmanager.cpp index 7445b1e9..65556abb 100644 --- a/src/flooritemmanager.cpp +++ b/src/flooritemmanager.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/flooritemmanager.h b/src/flooritemmanager.h index 3dbaf988..b527bbd2 100644 --- a/src/flooritemmanager.h +++ b/src/flooritemmanager.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/game.cpp b/src/game.cpp index 1d09ebe2..76cf792e 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/game.h b/src/game.h index 1cc18cae..f674dbf0 100644 --- a/src/game.h +++ b/src/game.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/graphics.cpp b/src/graphics.cpp index 55ccc3b4..4af7b723 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/graphics.h b/src/graphics.h index bc9a95bd..8009ceda 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/browserbox.cpp b/src/gui/browserbox.cpp index 7621b856..6fd0482a 100644 --- a/src/gui/browserbox.cpp +++ b/src/gui/browserbox.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/browserbox.h b/src/gui/browserbox.h index e4411637..c2c427f4 100644 --- a/src/gui/browserbox.h +++ b/src/gui/browserbox.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/button.cpp b/src/gui/button.cpp index 9653242c..04b96810 100644 --- a/src/gui/button.cpp +++ b/src/gui/button.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/button.h b/src/gui/button.h index eecd0dc0..2999a737 100644 --- a/src/gui/button.h +++ b/src/gui/button.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/buy.cpp b/src/gui/buy.cpp index 496c8cd7..0c8c4d9d 100644 --- a/src/gui/buy.cpp +++ b/src/gui/buy.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/buy.h b/src/gui/buy.h index 7f0f04ac..1b7ebe43 100644 --- a/src/gui/buy.h +++ b/src/gui/buy.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/buysell.cpp b/src/gui/buysell.cpp index 724ae8a1..d060db85 100644 --- a/src/gui/buysell.cpp +++ b/src/gui/buysell.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/buysell.h b/src/gui/buysell.h index d73205b6..0f41e9ed 100644 --- a/src/gui/buysell.h +++ b/src/gui/buysell.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/char_select.cpp b/src/gui/char_select.cpp index 7bfa3c7a..af030280 100644 --- a/src/gui/char_select.cpp +++ b/src/gui/char_select.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/char_select.h b/src/gui/char_select.h index d592ce48..23f5499c 100644 --- a/src/gui/char_select.h +++ b/src/gui/char_select.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/char_server.cpp b/src/gui/char_server.cpp index d5452532..2e823b60 100644 --- a/src/gui/char_server.cpp +++ b/src/gui/char_server.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/char_server.h b/src/gui/char_server.h index e05792f8..9419c92d 100644 --- a/src/gui/char_server.h +++ b/src/gui/char_server.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 7ce5d395..20065106 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/chat.h b/src/gui/chat.h index 2967e204..e5d0a4a9 100644 --- a/src/gui/chat.h +++ b/src/gui/chat.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/chatinput.cpp b/src/gui/chatinput.cpp index afe7f037..43f3cde4 100644 --- a/src/gui/chatinput.cpp +++ b/src/gui/chatinput.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/chatinput.h b/src/gui/chatinput.h index 44e22956..fc5c18a3 100644 --- a/src/gui/chatinput.h +++ b/src/gui/chatinput.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/checkbox.cpp b/src/gui/checkbox.cpp index 20e24dee..b8fca2b8 100644 --- a/src/gui/checkbox.cpp +++ b/src/gui/checkbox.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/checkbox.h b/src/gui/checkbox.h index f6d8f2e5..ea67ec02 100644 --- a/src/gui/checkbox.h +++ b/src/gui/checkbox.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/confirm_dialog.cpp b/src/gui/confirm_dialog.cpp index 72ce3e16..569fd93f 100644 --- a/src/gui/confirm_dialog.cpp +++ b/src/gui/confirm_dialog.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/confirm_dialog.h b/src/gui/confirm_dialog.h index 109dcea0..63a867da 100644 --- a/src/gui/confirm_dialog.h +++ b/src/gui/confirm_dialog.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/connection.cpp b/src/gui/connection.cpp index 174d98e7..15d85bbc 100644 --- a/src/gui/connection.cpp +++ b/src/gui/connection.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/connection.h b/src/gui/connection.h index c3a6208f..0cbb8768 100644 --- a/src/gui/connection.h +++ b/src/gui/connection.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/debugwindow.cpp b/src/gui/debugwindow.cpp index 3d729fe4..223b7fbd 100644 --- a/src/gui/debugwindow.cpp +++ b/src/gui/debugwindow.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/debugwindow.h b/src/gui/debugwindow.h index 8d8b7822..185915a2 100644 --- a/src/gui/debugwindow.h +++ b/src/gui/debugwindow.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/equipmentwindow.cpp b/src/gui/equipmentwindow.cpp index 47ca61df..ff976b24 100644 --- a/src/gui/equipmentwindow.cpp +++ b/src/gui/equipmentwindow.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/equipmentwindow.h b/src/gui/equipmentwindow.h index b669f5b1..c50e154e 100644 --- a/src/gui/equipmentwindow.h +++ b/src/gui/equipmentwindow.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/focushandler.cpp b/src/gui/focushandler.cpp index f9ea8b7d..dd605be6 100644 --- a/src/gui/focushandler.cpp +++ b/src/gui/focushandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/focushandler.h b/src/gui/focushandler.h index a5218485..a183a1c8 100644 --- a/src/gui/focushandler.h +++ b/src/gui/focushandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/gccontainer.cpp b/src/gui/gccontainer.cpp index ec3c8a5c..8325ccd4 100644 --- a/src/gui/gccontainer.cpp +++ b/src/gui/gccontainer.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/gccontainer.h b/src/gui/gccontainer.h index 2af7f6ad..03dcb785 100644 --- a/src/gui/gccontainer.h +++ b/src/gui/gccontainer.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 6a399548..99883151 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/gui.h b/src/gui/gui.h index eb81b87c..2289ae0b 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/help.cpp b/src/gui/help.cpp index cd249943..6b14f6d8 100644 --- a/src/gui/help.cpp +++ b/src/gui/help.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/help.h b/src/gui/help.h index bd200ccf..b4627389 100644 --- a/src/gui/help.h +++ b/src/gui/help.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/inttextfield.cpp b/src/gui/inttextfield.cpp index e8e6e69b..fcbe938d 100644 --- a/src/gui/inttextfield.cpp +++ b/src/gui/inttextfield.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/inttextfield.h b/src/gui/inttextfield.h index 3f9cd7ad..2a913ef6 100644 --- a/src/gui/inttextfield.h +++ b/src/gui/inttextfield.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index 72507d23..da549841 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/inventorywindow.h b/src/gui/inventorywindow.h index 166bf1c4..e14994df 100644 --- a/src/gui/inventorywindow.h +++ b/src/gui/inventorywindow.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/item_amount.cpp b/src/gui/item_amount.cpp index 03b22fa9..d8682c95 100644 --- a/src/gui/item_amount.cpp +++ b/src/gui/item_amount.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/item_amount.h b/src/gui/item_amount.h index 08852c8f..e6086f82 100644 --- a/src/gui/item_amount.h +++ b/src/gui/item_amount.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/itemcontainer.cpp b/src/gui/itemcontainer.cpp index 681bf0ce..e07a997c 100644 --- a/src/gui/itemcontainer.cpp +++ b/src/gui/itemcontainer.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/itemcontainer.h b/src/gui/itemcontainer.h index 558470bd..0eb940f5 100644 --- a/src/gui/itemcontainer.h +++ b/src/gui/itemcontainer.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/itemshortcutcontainer.cpp b/src/gui/itemshortcutcontainer.cpp index 40b435cc..5179ceb8 100644 --- a/src/gui/itemshortcutcontainer.cpp +++ b/src/gui/itemshortcutcontainer.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include diff --git a/src/gui/itemshortcutcontainer.h b/src/gui/itemshortcutcontainer.h index 07e2c38d..d8ddf110 100644 --- a/src/gui/itemshortcutcontainer.h +++ b/src/gui/itemshortcutcontainer.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/linkhandler.h b/src/gui/linkhandler.h index 44f906db..b238f38b 100644 --- a/src/gui/linkhandler.h +++ b/src/gui/linkhandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/listbox.cpp b/src/gui/listbox.cpp index 7e28e1f5..21b59a07 100644 --- a/src/gui/listbox.cpp +++ b/src/gui/listbox.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/listbox.h b/src/gui/listbox.h index 30eb4c79..69ba45f4 100644 --- a/src/gui/listbox.h +++ b/src/gui/listbox.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/login.cpp b/src/gui/login.cpp index 7ac76c63..84e10e97 100644 --- a/src/gui/login.cpp +++ b/src/gui/login.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/login.h b/src/gui/login.h index d1d75ebc..c8fcc267 100644 --- a/src/gui/login.h +++ b/src/gui/login.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/menuwindow.cpp b/src/gui/menuwindow.cpp index 2a175a61..0dcc999f 100644 --- a/src/gui/menuwindow.cpp +++ b/src/gui/menuwindow.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/menuwindow.h b/src/gui/menuwindow.h index 03ec3380..539cdc24 100644 --- a/src/gui/menuwindow.h +++ b/src/gui/menuwindow.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/minimap.cpp b/src/gui/minimap.cpp index 61a56445..9292ec05 100644 --- a/src/gui/minimap.cpp +++ b/src/gui/minimap.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004-2005 The Mana World Development Team + * Copyright (C) 2004-2005 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/minimap.h b/src/gui/minimap.h index b6dbc322..6b2b7f52 100644 --- a/src/gui/minimap.h +++ b/src/gui/minimap.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004-2005 The Mana World Development Team + * Copyright (C) 2004-2005 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/ministatus.cpp b/src/gui/ministatus.cpp index c4c834c7..04901379 100644 --- a/src/gui/ministatus.cpp +++ b/src/gui/ministatus.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/ministatus.h b/src/gui/ministatus.h index d7f6f68c..d4804bef 100644 --- a/src/gui/ministatus.h +++ b/src/gui/ministatus.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/npc_text.cpp b/src/gui/npc_text.cpp index 898b9afe..3a0a86a6 100644 --- a/src/gui/npc_text.cpp +++ b/src/gui/npc_text.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/npc_text.h b/src/gui/npc_text.h index 90b15abd..f6b059ea 100644 --- a/src/gui/npc_text.h +++ b/src/gui/npc_text.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/npcintegerdialog.cpp b/src/gui/npcintegerdialog.cpp index 473c10f6..65a1a7f1 100644 --- a/src/gui/npcintegerdialog.cpp +++ b/src/gui/npcintegerdialog.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/npcintegerdialog.h b/src/gui/npcintegerdialog.h index c1bdffe1..d2c5f058 100644 --- a/src/gui/npcintegerdialog.h +++ b/src/gui/npcintegerdialog.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/npclistdialog.cpp b/src/gui/npclistdialog.cpp index 7ecd0a74..9f41be67 100644 --- a/src/gui/npclistdialog.cpp +++ b/src/gui/npclistdialog.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/npclistdialog.h b/src/gui/npclistdialog.h index bc58cdcd..242e3a95 100644 --- a/src/gui/npclistdialog.h +++ b/src/gui/npclistdialog.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/npcstringdialog.cpp b/src/gui/npcstringdialog.cpp index 500875be..ccb3c411 100644 --- a/src/gui/npcstringdialog.cpp +++ b/src/gui/npcstringdialog.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/npcstringdialog.h b/src/gui/npcstringdialog.h index 22054994..e57003e9 100644 --- a/src/gui/npcstringdialog.h +++ b/src/gui/npcstringdialog.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/ok_dialog.cpp b/src/gui/ok_dialog.cpp index ad7b879c..dc66a900 100644 --- a/src/gui/ok_dialog.cpp +++ b/src/gui/ok_dialog.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/ok_dialog.h b/src/gui/ok_dialog.h index a06ddd7c..78b3d44f 100644 --- a/src/gui/ok_dialog.h +++ b/src/gui/ok_dialog.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/passwordfield.cpp b/src/gui/passwordfield.cpp index 01c7e15d..09b6abda 100644 --- a/src/gui/passwordfield.cpp +++ b/src/gui/passwordfield.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/passwordfield.h b/src/gui/passwordfield.h index e31b1779..033c4bf9 100644 --- a/src/gui/passwordfield.h +++ b/src/gui/passwordfield.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/playerbox.cpp b/src/gui/playerbox.cpp index 92722417..e8c19ad4 100644 --- a/src/gui/playerbox.cpp +++ b/src/gui/playerbox.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/playerbox.h b/src/gui/playerbox.h index 3ccb5fad..75dfe14c 100644 --- a/src/gui/playerbox.h +++ b/src/gui/playerbox.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp index fde81cd8..88fd273e 100644 --- a/src/gui/popupmenu.cpp +++ b/src/gui/popupmenu.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/popupmenu.h b/src/gui/popupmenu.h index 3cf949b3..734b826f 100644 --- a/src/gui/popupmenu.h +++ b/src/gui/popupmenu.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/progressbar.cpp b/src/gui/progressbar.cpp index b4117c80..6671d388 100644 --- a/src/gui/progressbar.cpp +++ b/src/gui/progressbar.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/progressbar.h b/src/gui/progressbar.h index d2ace66c..670b4ab4 100644 --- a/src/gui/progressbar.h +++ b/src/gui/progressbar.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/radiobutton.cpp b/src/gui/radiobutton.cpp index 619ec84f..245112a7 100644 --- a/src/gui/radiobutton.cpp +++ b/src/gui/radiobutton.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/radiobutton.h b/src/gui/radiobutton.h index ef4c128c..84c552b9 100644 --- a/src/gui/radiobutton.h +++ b/src/gui/radiobutton.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/register.cpp b/src/gui/register.cpp index a9cf57cf..9c337d9e 100644 --- a/src/gui/register.cpp +++ b/src/gui/register.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/register.h b/src/gui/register.h index 480a7c03..58106a41 100644 --- a/src/gui/register.h +++ b/src/gui/register.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/scrollarea.cpp b/src/gui/scrollarea.cpp index 07b4027b..1d7f8472 100644 --- a/src/gui/scrollarea.cpp +++ b/src/gui/scrollarea.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/scrollarea.h b/src/gui/scrollarea.h index ebe2c77b..26cba4a6 100644 --- a/src/gui/scrollarea.h +++ b/src/gui/scrollarea.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/sdlinput.cpp b/src/gui/sdlinput.cpp index ee94b2c6..f68dc9c8 100644 --- a/src/gui/sdlinput.cpp +++ b/src/gui/sdlinput.cpp @@ -7,7 +7,7 @@ * \______\/ \______\/ \_\/ \_____\/ \_\/ \_\/ \_\/ \_\/ \_\/ \_\/ * * Copyright (c) 2004, 2005, 2006, 2007 Olof Naessén and Per Larsson - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 The Mana World Development Team * * Js_./ * Per Larsson a.k.a finalman _RqZ{a<^_aa diff --git a/src/gui/sdlinput.h b/src/gui/sdlinput.h index 72d949e1..67eb13a8 100644 --- a/src/gui/sdlinput.h +++ b/src/gui/sdlinput.h @@ -7,7 +7,7 @@ * \______\/ \______\/ \_\/ \_____\/ \_\/ \_\/ \_\/ \_\/ \_\/ \_\/ * * Copyright (c) 2004, 2005, 2006, 2007 Olof Naessén and Per Larsson - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 The Mana World Development Team * * Js_./ * Per Larsson a.k.a finalman _RqZ{a<^_aa diff --git a/src/gui/sell.cpp b/src/gui/sell.cpp index fac0a0b8..7976e32e 100644 --- a/src/gui/sell.cpp +++ b/src/gui/sell.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/sell.h b/src/gui/sell.h index 0bf8b5a6..0aba2909 100644 --- a/src/gui/sell.h +++ b/src/gui/sell.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp index bd5a25f9..dd0f94e5 100644 --- a/src/gui/setup.cpp +++ b/src/gui/setup.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setup.h b/src/gui/setup.h index 8a775093..1e0359aa 100644 --- a/src/gui/setup.h +++ b/src/gui/setup.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setup_audio.cpp b/src/gui/setup_audio.cpp index 7ffff913..7090136e 100644 --- a/src/gui/setup_audio.cpp +++ b/src/gui/setup_audio.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setup_audio.h b/src/gui/setup_audio.h index 9835a8fb..a91cb6cb 100644 --- a/src/gui/setup_audio.h +++ b/src/gui/setup_audio.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setup_joystick.cpp b/src/gui/setup_joystick.cpp index 187b3e2b..2c726b87 100644 --- a/src/gui/setup_joystick.cpp +++ b/src/gui/setup_joystick.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setup_joystick.h b/src/gui/setup_joystick.h index d2973a89..fec38353 100644 --- a/src/gui/setup_joystick.h +++ b/src/gui/setup_joystick.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setup_keyboard.cpp b/src/gui/setup_keyboard.cpp index 83c556a2..7ff2ea7f 100644 --- a/src/gui/setup_keyboard.cpp +++ b/src/gui/setup_keyboard.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setup_keyboard.h b/src/gui/setup_keyboard.h index 937790af..86dd920b 100644 --- a/src/gui/setup_keyboard.h +++ b/src/gui/setup_keyboard.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index 4bfca983..a4582b48 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setup_players.h b/src/gui/setup_players.h index b693a952..a1f1e8aa 100644 --- a/src/gui/setup_players.h +++ b/src/gui/setup_players.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index 16a7172f..2ba8b6e8 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h index 360daff0..e9cfb36e 100644 --- a/src/gui/setup_video.h +++ b/src/gui/setup_video.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/setuptab.h b/src/gui/setuptab.h index 9e668a20..c1171fdb 100644 --- a/src/gui/setuptab.h +++ b/src/gui/setuptab.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/shop.cpp b/src/gui/shop.cpp index a4478a62..a5f59bac 100644 --- a/src/gui/shop.cpp +++ b/src/gui/shop.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/shop.h b/src/gui/shop.h index 97b8d173..22b649d0 100644 --- a/src/gui/shop.h +++ b/src/gui/shop.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp index e31eee58..b6a12658 100644 --- a/src/gui/shoplistbox.cpp +++ b/src/gui/shoplistbox.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/shoplistbox.h b/src/gui/shoplistbox.h index e856c076..c55db889 100644 --- a/src/gui/shoplistbox.h +++ b/src/gui/shoplistbox.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/shortcutwindow.cpp b/src/gui/shortcutwindow.cpp index d2b939f5..3a7cf0e0 100644 --- a/src/gui/shortcutwindow.cpp +++ b/src/gui/shortcutwindow.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/shortcutwindow.h b/src/gui/shortcutwindow.h index 9ac1a52a..3c9bfbea 100644 --- a/src/gui/shortcutwindow.h +++ b/src/gui/shortcutwindow.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/skill.cpp b/src/gui/skill.cpp index bc28123a..9d23cc3c 100644 --- a/src/gui/skill.cpp +++ b/src/gui/skill.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/skill.h b/src/gui/skill.h index 2095e098..33298e96 100644 --- a/src/gui/skill.h +++ b/src/gui/skill.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/slider.cpp b/src/gui/slider.cpp index afeecf17..37136012 100644 --- a/src/gui/slider.cpp +++ b/src/gui/slider.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/slider.h b/src/gui/slider.h index 36bfe698..c2add662 100644 --- a/src/gui/slider.h +++ b/src/gui/slider.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/status.cpp b/src/gui/status.cpp index e140c42b..f7a5c137 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/status.h b/src/gui/status.h index aa20d094..795ed533 100644 --- a/src/gui/status.h +++ b/src/gui/status.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/table.cpp b/src/gui/table.cpp index 264d9864..c4265097 100644 --- a/src/gui/table.cpp +++ b/src/gui/table.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/table.h b/src/gui/table.h index b4c607ae..39a48dd5 100644 --- a/src/gui/table.h +++ b/src/gui/table.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/table_model.cpp b/src/gui/table_model.cpp index f7f0ab54..a6904fd1 100644 --- a/src/gui/table_model.cpp +++ b/src/gui/table_model.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/table_model.h b/src/gui/table_model.h index 304500bb..cd4bc6db 100644 --- a/src/gui/table_model.h +++ b/src/gui/table_model.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/textbox.cpp b/src/gui/textbox.cpp index d7b589fa..ee03c79d 100644 --- a/src/gui/textbox.cpp +++ b/src/gui/textbox.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/textbox.h b/src/gui/textbox.h index a0f0f947..62385b1e 100644 --- a/src/gui/textbox.h +++ b/src/gui/textbox.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/textfield.cpp b/src/gui/textfield.cpp index 80e3bbcf..3ecf5c82 100644 --- a/src/gui/textfield.cpp +++ b/src/gui/textfield.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/textfield.h b/src/gui/textfield.h index 3235e3f6..4c887546 100644 --- a/src/gui/textfield.h +++ b/src/gui/textfield.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/trade.cpp b/src/gui/trade.cpp index 4ae81e44..c89e55a2 100644 --- a/src/gui/trade.cpp +++ b/src/gui/trade.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/trade.h b/src/gui/trade.h index ec7a2a39..910a5183 100644 --- a/src/gui/trade.h +++ b/src/gui/trade.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/truetypefont.cpp b/src/gui/truetypefont.cpp index 248afcbf..27b327f2 100644 --- a/src/gui/truetypefont.cpp +++ b/src/gui/truetypefont.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/truetypefont.h b/src/gui/truetypefont.h index 3d5d52ff..bb3663cd 100644 --- a/src/gui/truetypefont.h +++ b/src/gui/truetypefont.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/updatewindow.cpp b/src/gui/updatewindow.cpp index ba802876..67e05bbd 100644 --- a/src/gui/updatewindow.cpp +++ b/src/gui/updatewindow.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/updatewindow.h b/src/gui/updatewindow.h index 9cd3405e..6450ece2 100644 --- a/src/gui/updatewindow.h +++ b/src/gui/updatewindow.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/viewport.cpp b/src/gui/viewport.cpp index 5fcb7dc9..f258aba8 100644 --- a/src/gui/viewport.cpp +++ b/src/gui/viewport.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/viewport.h b/src/gui/viewport.h index ef8e7a38..0a140ff9 100644 --- a/src/gui/viewport.h +++ b/src/gui/viewport.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/widgets/layout.cpp b/src/gui/widgets/layout.cpp index bcc54cf7..4ffdda36 100644 --- a/src/gui/widgets/layout.cpp +++ b/src/gui/widgets/layout.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/widgets/layout.h b/src/gui/widgets/layout.h index 9ba97fa1..b9b8b0f8 100644 --- a/src/gui/widgets/layout.h +++ b/src/gui/widgets/layout.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/widgets/layouthelper.cpp b/src/gui/widgets/layouthelper.cpp index 4dddaab3..410de98a 100644 --- a/src/gui/widgets/layouthelper.cpp +++ b/src/gui/widgets/layouthelper.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2009 The Mana World Development Team + * Copyright (C) 2009 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/widgets/layouthelper.h b/src/gui/widgets/layouthelper.h index b1039fb0..afa92a18 100644 --- a/src/gui/widgets/layouthelper.h +++ b/src/gui/widgets/layouthelper.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2009 The Mana World Development Team + * Copyright (C) 2009 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/widgets/resizegrip.cpp b/src/gui/widgets/resizegrip.cpp index 6009d5f5..4b8bb4da 100644 --- a/src/gui/widgets/resizegrip.cpp +++ b/src/gui/widgets/resizegrip.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/widgets/resizegrip.h b/src/gui/widgets/resizegrip.h index acb934d2..6c517de8 100644 --- a/src/gui/widgets/resizegrip.h +++ b/src/gui/widgets/resizegrip.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/widgets/tab.cpp b/src/gui/widgets/tab.cpp index c53ac85c..c54b2390 100644 --- a/src/gui/widgets/tab.cpp +++ b/src/gui/widgets/tab.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/widgets/tab.h b/src/gui/widgets/tab.h index 42964b0f..6b6e06af 100644 --- a/src/gui/widgets/tab.h +++ b/src/gui/widgets/tab.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/widgets/tabbedarea.cpp b/src/gui/widgets/tabbedarea.cpp index 205fdc99..c4e22bff 100644 --- a/src/gui/widgets/tabbedarea.cpp +++ b/src/gui/widgets/tabbedarea.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/widgets/tabbedarea.h b/src/gui/widgets/tabbedarea.h index 2199264b..8d60409a 100644 --- a/src/gui/widgets/tabbedarea.h +++ b/src/gui/widgets/tabbedarea.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/window.cpp b/src/gui/window.cpp index d1ada53d..dba65143 100644 --- a/src/gui/window.cpp +++ b/src/gui/window.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/window.h b/src/gui/window.h index d864290c..fc808cf4 100644 --- a/src/gui/window.h +++ b/src/gui/window.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/windowcontainer.cpp b/src/gui/windowcontainer.cpp index d8535f73..2846b1c1 100644 --- a/src/gui/windowcontainer.cpp +++ b/src/gui/windowcontainer.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/gui/windowcontainer.h b/src/gui/windowcontainer.h index d783fefd..f087db2c 100644 --- a/src/gui/windowcontainer.h +++ b/src/gui/windowcontainer.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/guichanfwd.h b/src/guichanfwd.h index 4fb7ea3e..5fd05dbc 100644 --- a/src/guichanfwd.h +++ b/src/guichanfwd.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/imageparticle.cpp b/src/imageparticle.cpp index 6d74801e..557b3553 100644 --- a/src/imageparticle.cpp +++ b/src/imageparticle.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2006 The Mana World Development Team + * Copyright (C) 2006 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/imageparticle.h b/src/imageparticle.h index c18b30b8..317b17ea 100644 --- a/src/imageparticle.h +++ b/src/imageparticle.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2006 The Mana World Development Team + * Copyright (C) 2006 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/inventory.cpp b/src/inventory.cpp index da9aed02..8824e1ba 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/inventory.h b/src/inventory.h index 91bb7d04..2c5d99e3 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/item.cpp b/src/item.cpp index bc6b7cc7..9165c6c8 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/item.h b/src/item.h index bb6fcbdc..2543b594 100644 --- a/src/item.h +++ b/src/item.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/itemshortcut.cpp b/src/itemshortcut.cpp index cfe46238..7bfbc88e 100644 --- a/src/itemshortcut.cpp +++ b/src/itemshortcut.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/itemshortcut.h b/src/itemshortcut.h index 57800d96..5e448010 100644 --- a/src/itemshortcut.h +++ b/src/itemshortcut.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/joystick.cpp b/src/joystick.cpp index 4cee4464..1233c37f 100644 --- a/src/joystick.cpp +++ b/src/joystick.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/joystick.h b/src/joystick.h index 2baf3e61..867bf96a 100644 --- a/src/joystick.h +++ b/src/joystick.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/keyboardconfig.cpp b/src/keyboardconfig.cpp index 932f6ad2..d7288796 100644 --- a/src/keyboardconfig.cpp +++ b/src/keyboardconfig.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/keyboardconfig.h b/src/keyboardconfig.h index 716f9a17..038a33af 100644 --- a/src/keyboardconfig.h +++ b/src/keyboardconfig.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/localplayer.cpp b/src/localplayer.cpp index 7d3ff3ab..db7a25f8 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include diff --git a/src/localplayer.h b/src/localplayer.h index 76c810bb..236d63dc 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/lockedarray.h b/src/lockedarray.h index a3e5dc0a..e32f6305 100644 --- a/src/lockedarray.h +++ b/src/lockedarray.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/log.cpp b/src/log.cpp index 96630a96..e50edeb2 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/log.h b/src/log.h index 30078e35..fcd48757 100644 --- a/src/log.h +++ b/src/log.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/logindata.h b/src/logindata.h index 6b733269..ea494e15 100644 --- a/src/logindata.h +++ b/src/logindata.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/main.cpp b/src/main.cpp index a0066c66..8490ec94 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/main.h b/src/main.h index a0fe65cb..0fe2b296 100644 --- a/src/main.h +++ b/src/main.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/map.cpp b/src/map.cpp index 5d36d772..01844409 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/map.h b/src/map.h index b299fdb5..57d5b9ac 100644 --- a/src/map.h +++ b/src/map.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/monster.cpp b/src/monster.cpp index 04624b8c..f42258bc 100644 --- a/src/monster.cpp +++ b/src/monster.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/monster.h b/src/monster.h index 7a8cd2a7..ecd90766 100644 --- a/src/monster.h +++ b/src/monster.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/beinghandler.cpp b/src/net/beinghandler.cpp index 5b689266..69bc462c 100644 --- a/src/net/beinghandler.cpp +++ b/src/net/beinghandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/beinghandler.h b/src/net/beinghandler.h index 9e736751..cb5941fd 100644 --- a/src/net/beinghandler.h +++ b/src/net/beinghandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/buysellhandler.cpp b/src/net/buysellhandler.cpp index b2fe99b9..5292b6f9 100644 --- a/src/net/buysellhandler.cpp +++ b/src/net/buysellhandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/buysellhandler.h b/src/net/buysellhandler.h index 49984840..eb1f5853 100644 --- a/src/net/buysellhandler.h +++ b/src/net/buysellhandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/charserverhandler.cpp b/src/net/charserverhandler.cpp index eb724630..909100e5 100644 --- a/src/net/charserverhandler.cpp +++ b/src/net/charserverhandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/charserverhandler.h b/src/net/charserverhandler.h index 05f547d0..7e711fd9 100644 --- a/src/net/charserverhandler.h +++ b/src/net/charserverhandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/chathandler.cpp b/src/net/chathandler.cpp index b73b86b4..bf5a5a37 100644 --- a/src/net/chathandler.cpp +++ b/src/net/chathandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/chathandler.h b/src/net/chathandler.h index 53ea61d8..6393e401 100644 --- a/src/net/chathandler.h +++ b/src/net/chathandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/equipmenthandler.cpp b/src/net/equipmenthandler.cpp index 2e0cc562..973de0f6 100644 --- a/src/net/equipmenthandler.cpp +++ b/src/net/equipmenthandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/equipmenthandler.h b/src/net/equipmenthandler.h index 31a747c3..d477885d 100644 --- a/src/net/equipmenthandler.h +++ b/src/net/equipmenthandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/inventoryhandler.cpp b/src/net/inventoryhandler.cpp index 12b7d5ef..3ce0899a 100644 --- a/src/net/inventoryhandler.cpp +++ b/src/net/inventoryhandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/inventoryhandler.h b/src/net/inventoryhandler.h index 002fa938..d18e428a 100644 --- a/src/net/inventoryhandler.h +++ b/src/net/inventoryhandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/itemhandler.cpp b/src/net/itemhandler.cpp index 9cf85ce7..8c4af4e4 100644 --- a/src/net/itemhandler.cpp +++ b/src/net/itemhandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/itemhandler.h b/src/net/itemhandler.h index 99fc6b62..621b7097 100644 --- a/src/net/itemhandler.h +++ b/src/net/itemhandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/loginhandler.cpp b/src/net/loginhandler.cpp index 2b98e4e4..f240618d 100644 --- a/src/net/loginhandler.cpp +++ b/src/net/loginhandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/loginhandler.h b/src/net/loginhandler.h index 047434b4..9024136f 100644 --- a/src/net/loginhandler.h +++ b/src/net/loginhandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/maploginhandler.cpp b/src/net/maploginhandler.cpp index bc08d5d6..1b0919fa 100644 --- a/src/net/maploginhandler.cpp +++ b/src/net/maploginhandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/maploginhandler.h b/src/net/maploginhandler.h index 4d9fa75b..a7267372 100644 --- a/src/net/maploginhandler.h +++ b/src/net/maploginhandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/messagehandler.cpp b/src/net/messagehandler.cpp index 7a41e1ad..f1561a31 100644 --- a/src/net/messagehandler.cpp +++ b/src/net/messagehandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/messagehandler.h b/src/net/messagehandler.h index 952e76a9..f46da788 100644 --- a/src/net/messagehandler.h +++ b/src/net/messagehandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/messagein.cpp b/src/net/messagein.cpp index 387af70c..a288d936 100644 --- a/src/net/messagein.cpp +++ b/src/net/messagein.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/messagein.h b/src/net/messagein.h index 90804497..5cf7cbb5 100644 --- a/src/net/messagein.h +++ b/src/net/messagein.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/messageout.cpp b/src/net/messageout.cpp index 6aa25411..bf4957be 100644 --- a/src/net/messageout.cpp +++ b/src/net/messageout.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/messageout.h b/src/net/messageout.h index 3c4cc241..d377229a 100644 --- a/src/net/messageout.h +++ b/src/net/messageout.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/network.cpp b/src/net/network.cpp index 60d54a7a..941995c9 100644 --- a/src/net/network.cpp +++ b/src/net/network.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/network.h b/src/net/network.h index 6270e0de..db4d7f07 100644 --- a/src/net/network.h +++ b/src/net/network.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/npchandler.cpp b/src/net/npchandler.cpp index 3cea2d64..82b07d41 100644 --- a/src/net/npchandler.cpp +++ b/src/net/npchandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/npchandler.h b/src/net/npchandler.h index abb16b7a..f47af523 100644 --- a/src/net/npchandler.h +++ b/src/net/npchandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/playerhandler.cpp b/src/net/playerhandler.cpp index 59c7d0d6..d06f1108 100644 --- a/src/net/playerhandler.cpp +++ b/src/net/playerhandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/playerhandler.h b/src/net/playerhandler.h index ec22e704..ceefadf6 100644 --- a/src/net/playerhandler.h +++ b/src/net/playerhandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/protocol.cpp b/src/net/protocol.cpp index a0e21d2e..69d69901 100644 --- a/src/net/protocol.cpp +++ b/src/net/protocol.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/protocol.h b/src/net/protocol.h index 0538abf4..8f2a2392 100644 --- a/src/net/protocol.h +++ b/src/net/protocol.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/skillhandler.cpp b/src/net/skillhandler.cpp index b9a232fb..e2185524 100644 --- a/src/net/skillhandler.cpp +++ b/src/net/skillhandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/skillhandler.h b/src/net/skillhandler.h index 80095bd3..44a0f894 100644 --- a/src/net/skillhandler.h +++ b/src/net/skillhandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/tradehandler.cpp b/src/net/tradehandler.cpp index 07134746..0c7c9205 100644 --- a/src/net/tradehandler.cpp +++ b/src/net/tradehandler.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/net/tradehandler.h b/src/net/tradehandler.h index 37ec5024..730c6971 100644 --- a/src/net/tradehandler.h +++ b/src/net/tradehandler.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/npc.cpp b/src/npc.cpp index 2dbf7f43..d8bd5468 100644 --- a/src/npc.cpp +++ b/src/npc.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/npc.h b/src/npc.h index 1cb9a90f..00494060 100644 --- a/src/npc.h +++ b/src/npc.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/openglgraphics.cpp b/src/openglgraphics.cpp index 24be9438..d3278c1a 100644 --- a/src/openglgraphics.cpp +++ b/src/openglgraphics.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/openglgraphics.h b/src/openglgraphics.h index ea30e019..6ff80bcc 100644 --- a/src/openglgraphics.h +++ b/src/openglgraphics.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/particle.cpp b/src/particle.cpp index 1f067de3..4de9fe29 100644 --- a/src/particle.cpp +++ b/src/particle.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2006 The Mana World Development Team + * Copyright (C) 2006 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/particle.h b/src/particle.h index e1ea92d9..87e4d69d 100644 --- a/src/particle.h +++ b/src/particle.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2006 The Mana World Development Team + * Copyright (C) 2006 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/particlecontainer.cpp b/src/particlecontainer.cpp index b90db9f1..d100ba27 100644 --- a/src/particlecontainer.cpp +++ b/src/particlecontainer.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/particlecontainer.h b/src/particlecontainer.h index ae02326e..0181f6e1 100644 --- a/src/particlecontainer.h +++ b/src/particlecontainer.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/particleemitter.cpp b/src/particleemitter.cpp index fef34b22..ca9f7bf5 100644 --- a/src/particleemitter.cpp +++ b/src/particleemitter.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2006 The Mana World Development Team + * Copyright (C) 2006 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/particleemitter.h b/src/particleemitter.h index e16ee241..cc77f215 100644 --- a/src/particleemitter.h +++ b/src/particleemitter.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2006 The Mana World Development Team + * Copyright (C) 2006 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/particleemitterprop.h b/src/particleemitterprop.h index f9c329a9..fde78f8f 100644 --- a/src/particleemitterprop.h +++ b/src/particleemitterprop.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2006 The Mana World Development Team + * Copyright (C) 2006 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/player.cpp b/src/player.cpp index ca728bef..a72e754d 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/player.h b/src/player.h index a082a92b..11cccd04 100644 --- a/src/player.h +++ b/src/player.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/player_relations.cpp b/src/player_relations.cpp index 5eb47433..057eea94 100644 --- a/src/player_relations.cpp +++ b/src/player_relations.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/player_relations.h b/src/player_relations.h index 56f3d5a4..07ec7fcb 100644 --- a/src/player_relations.h +++ b/src/player_relations.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/position.cpp b/src/position.cpp index cc39a1af..69d50476 100644 --- a/src/position.cpp +++ b/src/position.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/position.h b/src/position.h index 7beb3ef7..7ef01466 100644 --- a/src/position.h +++ b/src/position.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/properties.h b/src/properties.h index 038acd91..81714dde 100644 --- a/src/properties.h +++ b/src/properties.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/recorder.h b/src/recorder.h index eeaf4821..c9955fd9 100644 --- a/src/recorder.h +++ b/src/recorder.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/action.cpp b/src/resources/action.cpp index a017e11c..e2cb11f2 100644 --- a/src/resources/action.cpp +++ b/src/resources/action.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/action.h b/src/resources/action.h index 5f159a00..1b5f1fc8 100644 --- a/src/resources/action.h +++ b/src/resources/action.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/ambientoverlay.cpp b/src/resources/ambientoverlay.cpp index 38d8fc46..32ed47d1 100644 --- a/src/resources/ambientoverlay.cpp +++ b/src/resources/ambientoverlay.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/ambientoverlay.h b/src/resources/ambientoverlay.h index 56c70066..1b03a19c 100644 --- a/src/resources/ambientoverlay.h +++ b/src/resources/ambientoverlay.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/animation.cpp b/src/resources/animation.cpp index 5721c7f0..8d7156a9 100644 --- a/src/resources/animation.cpp +++ b/src/resources/animation.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/animation.h b/src/resources/animation.h index 93e100bd..8ebebc6f 100644 --- a/src/resources/animation.h +++ b/src/resources/animation.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/buddylist.cpp b/src/resources/buddylist.cpp index 8c02735a..541acabe 100644 --- a/src/resources/buddylist.cpp +++ b/src/resources/buddylist.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/buddylist.h b/src/resources/buddylist.h index 092abc6a..40dd125d 100644 --- a/src/resources/buddylist.h +++ b/src/resources/buddylist.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/dye.cpp b/src/resources/dye.cpp index 3be105d8..fd760c3f 100644 --- a/src/resources/dye.cpp +++ b/src/resources/dye.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/dye.h b/src/resources/dye.h index 4fb8fd40..6bec8eb1 100644 --- a/src/resources/dye.h +++ b/src/resources/dye.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/image.cpp b/src/resources/image.cpp index 35b9c254..c3310849 100644 --- a/src/resources/image.cpp +++ b/src/resources/image.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/image.h b/src/resources/image.h index a2e52d3d..a0ae66c5 100644 --- a/src/resources/image.h +++ b/src/resources/image.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/imageloader.cpp b/src/resources/imageloader.cpp index a7e813d7..8ad6c5d4 100644 --- a/src/resources/imageloader.cpp +++ b/src/resources/imageloader.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/imageloader.h b/src/resources/imageloader.h index 7979fd2f..05d7a838 100644 --- a/src/resources/imageloader.h +++ b/src/resources/imageloader.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/imageset.cpp b/src/resources/imageset.cpp index b321439a..92bb3242 100644 --- a/src/resources/imageset.cpp +++ b/src/resources/imageset.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/imageset.h b/src/resources/imageset.h index 26ce99ea..f8939263 100644 --- a/src/resources/imageset.h +++ b/src/resources/imageset.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/imagewriter.cpp b/src/resources/imagewriter.cpp index 36805646..c350ac07 100644 --- a/src/resources/imagewriter.cpp +++ b/src/resources/imagewriter.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/imagewriter.h b/src/resources/imagewriter.h index 0dcc0c33..a9133846 100644 --- a/src/resources/imagewriter.h +++ b/src/resources/imagewriter.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/itemdb.cpp b/src/resources/itemdb.cpp index cb9fadab..c32c3459 100644 --- a/src/resources/itemdb.cpp +++ b/src/resources/itemdb.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/itemdb.h b/src/resources/itemdb.h index 2cc23ec9..78279f4d 100644 --- a/src/resources/itemdb.h +++ b/src/resources/itemdb.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/iteminfo.cpp b/src/resources/iteminfo.cpp index 4c04678a..2f118284 100644 --- a/src/resources/iteminfo.cpp +++ b/src/resources/iteminfo.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/iteminfo.h b/src/resources/iteminfo.h index 773fd17c..5e98d040 100644 --- a/src/resources/iteminfo.h +++ b/src/resources/iteminfo.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/mapreader.cpp b/src/resources/mapreader.cpp index 9dd1dc62..a4ec3b69 100644 --- a/src/resources/mapreader.cpp +++ b/src/resources/mapreader.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/mapreader.h b/src/resources/mapreader.h index c85e00d9..bf797690 100644 --- a/src/resources/mapreader.h +++ b/src/resources/mapreader.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/monsterdb.cpp b/src/resources/monsterdb.cpp index 4ee7b89e..c7926260 100644 --- a/src/resources/monsterdb.cpp +++ b/src/resources/monsterdb.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/monsterdb.h b/src/resources/monsterdb.h index 2e186c15..cee1390b 100644 --- a/src/resources/monsterdb.h +++ b/src/resources/monsterdb.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/monsterinfo.cpp b/src/resources/monsterinfo.cpp index faa759af..503990e7 100644 --- a/src/resources/monsterinfo.cpp +++ b/src/resources/monsterinfo.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/monsterinfo.h b/src/resources/monsterinfo.h index 8d36cc06..77130be0 100644 --- a/src/resources/monsterinfo.h +++ b/src/resources/monsterinfo.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/music.cpp b/src/resources/music.cpp index ed71d62c..ed78a541 100644 --- a/src/resources/music.cpp +++ b/src/resources/music.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/music.h b/src/resources/music.h index 322cfecd..4d2ffd29 100644 --- a/src/resources/music.h +++ b/src/resources/music.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/npcdb.cpp b/src/resources/npcdb.cpp index 0908d67d..88572481 100644 --- a/src/resources/npcdb.cpp +++ b/src/resources/npcdb.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/npcdb.h b/src/resources/npcdb.h index 1883d747..c2bd04e4 100644 --- a/src/resources/npcdb.h +++ b/src/resources/npcdb.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/resource.cpp b/src/resources/resource.cpp index 82562691..d1c3ada4 100644 --- a/src/resources/resource.cpp +++ b/src/resources/resource.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/resource.h b/src/resources/resource.h index 168fd70a..855d09b8 100644 --- a/src/resources/resource.h +++ b/src/resources/resource.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/resourcemanager.cpp b/src/resources/resourcemanager.cpp index 7f2cba1d..f193d55d 100644 --- a/src/resources/resourcemanager.cpp +++ b/src/resources/resourcemanager.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/resourcemanager.h b/src/resources/resourcemanager.h index 95519da3..4372195d 100644 --- a/src/resources/resourcemanager.h +++ b/src/resources/resourcemanager.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/soundeffect.cpp b/src/resources/soundeffect.cpp index f7b2b874..3a285730 100644 --- a/src/resources/soundeffect.cpp +++ b/src/resources/soundeffect.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/soundeffect.h b/src/resources/soundeffect.h index b9abefd7..b19142b3 100644 --- a/src/resources/soundeffect.h +++ b/src/resources/soundeffect.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/spritedef.cpp b/src/resources/spritedef.cpp index 41b1e789..e8d064d4 100644 --- a/src/resources/spritedef.cpp +++ b/src/resources/spritedef.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/resources/spritedef.h b/src/resources/spritedef.h index 033de6cd..4759ef4e 100644 --- a/src/resources/spritedef.h +++ b/src/resources/spritedef.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/serverinfo.h b/src/serverinfo.h index 4d2bb525..d3be62fa 100644 --- a/src/serverinfo.h +++ b/src/serverinfo.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/shopitem.cpp b/src/shopitem.cpp index 9888f829..3b90dfdd 100644 --- a/src/shopitem.cpp +++ b/src/shopitem.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/shopitem.h b/src/shopitem.h index f0c00ef0..7da77cdf 100644 --- a/src/shopitem.h +++ b/src/shopitem.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/simpleanimation.cpp b/src/simpleanimation.cpp index 544d02b5..17d9ce60 100644 --- a/src/simpleanimation.cpp +++ b/src/simpleanimation.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/simpleanimation.h b/src/simpleanimation.h index 577268a8..ce8832c3 100644 --- a/src/simpleanimation.h +++ b/src/simpleanimation.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/sound.cpp b/src/sound.cpp index 6d440134..78538c09 100644 --- a/src/sound.cpp +++ b/src/sound.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/sound.h b/src/sound.h index 72180607..1b47e4c7 100644 --- a/src/sound.h +++ b/src/sound.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/sprite.h b/src/sprite.h index 52825db2..321d6abe 100644 --- a/src/sprite.h +++ b/src/sprite.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/text.cpp b/src/text.cpp index 4d36b8fc..5624bc0a 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -7,8 +7,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * This program is distributed with The Mana Experiment * - * in the hope that it will be useful, * + * 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. * diff --git a/src/text.h b/src/text.h index 173a5686..c2ec4154 100644 --- a/src/text.h +++ b/src/text.h @@ -7,8 +7,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * This program is distributed with The Mana Experiment * - * in the hope that it will be useful, * + * 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. * diff --git a/src/textmanager.cpp b/src/textmanager.cpp index cb5d0bf2..7c5d2713 100644 --- a/src/textmanager.cpp +++ b/src/textmanager.cpp @@ -7,8 +7,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * This program is distributed with The Mana Experiment * - * in the hope that it will be useful, * + * 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. * diff --git a/src/textmanager.h b/src/textmanager.h index 5b21ba81..6497c335 100644 --- a/src/textmanager.h +++ b/src/textmanager.h @@ -7,8 +7,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * This program is distributed with The Mana Experiment * - * in the hope that it will be useful, * + * 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. * diff --git a/src/textparticle.cpp b/src/textparticle.cpp index ed9d5717..7e329b4e 100644 --- a/src/textparticle.cpp +++ b/src/textparticle.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2006 The Mana World Development Team + * Copyright (C) 2006 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/textparticle.h b/src/textparticle.h index 039c18d7..bc7cd88c 100644 --- a/src/textparticle.h +++ b/src/textparticle.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2006 The Mana World Development Team + * Copyright (C) 2006 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/tileset.h b/src/tileset.h index fb855831..040f7ef8 100644 --- a/src/tileset.h +++ b/src/tileset.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/utils/dtor.h b/src/utils/dtor.h index 514ea9e7..399cb8c2 100644 --- a/src/utils/dtor.h +++ b/src/utils/dtor.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/utils/gettext.h b/src/utils/gettext.h index 0cd9114b..74502bb0 100644 --- a/src/utils/gettext.h +++ b/src/utils/gettext.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/utils/mutex.h b/src/utils/mutex.h index 62c6b4e1..31e43e33 100644 --- a/src/utils/mutex.h +++ b/src/utils/mutex.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2008 The Mana World Development Team + * Copyright (C) 2008 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/utils/strprintf.cpp b/src/utils/strprintf.cpp index c532dd0d..07fb3508 100644 --- a/src/utils/strprintf.cpp +++ b/src/utils/strprintf.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/utils/strprintf.h b/src/utils/strprintf.h index 382ab6e0..98ef5065 100644 --- a/src/utils/strprintf.h +++ b/src/utils/strprintf.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/utils/tostring.h b/src/utils/tostring.h index d2dd941a..0c3b600f 100644 --- a/src/utils/tostring.h +++ b/src/utils/tostring.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/utils/trim.h b/src/utils/trim.h index a7c40ca2..9d0d5600 100644 --- a/src/utils/trim.h +++ b/src/utils/trim.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/utils/xml.cpp b/src/utils/xml.cpp index db78d08c..24058558 100644 --- a/src/utils/xml.cpp +++ b/src/utils/xml.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/utils/xml.h b/src/utils/xml.h index 403fe6d9..6af5f1ca 100644 --- a/src/utils/xml.h +++ b/src/utils/xml.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/vector.cpp b/src/vector.cpp index 7d5f055a..9b573e88 100644 --- a/src/vector.cpp +++ b/src/vector.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/vector.h b/src/vector.h index f32b201a..cd477301 100644 --- a/src/vector.h +++ b/src/vector.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2007 The Mana World Development Team + * Copyright (C) 2007 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/tools/tmxcopy/main.cpp b/tools/tmxcopy/main.cpp index 92a69c54..ab67afe6 100644 --- a/tools/tmxcopy/main.cpp +++ b/tools/tmxcopy/main.cpp @@ -1,20 +1,19 @@ /* * TMXCopy - * Copyright 2007 Philipp Sehmisch + * Copyright (C) 2007 Philipp Sehmisch * - * - * TMXCopy is free software; you can redistribute it and/or modify + * 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. * - * TMXCopy is distributed in the hope that it will be useful, + * 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 TMXCopy; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/tools/tmxcopy/map.cpp b/tools/tmxcopy/map.cpp index b554aac2..92e661fd 100644 --- a/tools/tmxcopy/map.cpp +++ b/tools/tmxcopy/map.cpp @@ -1,20 +1,19 @@ /* * TMXCopy - * Copyright 2007 Philipp Sehmisch + * Copyright (C) 2007 Philipp Sehmisch * - * - * TMXCopy is free software; you can redistribute it and/or modify + * 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. * - * TMXCopy is distributed in the hope that it will be useful, + * 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 TMXCopy; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/tools/tmxcopy/tostring.h b/tools/tmxcopy/tostring.h index d2dd941a..0c3b600f 100644 --- a/tools/tmxcopy/tostring.h +++ b/tools/tmxcopy/tostring.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/tools/tmxcopy/xmlutils.cpp b/tools/tmxcopy/xmlutils.cpp index 8b1b62cf..54dd0869 100644 --- a/tools/tmxcopy/xmlutils.cpp +++ b/tools/tmxcopy/xmlutils.cpp @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/tools/tmxcopy/xmlutils.h b/tools/tmxcopy/xmlutils.h index 60e8f3cd..9a1f7dab 100644 --- a/tools/tmxcopy/xmlutils.h +++ b/tools/tmxcopy/xmlutils.h @@ -1,21 +1,21 @@ /* * The Mana World - * Copyright 2004 The Mana World Development Team + * Copyright (C) 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 + * 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. * - * The Mana World is distributed in the hope that it will be useful, + * 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 The Mana World; if not, write to the Free Software + * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -- cgit v1.2.3-70-g09d2