summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/popups/popupmenu.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp
index 1cd774dbe..56b478125 100644
--- a/src/gui/popups/popupmenu.cpp
+++ b/src/gui/popups/popupmenu.cpp
@@ -1803,20 +1803,20 @@ void PopupMenu::showPopup(Window *const parent, const int x, const int y,
{
// TRANSLATORS: popup menu item
// TRANSLATORS: add 10 item amount to storage
- mBrowserBox->addRow("/invtostorage10 'INVINDEX'",
+ mBrowserBox->addRow("/invtostorage 'INVINDEX' 10",
_("Store 10"));
}
// TRANSLATORS: popup menu item
// TRANSLATORS: add half item amount to storage
- mBrowserBox->addRow("/invtostoragehalf 'INVINDEX'",
+ mBrowserBox->addRow("/invtostorage 'INVINDEX' /",
_("Store half"));
// TRANSLATORS: popup menu item
// TRANSLATORS: add all except one item amount to storage
- mBrowserBox->addRow("/invtostorageall1 'INVINDEX'",
+ mBrowserBox->addRow("/invtostorage 'INVINDEX' -1",
_("Store all-1"));
// TRANSLATORS: popup menu item
// TRANSLATORS: add all item amount to storage
- mBrowserBox->addRow("/invtostorageall 'INVINDEX'",
+ mBrowserBox->addRow("/invtostorage 'INVINDEX' all",
_("Store all"));
}
mBrowserBox->addRow("##3---");