summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2017-12-27 15:06:39 +0100
committermsquare <msquare@notrademark.de>2017-12-27 15:06:39 +0100
commit8c64532902952d02a53c7d375b766cc078ea5d4d (patch)
treee38cbc5fb92cd01cec20c3bf61ec16905045f94c /includes
parent84954a58120eb3318509feae4a5dc91de595f676 (diff)
fix ical export description
Diffstat (limited to 'includes')
-rw-r--r--includes/pages/user_shifts.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/pages/user_shifts.php b/includes/pages/user_shifts.php
index d822054e..0be4aa67 100644
--- a/includes/pages/user_shifts.php
+++ b/includes/pages/user_shifts.php
@@ -285,9 +285,9 @@ function ical_hint()
{
global $user;
- return heading(
- _('iCal export'), 2) . '<p>' . sprintf(
- _('Export of shown shifts. <a href="%s">iCal format</a> or <a href="%s">JSON format</a> available (please keep secret, otherwise <a href="%s">reset the api key</a>).'),
+ return heading(_('iCal export'), 2)
+ . '<p>' . sprintf(
+ _('Export your own shifts. <a href="%s">iCal format</a> or <a href="%s">JSON format</a> available (please keep secret, otherwise <a href="%s">reset the api key</a>).'),
page_link_to('ical', ['key' => $user['api_key']]),
page_link_to('shifts_json_export', ['key' => $user['api_key']]),
page_link_to('user_myshifts', ['reset' => 1])