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');