From d8b3df09d9b54efb7f76fc9e9b46bfca45b27eae Mon Sep 17 00:00:00 2001 From: mpfans Date: Sat, 4 Sep 2021 17:39:33 +0800 Subject: [PATCH] fix(DB/translation): add missing Chinese translations (#7670) add Rusty Prison Key(id 43650) Chinese translation add Shadowforge Key(id 11000) Chinese translation add Heroic Key to the Focusing Iris(id 44581) Chinese translation add Key to the Focusing Iris(id 44582) Chinese translation --- .../rev_1630456715748683765.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1630456715748683765.sql diff --git a/data/sql/updates/pending_db_world/rev_1630456715748683765.sql b/data/sql/updates/pending_db_world/rev_1630456715748683765.sql new file mode 100644 index 000000000..7a29c2dc9 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1630456715748683765.sql @@ -0,0 +1,17 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1630456715748683765'); + +-- add `Rusty Prison Key`(id 43650) Chinese translation +DELETE from `item_template_locale` where `ID` = 43650 AND `locale` = 'zhCN'; +INSERT INTO `item_template_locale` (`ID`,`locale`, `Name`, `Description`) VALUES ('43650','zhCN', '生锈的监狱钥匙', '看起来像一把打开水下宝箱的钥匙。。。'); + +-- add `Shadowforge Key`(id 11000) Chinese translation +DELETE from `item_template_locale` where `ID` = 11000 AND `locale` = 'zhCN'; +INSERT INTO `item_template_locale` (`ID`,`locale`, `Name`, `Description`) VALUES ('11000','zhCN', '暗炉钥匙', '通往黑石深渊的钥匙。。。'); + +-- add `Heroic Key to the Focusing Iris`(id 44581) Chinese translation +DELETE from `item_template_locale` where `ID` = 44581 AND `locale` = 'zhCN'; +INSERT INTO `item_template_locale` (`ID`, `locale`, `Name`, `Description`, `VerifiedBuild`) VALUES ('44581', 'zhCN', '英雄聚焦之虹的钥匙', '', '15050'); + +-- add `Key to the Focusing Iris`(id 44582) Chinese translation +DELETE from `item_template_locale` where `ID` = 44582 AND `locale` = 'zhCN'; +INSERT INTO `item_template_locale` (`ID`, `locale`, `Name`, `Description`, `VerifiedBuild`) VALUES ('44582', 'zhCN', '聚焦之虹的钥匙', '', '15050');