mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-28 08:06:23 +00:00
fix(DB/translation): some Chinese translation (#11696)
* fix(DB/translation): some Chinese translation * update Wintergrasp battle announce * object * item * Update zhCN.sql * Update zhCN.sql * Update zhCN.sql * Update zhCN.sql
This commit is contained in:
16
data/sql/updates/pending_db_world/zhCN.sql
Normal file
16
data/sql/updates/pending_db_world/zhCN.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
-- update Wintergrasp battle announce Chinese translation
|
||||
UPDATE `acore_string` SET `locale_zhCN` = '|cffff0000[冬拥湖]:|r 战斗开始了!|r' WHERE `entry` = 20078;
|
||||
|
||||
-- add object's Chinese translation
|
||||
DELETE from `gameobject_template_locale` where `entry` IN (175226,175230,175233,176191,176197,176198) AND `locale` = 'zhCN';
|
||||
INSERT INTO `gameobject_template_locale` (`entry`, `locale`, `name`, `castBarCaption`, `VerifiedBuild`) VALUES
|
||||
(175226, 'zhCN', '搁浅的海洋生物', '', 0),
|
||||
(175230, 'zhCN', '搁浅的海洋生物', '', 0),
|
||||
(175233, 'zhCN', '搁浅的海洋生物', '', 0),
|
||||
(176191, 'zhCN', '搁浅的海龟', '', 0),
|
||||
(176197, 'zhCN', '搁浅的海龟', '', 0),
|
||||
(176198, 'zhCN', '搁浅的海龟', '', 0);
|
||||
|
||||
-- add an item's Chinese translation
|
||||
DELETE from `item_template_locale` where `ID` = 27808 AND `locale` = 'zhCN';
|
||||
INSERT INTO `item_template_locale` (`ID`, `locale`, `Name`, `Description`, `VerifiedBuild`) VALUES ( 27808, 'zhCN', '超级蹦床4000型的钥匙', '钥匙上刻有一行小字:瓦萨特不对使用超级蹦床4000型所造成的任何后果负责。', -12340);
|
||||
Reference in New Issue
Block a user