diff options
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index abdc92723..b4477f6d3 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -251,10 +251,19 @@ std::string Inventory::getName() const { case INVENTORY: default: + { + // TRANSLATORS: inventory type name return N_("Inventory"); + } case STORAGE: + { + // TRANSLATORS: inventory type name return N_("Storage"); + } case CART: + { + // TRANSLATORS: inventory type name return N_("Cart"); + } } } |