diff --git a/conf/e2/locales.xml b/conf/e2/locales.xml
index f71525343..7a31bbc17 100644
--- a/conf/e2/locales.xml
+++ b/conf/e2/locales.xml
@@ -3,6 +3,7 @@
+
diff --git a/conf/e2/config.xml b/conf/e2/rules.xml
similarity index 75%
rename from conf/e2/config.xml
rename to conf/e2/rules.xml
index 56c622d04..8d0b01b27 100644
--- a/conf/e2/config.xml
+++ b/conf/e2/rules.xml
@@ -1,11 +1,5 @@
-
-
-
-
-
-
@@ -26,7 +20,6 @@
-
@@ -46,10 +39,4 @@
-
-
-
-
-
-
diff --git a/conf/e3/locales.xml b/conf/e3/locales.xml
new file mode 100644
index 000000000..2d94bf202
--- /dev/null
+++ b/conf/e3/locales.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/conf/e3/config.xml b/conf/e3/rules.xml
similarity index 84%
rename from conf/e3/config.xml
rename to conf/e3/rules.xml
index ac05d5a5a..421b54d7a 100644
--- a/conf/e3/config.xml
+++ b/conf/e3/rules.xml
@@ -1,8 +1,5 @@
-
-
-
@@ -15,8 +12,6 @@
-
-
diff --git a/scripts/eressea/xmlconf.lua b/scripts/eressea/xmlconf.lua
index 584f8d3e2..84f29eceb 100644
--- a/scripts/eressea/xmlconf.lua
+++ b/scripts/eressea/xmlconf.lua
@@ -4,7 +4,8 @@ if config.install then
end
if config.rules then
local rules = config.rules .. '/'
- assert(0 == read_xml(confdir .. rules .. 'config.xml', confdir .. rules .. 'catalog.xml'), "could not load XML data, did you compile with LIBXML2 ?")
assert(0 == eressea.config.read(rules .. 'config.json', confdir), "could not read JSON data")
+ assert(0 == read_xml(confdir .. rules .. 'rules.xml', confdir .. rules .. 'catalog.xml'), "could not load XML data, did you compile with LIBXML2 ?")
+ assert(0 == read_xml(confdir .. rules .. 'locales.xml', confdir .. rules .. 'catalog.xml'), "could not load XML data, did you compile with LIBXML2 ?")
end
eressea.game.reset()