30b6edc510
Some of the translated sql files still had 'Item_DUE' instead of 'Item_Due' causing the staff interface to display 'unknown' instead of the correct description. To test: - Do a new installation, using German, French, Polish, Russian or Ukrainian sample files. - Actived EnhancedMessagingPreferences - Create a new patron category and check message descriptions display correctly Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz> Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
9 lines
213 B
SQL
9 lines
213 B
SQL
insert into `message_attributes`
|
|
(`message_attribute_id`, message_name, `takes_days`)
|
|
values
|
|
(1, 'Item_Due', 0),
|
|
(2, 'Advance_Notice', 1),
|
|
(4, 'Hold_Filled', 0),
|
|
(5, 'Item_Check_in', 0),
|
|
(6, 'Item_Checkout', 0);
|
|
|