From ecdd9fdd52821738c09658234cf62a5456ebd459 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Wed, 7 Nov 2012 15:39:48 +0100 Subject: [PATCH] Bug 9024: Adding sample patron attributes to German web installer Adds SHOW_BCODE as sample patron attribute to the German web installer. To test: - Run the web installer in German, make sure the new sample data shows up and can be installed. --- .../data/mysql/de-DE/optional/patron_atributes.sql | 2 ++ .../data/mysql/de-DE/optional/patron_atributes.txt | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 installer/data/mysql/de-DE/optional/patron_atributes.sql create mode 100644 installer/data/mysql/de-DE/optional/patron_atributes.txt diff --git a/installer/data/mysql/de-DE/optional/patron_atributes.sql b/installer/data/mysql/de-DE/optional/patron_atributes.sql new file mode 100644 index 0000000..35d61cb --- /dev/null +++ b/installer/data/mysql/de-DE/optional/patron_atributes.sql @@ -0,0 +1,2 @@ +INSERT INTO `borrower_attribute_types` (`code`, `description`, `repeatable`, `unique_id`, `opac_display`, `password_allowed`, `staff_searchable`, `authorised_value_category`) +VALUES ('SHOW_BCODE', 'Zeige den Barcode in der Exemplarübersicht', 0, 0, 1, 0, 0, 'YES_NO'); diff --git a/installer/data/mysql/de-DE/optional/patron_atributes.txt b/installer/data/mysql/de-DE/optional/patron_atributes.txt new file mode 100644 index 0000000..39abf2e --- /dev/null +++ b/installer/data/mysql/de-DE/optional/patron_atributes.txt @@ -0,0 +1,2 @@ +Nützliche Benutzerattribute: +* SHOW_BCODE - Zeige den Barcode in der Exemplarübersicht. -- 1.7.9.5