diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-05-03 12:35:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-05-03 12:51:43 +0300 |
commit | 9510979d65738fb03b2c48425fa59984c2a4b938 (patch) | |
tree | d546c5e932da966d4bddcebb5ae9a0f6f4820881 /src/inventory.cpp | |
parent | a7c723b681ddefdcaa84cb9b16681c65818d7110 (diff) | |
download | plus-9510979d65738fb03b2c48425fa59984c2a4b938.tar.gz plus-9510979d65738fb03b2c48425fa59984c2a4b938.tar.bz2 plus-9510979d65738fb03b2c48425fa59984c2a4b938.tar.xz plus-9510979d65738fb03b2c48425fa59984c2a4b938.zip |
add comments for translators.
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"); + } } } |