Bug 6530: Item Due notice label displaying as 'unknown'

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>
This commit is contained in:
Katrin Fischer 2011-11-20 22:31:47 +01:00 committed by Paul Poulain
parent 0352a8f24a
commit 30b6edc510
5 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
insert into `message_attributes`
(`message_attribute_id`, message_name, `takes_days`)
values
(1, 'Item_DUE', 0),
(1, 'Item_Due', 0),
(2, 'Advance_Notice', 1),
(4, 'Hold_Filled', 0),
(5, 'Item_Check_in', 0),

View file

@ -1,7 +1,7 @@
insert into `message_attributes`
(`message_attribute_id`, message_name, `takes_days`)
values
(1, 'Item_DUE', 0),
(1, 'Item_Due', 0),
(2, 'Advance_Notice', 1),
(4, 'Hold_Filled', 0),
(5, 'Item_Check_in', 0),

View file

@ -1,7 +1,7 @@
insert into `message_attributes`
(`message_attribute_id`, message_name, `takes_days`)
values
(1, 'Item_DUE', 0),
(1, 'Item_Due', 0),
(2, 'Advance_Notice', 1),
(4, 'Hold_Filled', 0),
(5, 'Item_Check_in', 0),

View file

@ -3,7 +3,7 @@ truncate message_attributes;
insert into `message_attributes`
(`message_attribute_id`, message_name, `takes_days`)
values
(1, 'Item_DUE', 0),
(1, 'Item_Due', 0),
(2, 'Advance_Notice', 1),
(4, 'Hold_Filled', 0),
(5, 'Item_Check_in', 0),

View file

@ -3,7 +3,7 @@ truncate message_attributes;
insert into `message_attributes`
(`message_attribute_id`, `message_name`, `takes_days`)
values
(1, 'Item_DUE' , 0),
(1, 'Item_Due' , 0),
(2, 'Advance_Notice' , 1),
(4, 'Hold_Filled' , 0),
(5, 'Item_Check_in' , 0),