DB/Locales: Correct wrong translation and add a missing esES/esMX item locale

closes #29803 by Odyssey
This commit is contained in:
Aokromes
2024-03-14 19:54:13 +01:00
committed by GitHub
parent 767e9f3046
commit f46f617c33

View File

@@ -0,0 +1,7 @@
-- Update wrong translation for 'Scroll of enchant shield: defense'
UPDATE `item_template_locale` SET `Name`='Pergamino de Encantar escudo: defensa' WHERE `ID`=38954 AND `locale` IN ('esES','esMX');
-- Add missing locale for 'Scroll of enchant shield: greater intellect'
DELETE FROM `item_template_locale` WHERE `ID`=44455 AND `locale` IN ('esES','esMX');
INSERT INTO `item_template_locale` (`ID`, `locale`, `Name`, `Description`, `VerifiedBuild`) VALUES
(44455, 'esES', 'Pergamino de Encantar escudo: intelecto superior', '', -12340),
(44455, 'esMX', 'Pergamino de Encantar escudo: intelecto superior', '', -12340);