From dd79e33fa7be54a8eb189634f02e52eca57a68c7 Mon Sep 17 00:00:00 2001 From: Christian Veigl Date: Fri, 17 Aug 2012 14:25:21 +0000 Subject: [PATCH] add a couple of language strings --- db_scripts/diff/10332.down | 6 ++++++ db_scripts/diff/10332.up | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100644 db_scripts/diff/10332.down create mode 100644 db_scripts/diff/10332.up diff --git a/db_scripts/diff/10332.down b/db_scripts/diff/10332.down new file mode 100644 index 00000000..726d6377 --- /dev/null +++ b/db_scripts/diff/10332.down @@ -0,0 +1,6 @@ +USE provisioning; + +DELETE FROM language_strings WHERE code in ( + 'Server.Voip.SoundFileExists', + 'Server.System.WaveTranscodeFailed' +); diff --git a/db_scripts/diff/10332.up b/db_scripts/diff/10332.up new file mode 100644 index 00000000..a2400fec --- /dev/null +++ b/db_scripts/diff/10332.up @@ -0,0 +1,11 @@ +USE provisioning; + +INSERT INTO language_strings (code, language, string) VALUES ('Server.Voip.SoundFileExists', 'en', 'Soundfile already exists'); +INSERT INTO language_strings (code, language, string) VALUES ('Server.Voip.SoundFileExists', 'de', 'Soundfile existiert bereits'); +INSERT INTO language_strings (code, language, string) VALUES ('Server.Voip.SoundFileExists', 'fr', 'Soundfile already exists'); +INSERT INTO language_strings (code, language, string) VALUES ('Server.Voip.SoundFileExists', 'es', 'Soundfile already exists'); + +INSERT INTO language_strings (code, language, string) VALUES ('Server.System.WaveTranscodeFailed', 'en', 'Failed to transcode sound file'); +INSERT INTO language_strings (code, language, string) VALUES ('Server.System.WaveTranscodeFailed', 'de', 'Transkodieren der Sounddatei fehlgeschlagen'); +INSERT INTO language_strings (code, language, string) VALUES ('Server.System.WaveTranscodeFailed', 'es', 'Failed to transcode sound file'); +INSERT INTO language_strings (code, language, string) VALUES ('Server.System.WaveTranscodeFailed', 'fr', 'Failed to transcode sound file');