diff options
author | Duarte Duarte <dnpd.dd@gmail.com> | 2014-09-05 21:52:49 +0100 |
---|---|---|
committer | Duarte Duarte <dnpd.dd@gmail.com> | 2014-09-05 21:52:49 +0100 |
commit | 88045921a45498ed986f4d2ff52f7379e384e655 (patch) | |
tree | 8c672949b33fbeedc742c97cc6bb62228a39ad12 /sql | |
parent | 36f7cfbd04495db96cb42a440a642b35a17e8c17 (diff) | |
parent | 5efd2579e5666a5330dd1f58028f3c30695746a8 (diff) |
Merge pull request #13016 from Odyssey/pinfo
Scripts/Commands: Move cs_misc.cpp command output hardcoded strings to DB
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/2014_XX_XX_XX_world_trinity_string.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/2014_XX_XX_XX_world_trinity_string.sql b/sql/updates/world/2014_XX_XX_XX_world_trinity_string.sql new file mode 100644 index 00000000000..172a4bdc381 --- /dev/null +++ b/sql/updates/world/2014_XX_XX_XX_world_trinity_string.sql @@ -0,0 +1,11 @@ +-- Move cs_misc command output hardcoded strings to DB so they can be localized too
+DELETE FROM `trinity_string` WHERE `entry` IN (5030,5035,5039,5040,5041,5042,5043,5044);
+INSERT INTO `trinity_string` (`entry`, `content_default`) VALUES
+(5030, '<unauthorized>'),
+(5035, 'No reason'),
+(5039, 'Console'),
+(5040, 'Character'),
+(5041, 'Permanently'),
+(5042, 'You are outdoors'),
+(5043, 'You are indoors'),
+(5044, 'no VMAP available for area info');
|