From 4adf32ae4fa9e5afa47d68d94139d3e9bb3b1475 Mon Sep 17 00:00:00 2001 From: Magnus Enger Date: Mon, 18 Mar 2013 16:18:52 +0100 Subject: [PATCH] [PASSED QA] Bug 9837 - Fix Norwegian authorized values for the web installer This patch fixes the file of authorized values that is used when the web installer is run in Norwegian: Not translated: BOR_NOTES Missing: REPORT_GROUP To test: - Install the Norwegian translation - Run through the web installer in Norwegian - Make sure the auth_val.sql file is included - Check that there are no errors in the web installer - Check that the BOR_NOTES and REPORT_GROUPS values are present in Home > Administration > Authorized values Signed-off-by: Chris Cormack I can't test the validity of the translation, but it doesn't break anything :) Signed-off-by: Katrin Fischer SQL and NORMARC only, works alright. --- .../data/mysql/nb-NO/2-Valgfritt/auth_val.sql | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/installer/data/mysql/nb-NO/2-Valgfritt/auth_val.sql b/installer/data/mysql/nb-NO/2-Valgfritt/auth_val.sql index 3deeae2..e37ae73 100644 --- a/installer/data/mysql/nb-NO/2-Valgfritt/auth_val.sql +++ b/installer/data/mysql/nb-NO/2-Valgfritt/auth_val.sql @@ -66,8 +66,15 @@ INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('RESTR INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('MANUAL_INV','Kopiavgift','0,25'); -- custom borrower notes -INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('BOR_NOTES','ADDR','Address Notes'); +INSERT INTO `authorised_values` (category, authorised_value, lib) VALUES ('BOR_NOTES','ADDR','Addresse-noter'); -- OPAC Suggestions reasons INSERT INTO authorised_values (category,authorised_value,lib,lib_opac) VALUES ('OPAC_SUG','damaged','Eksemplaret på hylla er skadet','Eksemplaret på hylla er skadet'); INSERT INTO authorised_values (category,authorised_value,lib,lib_opac) VALUES ('OPAC_SUG','bestseller','Kommende tittel av populær forfatter','Kommende tittel av populær forfatter'); + +-- Report groups +INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('REPORT_GROUP', 'CIRC', 'Sirkulasjon'); +INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('REPORT_GROUP', 'CAT', 'Katalog'); +INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('REPORT_GROUP', 'PAT', 'Lånere'); +INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('REPORT_GROUP', 'ACQ', 'Innkjøp'); +INSERT INTO authorised_values (category, authorised_value, lib) VALUES ('REPORT_GROUP', 'ACC', 'Gebyrer'); -- 1.7.9.5