summaryrefslogtreecommitdiff
path: root/src/resources/monsterdb.cpp
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2009-01-17 17:50:11 -0700
committerIra Rice <irarice@gmail.com>2009-01-17 17:50:11 -0700
commit7398e19f1bbf44ee732b6739f6620cdcb6c3b554 (patch)
tree49c492aa0b88dc2f59fae76288388ea643a30bc8 /src/resources/monsterdb.cpp
parent1ac350cb425249f37961206a04427e084d2fa833 (diff)
downloadmana-client-7398e19f1bbf44ee732b6739f6620cdcb6c3b554.tar.gz
mana-client-7398e19f1bbf44ee732b6739f6620cdcb6c3b554.tar.bz2
mana-client-7398e19f1bbf44ee732b6739f6620cdcb6c3b554.tar.xz
mana-client-7398e19f1bbf44ee732b6739f6620cdcb6c3b554.zip
Added a few XML files for "translation". Idea obtained from IchigoBlack,
where these "translation" strings can be used to tell the client to use a separate XML file than the English one, so that item descriptions, monster names, etc. which are obtained from updates can be translated as well. Ex. instead of pointing to items.xml for Spanish, tell the client to translate that string to items.es.xml, or for monsters.xml, tell it to point to monsters.zh.xml for Chinese. Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/resources/monsterdb.cpp')
-rw-r--r--src/resources/monsterdb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/monsterdb.cpp b/src/resources/monsterdb.cpp
index 92009826..4ee7b89e 100644
--- a/src/resources/monsterdb.cpp
+++ b/src/resources/monsterdb.cpp
@@ -45,7 +45,7 @@ void MonsterDB::load()
logger->log(_("Initializing monster database..."));
- XML::Document doc("monsters.xml");
+ XML::Document doc(_("monsters.xml"));
xmlNodePtr rootNode = doc.rootNode();
if (!rootNode || !xmlStrEqual(rootNode->name, BAD_CAST "monsters"))