fff04e59e7
Translates the new files for frequencies and numberpatterns To test: - Run the German web installer with all sample files - Check all files import without errors, especially frequencies and numbering patterns - Check frequencies in serials - Check numbering patterns in serials - Create a subscription, check possible choices Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Galen Charlton <gmc@esilibrary.com>
16 lines
573 B
SQL
16 lines
573 B
SQL
INSERT INTO subscription_frequencies
|
|
(description, unit, unitsperissue, issuesperunit, displayorder)
|
|
VALUES
|
|
('2/Tag', 'day', 1, 2, 1),
|
|
('1/Tag', 'day', 1, 1, 2),
|
|
('3/Woche', 'week', 1, 3, 3),
|
|
('1/Woche', 'week', 1, 1, 4),
|
|
('1/2 Wochen', 'week', 2, 1, 5),
|
|
('1/3 Wochen', 'week', 3, 1, 6),
|
|
('1/Monat', 'month', 1, 1, 7),
|
|
('1/2 Monate', 'month', 2, 1, 8),
|
|
('1/3 Monate', 'month', 3, 1, 9),
|
|
('2/Jahr', 'month', 6, 1, 10),
|
|
('1/Jahr', 'year', 1, 1, 11),
|
|
('1/2 Jahre', 'year', 2, 1, 12),
|
|
('Unregelmäßig', NULL, 1, 1, 13);
|