Update LP1160596 - Add pagination for items in My Lists user/catalystit/lp1160596
authorKyle Tomita <ktomita@catalystitservices.com>
Thu, 4 Apr 2013 14:29:07 +0000 (07:29 -0700)
committerKyle Tomita <ktomita@catalystitservices.com>
Thu, 4 Apr 2013 14:29:07 +0000 (07:29 -0700)
Added oils_i18n_gettext for usr setting being inserted in file
950.data.seed-values.sql

Signed-off-by: Kyle Tomita <ktomita@catalystitservices.com>
Open-ILS/src/sql/Pg/950.data.seed-values.sql

index 5efb81a..5f27469 100644 (file)
@@ -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');