Index: /controller/wpsg_AdminController.class.php
===================================================================
--- /controller/wpsg_AdminController.class.php	(revision 7148)
+++ /controller/wpsg_AdminController.class.php	(revision 7149)
@@ -1468,7 +1468,4 @@
 			foreach ($this->shop->arPayment as $p_id => $p) $this->shop->view['arPayment'][$p['id']] = $p['name'];
 
-			$this->shop->view['customerdatadelete'] = array();
-			foreach ($this->shop->customerdatadelete as $d_id => $d) $this->shop->view['customerdatadelete'][$d['id']] = $d['name'];
-
 			$this->shop->view['arLander'] = $this->db->fetchAssocField("SELECT L.`id`, L.`name` FROM `".WPSG_TBL_LAND."` AS L ORDER BY `name` ASC ", "id", "name");
 
Index: /controller/wpsg_ShopController.class.php
===================================================================
--- /controller/wpsg_ShopController.class.php	(revision 7148)
+++ /controller/wpsg_ShopController.class.php	(revision 7149)
@@ -658,4 +658,23 @@
 		} // public function canDisplayPrice()
 
+        /**
+         * Wordpress "init" Hook
+         */
+        public function init() {
+
+            $locale = apply_filters('plugin_locale', get_locale(), 'wpsg');
+            
+            if ($loaded = load_textdomain('wpsg', trailingslashit(WP_LANG_DIR).'wpsg/wpsg-'.$locale .'.mo')) {
+                
+                return $loaded;
+                
+            } else {
+                
+                load_plugin_textdomain('wpsg', false, WPSG_FOLDERNAME.'/lang/');
+                
+            }
+
+        } // public function init()
+        
 		/**
 		 * Initiiert den Shop
@@ -669,5 +688,5 @@
 
 				// Backend lÃ€uft mit SSL
-
+                
 
 			}
@@ -3082,7 +3101,4 @@
 
             }
-
-            load_plugin_textdomain('wpsg', false, WPSG_FOLDERNAME.'/lang/');
-            //load_plugin_textdomain('wpsg', false, dirname(plugin_basename(__FILE__)).'/../lang/');
 
 		} // public function wp_load()
Index: /wpshopgermany.php
===================================================================
--- /wpshopgermany.php	(revision 7148)
+++ /wpshopgermany.php	(revision 7149)
@@ -241,4 +241,5 @@
 	}
 
+	add_action('init', [$GLOBALS['wpsg_sc'], 'init']);
 	add_action('widgets_init', array($GLOBALS['wpsg_sc'], 'widget_init'));
 	
