If a key does not exist in any translation, it returns the key instead of empty string.

This commit is contained in:
Wyatt Olson
2010-09-11 20:55:28 -06:00
parent 815d8066cf
commit 3d566919b9

View File

@@ -97,5 +97,5 @@ Glib::ustring MultiLangMgr::getStr (std::string key) {
else if (fallBack) else if (fallBack)
return fallBack->getStr (key); return fallBack->getStr (key);
else else
return ""; return key;
} }