From 3880cf09ea5e974c75b5f8678bfcc7e170b32f44 Mon Sep 17 00:00:00 2001 From: Calvo Date: Wed, 14 Jul 2021 18:48:41 +0200 Subject: [PATCH] Fix german language misspell --- pandora_console/extras/mr/51.sql | 5 +++++ .../extras/pandoradb_migrate_6.0_to_7.0.mysql.sql | 2 ++ pandora_console/pandoradb_data.sql | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 pandora_console/extras/mr/51.sql diff --git a/pandora_console/extras/mr/51.sql b/pandora_console/extras/mr/51.sql new file mode 100644 index 0000000000..c0b7f5c92e --- /dev/null +++ b/pandora_console/extras/mr/51.sql @@ -0,0 +1,5 @@ +START TRANSACTION; + +UPDATE `tlanguage` SET `name` = 'Deutsch' WHERE `id_language` = 'de'; + +COMMIT ; \ No newline at end of file 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 598cf2381e..09b459ad85 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 @@ -4059,3 +4059,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 74947b3f42..11e9bcf7ba 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');