From: Jason Boyer Date: Tue, 15 Sep 2020 11:49:36 +0000 (-0400) Subject: LP#1849212: oils_i18n_gettext fixup X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ca496c54bcd59e34801931f0d23a84b938969581;p=evergreen%2Ftadl.git LP#1849212: oils_i18n_gettext fixup Each call to oils_i18n_gettext should have a unique id per class, this patch adjusts the call for acmr so translations (and tests) will work correctly. Signed-off-by: Jason Boyer --- diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index 626f1ce651..b7b769e731 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -20642,7 +20642,7 @@ INSERT INTO actor.org_unit_setting (org_unit, name, value) INSERT INTO asset.course_module_role (id, name, is_public) VALUES (1, oils_i18n_gettext(1, 'Instructor', 'acmr', 'name'), true), (2, oils_i18n_gettext(2, 'Teaching assistant', 'acmr', 'name'), true), -(3, oils_i18n_gettext(2, 'Student', 'acmr', 'name'), false); +(3, oils_i18n_gettext(3, 'Student', 'acmr', 'name'), false); SELECT SETVAL('asset.course_module_role_id_seq'::TEXT, 100);