diff --git a/pandora_console/extras/mr/49.sql b/pandora_console/extras/mr/49.sql index 68de9070ed..28178ca5fe 100644 --- a/pandora_console/extras/mr/49.sql +++ b/pandora_console/extras/mr/49.sql @@ -2,5 +2,6 @@ START TRANSACTION; UPDATE `tconfig` set value = 'Lato-Regular.ttf' WHERE token LIKE 'custom_report_front_font'; UPDATE `tconfig` set value = 'Lato-Regular.ttf' WHERE token LIKE 'fontpath'; +UPDATE `tlanguage` SET `name` = 'Deutsch' WHERE `id_language` = 'de'; COMMIT; diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 6c130bd6a5..e506d2f688 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -4078,3 +4078,5 @@ CREATE TABLE IF NOT EXISTS `talert_execution_queue` ( `utimestamp` bigint(20) NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +UPDATE `tlanguage` SET `name` = 'Deutsch' WHERE `id_language` = 'de'; \ No newline at end of file diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql index 738eb1f5f6..3495f98816 100644 --- a/pandora_console/pandoradb_data.sql +++ b/pandora_console/pandoradb_data.sql @@ -202,7 +202,7 @@ INSERT INTO `tlanguage` VALUES ('en_GB','English (UK)'); INSERT INTO `tlanguage` VALUES ('es','Español'); INSERT INTO `tlanguage` VALUES ('ar','العربية'); INSERT INTO `tlanguage` VALUES ('cs','Česky'); -INSERT INTO `tlanguage` VALUES ('de','Deutch'); +INSERT INTO `tlanguage` VALUES ('de','Deutsch'); INSERT INTO `tlanguage` VALUES ('el','Ελληνικά'); INSERT INTO `tlanguage` VALUES ('fr','Français'); INSERT INTO `tlanguage` VALUES ('it','Italiano');