add target="_blank" to links
This commit is contained in:
parent
759a4f9a14
commit
ec7fb0615c
|
@ -374,7 +374,7 @@ function ical_hint()
|
||||||
|
|
||||||
return heading(__('iCal export and API') . ' ' . button_help('user/ical'), 2)
|
return heading(__('iCal export and API') . ' ' . button_help('user/ical'), 2)
|
||||||
. '<p>' . sprintf(
|
. '<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>).'),
|
__('Export your own shifts. <a href="%s" target="_blank">iCal format</a> or <a href="%s" target="_blank">JSON format</a> available (please keep secret, otherwise <a href="%s">reset the api key</a>).'),
|
||||||
url('/ical', ['key' => $user->api_key]),
|
url('/ical', ['key' => $user->api_key]),
|
||||||
url('/shifts-json-export', ['key' => $user->api_key]),
|
url('/shifts-json-export', ['key' => $user->api_key]),
|
||||||
url('/user-myshifts', ['reset' => 1])
|
url('/user-myshifts', ['reset' => 1])
|
||||||
|
|
|
@ -837,12 +837,12 @@ msgid "iCal export and API"
|
||||||
msgstr "iCal Export und API"
|
msgstr "iCal Export und API"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Export your own shifts. <a href=\"%s\">iCal format</a> or <a href=\"%s"
|
"Export your own shifts. <a href=\"%s\" target=\"_blank\">iCal format</a> or <a href=\"%s"
|
||||||
"\">JSON format</a> available (please keep secret, otherwise <a href=\"%s"
|
"\" target=\"_blank\">JSON format</a> available (please keep secret, otherwise <a href=\"%s"
|
||||||
"\">reset the api key</a>)."
|
"\">reset the api key</a>)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Exportiere Deine Schichten. <a href=\"%s\">iCal Format</a> oder <a href=\"%s"
|
"Exportiere Deine Schichten. <a href=\"%s\" target=\"_blank\">iCal Format</a> oder <a href=\"%s"
|
||||||
"\">JSON Format</a> verfügbar (Link bitte geheimhalten, sonst <a href=\"%s"
|
"\" target=\"_blank\">JSON Format</a> verfügbar (Link bitte geheimhalten, sonst <a href=\"%s"
|
||||||
"\">API-Key zurücksetzen</a>)."
|
"\">API-Key zurücksetzen</a>)."
|
||||||
|
|
||||||
msgid "Show API Key"
|
msgid "Show API Key"
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
{% for schedule in schedules %}
|
{% for schedule in schedules %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ schedule.name }}</td>
|
<td>{{ schedule.name }}</td>
|
||||||
<td><a href="{{ schedule.url }}" target="_blank">{{ schedule.url }}</a></td>
|
<td><a href="{{ schedule.url }}" target="_blank" rel="noopener">{{ schedule.url }}</a></td>
|
||||||
<td>
|
<td>
|
||||||
<form method="post" action="{{ url('/admin/schedule/edit/' ~ schedule.id) }}">
|
<form method="post" action="{{ url('/admin/schedule/edit/' ~ schedule.id) }}">
|
||||||
{{ csrf() }}
|
{{ csrf() }}
|
||||||
|
|
|
@ -64,8 +64,8 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<a href="https://github.com/engelsystem/engelsystem/issues">Bugs / Features</a>
|
<a href="https://github.com/engelsystem/engelsystem/issues" target="_blank" rel="noopener">Bugs / Features</a>
|
||||||
· <a href="https://github.com/engelsystem/engelsystem/">Development Platform</a>
|
· <a href="https://github.com/engelsystem/engelsystem/" target="_blank" rel="noopener">Development Platform</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -46,8 +46,8 @@
|
||||||
</a> ·
|
</a> ·
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<a href="https://github.com/engelsystem/engelsystem/issues">{{ __('footer.issues') }}</a>
|
<a href="https://github.com/engelsystem/engelsystem/issues" target="_blank" rel="noopener">{{ __('footer.issues') }}</a>
|
||||||
· <a href="https://github.com/engelsystem/engelsystem/">{{ __('footer.github') }}</a>
|
· <a href="https://github.com/engelsystem/engelsystem/" target="_blank" rel="noopener">{{ __('footer.github') }}</a>
|
||||||
· <a href="{{ url('/credits') }}">{{ __('credits.title') }}</a>
|
· <a href="{{ url('/credits') }}">{{ __('credits.title') }}</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -160,7 +160,7 @@
|
||||||
'form_text': (tShirtLink ? m.icon('info-circle')
|
'form_text': (tShirtLink ? m.icon('info-circle')
|
||||||
~ ' <a href="'
|
~ ' <a href="'
|
||||||
~ tShirtLink|escape('html_attr')
|
~ tShirtLink|escape('html_attr')
|
||||||
~ '">'
|
~ '" target="_blank" rel="noopener">'
|
||||||
~ __('settings.profile.shirt.link')|e
|
~ __('settings.profile.shirt.link')|e
|
||||||
~ '</a>' : ''),
|
~ '</a>' : ''),
|
||||||
}) }}
|
}) }}
|
||||||
|
|
Loading…
Reference in New Issue