Merge branch 'ent-7587-error-nombre-idioma-aleman' into 'develop'
Fix german language misspell See merge request artica/pandorafms!4298
This commit is contained in:
commit
b30994b8a2
|
@ -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;
|
||||
|
|
|
@ -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';
|
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue