aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/resources/export.php
diff options
context:
space:
mode:
authorThomas Hackl <hackl@data-quest.de>2021-11-30 16:27:51 +0100
committerThomas Hackl <hackl@data-quest.de>2021-11-30 16:27:51 +0100
commitf7bcdd2ed2e98b4965526e75cb5ae89915d74e50 (patch)
tree17aee888173dde75f95a93d5c9d5f380dbf190c2 /app/controllers/resources/export.php
parent5fc2484ff09b90f6f88dff470239e6f07820a367 (diff)
change text string "Planungsbuchung" to be consistent with existing "geplante Buchung", fixes #67
Diffstat (limited to 'app/controllers/resources/export.php')
-rw-r--r--app/controllers/resources/export.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/resources/export.php b/app/controllers/resources/export.php
index 299cd3a..2a94ec4 100644
--- a/app/controllers/resources/export.php
+++ b/app/controllers/resources/export.php
@@ -124,7 +124,7 @@ class Resources_ExportController extends AuthenticatedController
0 => _('Buchung'),
1 => _('Reservierung'),
2 => _('Sperrbuchung'),
- 3 => _('Planungsbuchung')
+ 3 => _('geplante Buchung')
];
$this->selected_booking_types = Request::intArray('bookingtypes') ?:
Config::get()->RESOURCES_EXPORT_BOOKINGTYPES_DEFAULT;
@@ -231,7 +231,7 @@ class Resources_ExportController extends AuthenticatedController
0 => _('Buchung'),
1 => _('Reservierung'),
2 => _('Sperrbuchung'),
- 3 => _('Planungsbuchung')
+ 3 => _('geplante Buchung')
];
$this->selected_booking_types = Config::get()->RESOURCES_EXPORT_BOOKINGTYPES_DEFAULT;
}