diff options
author | Kess Vargavind <vargavind@gmail.com> | 2009-05-21 09:38:06 +0200 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2009-05-21 11:03:37 +0100 |
commit | 9712489ef67f95d6a5fa1fc3102bb7c4ee6a1f59 (patch) | |
tree | c6e13d9379916588114d77ab2aae498b76f82078 /src/gui/storagewindow.cpp | |
parent | 2dad08e4e8e199c84da6a6f2f5289c8c0e40fc81 (diff) | |
download | mana-9712489ef67f95d6a5fa1fc3102bb7c4ee6a1f59.tar.gz mana-9712489ef67f95d6a5fa1fc3102bb7c4ee6a1f59.tar.bz2 mana-9712489ef67f95d6a5fa1fc3102bb7c4ee6a1f59.tar.xz mana-9712489ef67f95d6a5fa1fc3102bb7c4ee6a1f59.zip |
Fixed a few strings for better translation
Just a few notes that would help us translators immensly:
* Please do not split one sentence into several strings
* Please try to refrain from inserting extra spaces into the strings
Diffstat (limited to 'src/gui/storagewindow.cpp')
-rw-r--r-- | src/gui/storagewindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/storagewindow.cpp b/src/gui/storagewindow.cpp index 593a49a3..91224359 100644 --- a/src/gui/storagewindow.cpp +++ b/src/gui/storagewindow.cpp @@ -75,7 +75,7 @@ StorageWindow::StorageWindow(int invSize): mUsedSlots = player_node->getStorage()->getNumberOfSlotsUsed(); - mSlotsLabel = new Label(_("Slots: ")); + mSlotsLabel = new Label(_("Slots:")); mSlotsBar = new ProgressBar(0.0f, 100, 20, gcn::Color(225, 200, 25)); mSlotsBar->setText(strprintf("%d/%d", mUsedSlots, mMaxSlots)); |