diff options
author | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-10-19 12:57:33 +0000 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-10-19 12:57:33 +0000 |
commit | c3e36e443698b001e98219e48cc97e259ada0a1d (patch) | |
tree | d0224b1d52691eb4b27daaff4d556990bda69e81 /src/gui/sell.cpp | |
parent | 4ea68b6102053d591516ff3bc83512c71e2c8ce9 (diff) | |
download | mana-c3e36e443698b001e98219e48cc97e259ada0a1d.tar.gz mana-c3e36e443698b001e98219e48cc97e259ada0a1d.tar.bz2 mana-c3e36e443698b001e98219e48cc97e259ada0a1d.tar.xz mana-c3e36e443698b001e98219e48cc97e259ada0a1d.zip |
Marked buy and sell dialog boxes as translatable.
Diffstat (limited to 'src/gui/sell.cpp')
-rw-r--r-- | src/gui/sell.cpp | 38 |
1 files changed, 21 insertions, 17 deletions
diff --git a/src/gui/sell.cpp b/src/gui/sell.cpp index 5f1011c1..ff6fa17f 100644 --- a/src/gui/sell.cpp +++ b/src/gui/sell.cpp @@ -38,10 +38,11 @@ #include "../net/gameserver/player.h" #include "../resources/itemdb.h" #include "../resources/iteminfo.h" -#include "../utils/tostring.h" +#include "../utils/gettext.h" +#include "../utils/strprintf.h" SellDialog::SellDialog(): - Window("Sell"), + Window(_("Sell")), mMaxItems(0), mAmountItems(0) { setResizable(true); @@ -55,13 +56,13 @@ SellDialog::SellDialog(): mScrollArea = new ScrollArea(mShopItemList); mSlider = new Slider(1.0); mQuantityLabel = new gcn::Label("0"); - mMoneyLabel = new gcn::Label("Money: 0 GP / Total: 0 GP"); + mMoneyLabel = new gcn::Label(strprintf(_("Price: %d GP / Total: %d GP"), 0, 0)); mIncreaseButton = new Button("+", "+", this); mDecreaseButton = new Button("-", "-", this); - mSellButton = new Button("Sell", "sell", this); - mQuitButton = new Button("Quit", "quit", this); - mItemDescLabel = new gcn::Label("Description:"); - mItemEffectLabel = new gcn::Label("Effect:"); + mSellButton = new Button(_("Sell"), "sell", this); + mQuitButton = new Button(_("Quit"), "quit", this); + mItemDescLabel = new gcn::Label(strprintf(_("Description: %s"), "")); + mItemEffectLabel = new gcn::Label(strprintf(_("Effect: %s"), "")); mIncreaseButton->setSize(20, 20); mDecreaseButton->setSize(20, 20); @@ -249,6 +250,13 @@ SellDialog::updateButtonsAndLabels() if (selectedItem > -1) { + const ItemInfo &info = ItemDB::get(mShopItems->at(selectedItem).id); + + mItemDescLabel->setCaption + (strprintf(_("Description: %s"), info.getDescription().c_str())); + mItemEffectLabel->setCaption + (strprintf(_("Effect: %s"), info.getEffect().c_str())); + mMaxItems = mShopItems->at(selectedItem).quantity; if (mAmountItems > mMaxItems) { @@ -256,17 +264,13 @@ SellDialog::updateButtonsAndLabels() } income = mAmountItems * mShopItems->at(selectedItem).price; - - const ItemInfo &info = ItemDB::get(mShopItems->at(selectedItem).id); - mItemDescLabel->setCaption("Description: " + info.getDescription()); - mItemEffectLabel->setCaption("Effect: " + info.getEffect()); } else { + mItemDescLabel->setCaption(strprintf(_("Description: %s"), "")); + mItemEffectLabel->setCaption(strprintf(_("Effect: %s"), "")); mMaxItems = 0; mAmountItems = 0; - mItemDescLabel->setCaption("Description:"); - mItemEffectLabel->setCaption("Effect:"); } // Update Buttons and slider @@ -276,8 +280,8 @@ SellDialog::updateButtonsAndLabels() mSlider->setEnabled(mMaxItems > 1); // Update the quantity and money labels - mQuantityLabel->setCaption( - toString(mAmountItems) + " / " + toString(mMaxItems)); - mMoneyLabel->setCaption("Money: " + toString(income) + " GP / Total: " - + toString(mPlayerMoney + income) + " GP"); + mQuantityLabel->setCaption(strprintf("%d / %d", mAmountItems, mMaxItems)); + mMoneyLabel->setCaption + (strprintf(_("Price: %d GP / Total: %d GP"), + income, mPlayerMoney + income)); } |