From: Kyle Tomita Date: Thu, 4 Apr 2013 14:29:07 +0000 (-0700) Subject: Update LP1160596 - Add pagination for items in My Lists X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c32da9a29a2f05f294e06ff2d0626c828d720e54;p=working%2FEvergreen.git Update LP1160596 - Add pagination for items in My Lists Added oils_i18n_gettext for usr setting being inserted in file 950.data.seed-values.sql Signed-off-by: Kyle Tomita --- 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 5efb81a7d5..5f27469917 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -2484,7 +2484,23 @@ INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatyp VALUES ('opac.hold_notify', TRUE, 'Hold Notification Format', 'Hold Notification Format', 'string'); INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) - VALUES ('opac.list_items_per_page', TRUE, 'List Items per Page', 'List Items per Page', 'string'); + VALUES ( + 'opac.list_items_per_page', + TRUE, + oils_i18n_gettext( + 'opac.list_items_per_page', + 'List Items per Page', + 'cust', + 'label' + ), + oils_i18n_gettext( + 'opac.list_items_per_page', + 'A number designating the amount of list items displayed per page of a selected list.', + 'cust', + 'description' + ), + 'string' + ); INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype) VALUES ('staff_client.catalog.record_view.default', TRUE, 'Default Record View', 'Default Record View', 'string');