diff options
author | Kess Vargavind <vargavind@gmail.com> | 2009-07-27 17:55:00 +0200 |
---|---|---|
committer | Kess Vargavind <vargavind@gmail.com> | 2009-07-27 17:55:00 +0200 |
commit | 99648c2c8693de68ebe0449e139413864e5dd6f1 (patch) | |
tree | c3094d9da96940cc1a5f4d48344ba2c934d94df8 /src/resources/itemdb.cpp | |
parent | fa1a3ab995f037ddf33817a1b2ce143130a457f8 (diff) | |
download | mana-99648c2c8693de68ebe0449e139413864e5dd6f1.tar.gz mana-99648c2c8693de68ebe0449e139413864e5dd6f1.tar.bz2 mana-99648c2c8693de68ebe0449e139413864e5dd6f1.tar.xz mana-99648c2c8693de68ebe0449e139413864e5dd6f1.zip |
Merge of two gettext strings
As reported by swimmy on the forums
Diffstat (limited to 'src/resources/itemdb.cpp')
-rw-r--r-- | src/resources/itemdb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/itemdb.cpp b/src/resources/itemdb.cpp index b25f754f..900e3547 100644 --- a/src/resources/itemdb.cpp +++ b/src/resources/itemdb.cpp @@ -153,7 +153,7 @@ void ItemDB::load() ItemInfo *itemInfo = new ItemInfo; itemInfo->setId(id); itemInfo->setImageName(image); - itemInfo->setName(name.empty() ? _("Unnamed") : name); + itemInfo->setName(name.empty() ? _("unnamed") : name); itemInfo->setDescription(description); itemInfo->setType(itemTypeFromString(typeStr)); itemInfo->setView(view); |