diff --git a/sql/qt/pgsql/convert_locale_string_2_text.sql b/sql/qt/pgsql/convert_locale_string_2_text.sql index 6aafce5..5734fe0 100644 --- a/sql/qt/pgsql/convert_locale_string_2_text.sql +++ b/sql/qt/pgsql/convert_locale_string_2_text.sql @@ -18,6 +18,8 @@ INSERT INTO system.text(id,text,lang) SELECT id, "deDE" , 'deDE' FROM system.locale_string WHERE category = 117; INSERT INTO system.text(id,text,lang) SELECT id, "deDE" , 'deDE' FROM system.locale_string WHERE category = 118; +INSERT INTO system.text(id,text,lang) + SELECT id, "deDE" , 'deDE' FROM system.locale_string WHERE category = 119; INSERT INTO system.text(id,text,lang) SELECT id, "deDE" , 'deDE' FROM system.locale_string WHERE category = 120; INSERT INTO system.text(id,text,lang) @@ -63,6 +65,8 @@ INSERT INTO system.text(id,text,lang) SELECT id, "enUS" , 'enUS' FROM system.locale_string WHERE category = 117; INSERT INTO system.text(id,text,lang) SELECT id, "enUS" , 'enUS' FROM system.locale_string WHERE category = 118; +INSERT INTO system.text(id,text,lang) + SELECT id, "enUS" , 'enUS' FROM system.locale_string WHERE category = 119; INSERT INTO system.text(id,text,lang) SELECT id, "enUS" , 'enUS' FROM system.locale_string WHERE category = 120; INSERT INTO system.text(id,text,lang) diff --git a/sql/qt/pgsql/data/system_text.sql b/sql/qt/pgsql/data/system_text.sql index abc2c84..c726b8d 100644 --- a/sql/qt/pgsql/data/system_text.sql +++ b/sql/qt/pgsql/data/system_text.sql @@ -93,6 +93,14 @@ INSERT INTO system.text ("id", "lang", "text", "author", "author_edit", "time_create", "time_edit") VALUES ('basic_email_wrong', 'enUS', 'Invalid EMail!', 0, 0, '2015-04-18 13:15:58', '0000-00-00 00:00:00'); INSERT INTO system.text ("id", "lang", "text", "author", "author_edit", "time_create", "time_edit") VALUES ('basic_email_wrong', 'frFR', 'Adresse courriel non valide!', 3, 3, '2015-04-20 16:23:48', '2015-04-20 16:23:48'); INSERT INTO system.text_tag ("id", "tag") VALUES ('basic_email_wrong', 'basic'); + INSERT INTO system.text_tag ("id", "tag") VALUES ('basic_email_wrong', 'sai_login'); + + DELETE FROM system.text WHERE id = 'basic_email_miss'; + DELETE FROM system.text_tag WHERE id = 'basic_email_miss'; + INSERT INTO system.text ("id", "lang", "text", "author", "author_edit", "time_create", "time_edit") VALUES ('basic_email_miss', 'deDE', 'EMail fehlt!', 0, 2, '2015-04-18 13:15:58', '2015-04-18 13:15:58'); + INSERT INTO system.text ("id", "lang", "text", "author", "author_edit", "time_create", "time_edit") VALUES ('basic_email_miss', 'enUS', 'EMail missing!', 0, 0, '2015-04-18 13:15:58', '0000-00-00 00:00:00'); + INSERT INTO system.text_tag ("id", "tag") VALUES ('basic_email_miss', 'basic'); + INSERT INTO system.text_tag ("id", "tag") VALUES ('basic_email_miss', 'sai_login'); DELETE FROM system.text WHERE id = 'basic_error'; DELETE FROM system.text_tag WHERE id = 'basic_error'; @@ -208,13 +216,13 @@ INSERT INTO system.text_tag ("id", "tag") VALUES ('basic_password', 'basic'); INSERT INTO system.text_tag ("id", "tag") VALUES ('basic_password', 'sai_login'); - DELETE FROM system.text WHERE id = 'basic_password_long'; - DELETE FROM system.text_tag WHERE id = 'basic_password_long'; - INSERT INTO system.text ("id", "lang", "text", "author", "author_edit", "time_create", "time_edit") VALUES ('basic_password_long', 'deDE', 'Passwort zu lang', 0, 2, '2015-04-18 13:16:18', '2015-04-18 13:16:18'); - INSERT INTO system.text ("id", "lang", "text", "author", "author_edit", "time_create", "time_edit") VALUES ('basic_password_long', 'enUS', 'Password too long', 0, 0, '2015-04-18 13:16:18', '0000-00-00 00:00:00'); - INSERT INTO system.text ("id", "lang", "text", "author", "author_edit", "time_create", "time_edit") VALUES ('basic_password_long', 'frFR', 'Mot de passe trop long!', 3, 3, '2015-04-20 16:28:21', '2015-04-20 16:28:21'); - INSERT INTO system.text_tag ("id", "tag") VALUES ('basic_password_long', 'basic'); - INSERT INTO system.text_tag ("id", "tag") VALUES ('basic_password_long', 'sai_login'); + -- DELETE FROM system.text WHERE id = 'basic_password_long'; + -- DELETE FROM system.text_tag WHERE id = 'basic_password_long'; + -- INSERT INTO system.text ("id", "lang", "text", "author", "author_edit", "time_create", "time_edit") VALUES ('basic_password_long', 'deDE', 'Passwort zu lang', 0, 2, '2015-04-18 13:16:18', '2015-04-18 13:16:18'); + -- INSERT INTO system.text ("id", "lang", "text", "author", "author_edit", "time_create", "time_edit") VALUES ('basic_password_long', 'enUS', 'Password too long', 0, 0, '2015-04-18 13:16:18', '0000-00-00 00:00:00'); + -- INSERT INTO system.text ("id", "lang", "text", "author", "author_edit", "time_create", "time_edit") VALUES ('basic_password_long', 'frFR', 'Mot de passe trop long!', 3, 3, '2015-04-20 16:28:21', '2015-04-20 16:28:21'); + -- INSERT INTO system.text_tag ("id", "tag") VALUES ('basic_password_long', 'basic'); + -- INSERT INTO system.text_tag ("id", "tag") VALUES ('basic_password_long', 'sai_login'); DELETE FROM system.text WHERE id = 'basic_password_match'; DELETE FROM system.text_tag WHERE id = 'basic_password_match';