From ca496c54bcd59e34801931f0d23a84b938969581 Mon Sep 17 00:00:00 2001 From: Jason Boyer Date: Tue, 15 Sep 2020 07:49:36 -0400 Subject: [PATCH] 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 --- Open-ILS/src/sql/Pg/950.data.seed-values.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.11.0