fix translation keys in twig templates
This commit is contained in:
parent
fec2f17bea
commit
47ad0a6133
|
@ -218,7 +218,7 @@ function admin_arrive()
|
||||||
'sum' => '#888',
|
'sum' => '#888',
|
||||||
], $planned_arrival_at_day),
|
], $planned_arrival_at_day),
|
||||||
table([
|
table([
|
||||||
'day' => __('Date'),
|
'day' => __('title.date'),
|
||||||
'count' => __('general.count'),
|
'count' => __('general.count'),
|
||||||
'sum' => __('Sum'),
|
'sum' => __('Sum'),
|
||||||
], $planned_arrival_at_day),
|
], $planned_arrival_at_day),
|
||||||
|
@ -233,7 +233,7 @@ function admin_arrive()
|
||||||
'sum' => '#888',
|
'sum' => '#888',
|
||||||
], $arrival_at_day),
|
], $arrival_at_day),
|
||||||
table([
|
table([
|
||||||
'day' => __('Date'),
|
'day' => __('title.date'),
|
||||||
'count' => __('general.count'),
|
'count' => __('general.count'),
|
||||||
'sum' => __('Sum'),
|
'sum' => __('Sum'),
|
||||||
], $arrival_at_day),
|
], $arrival_at_day),
|
||||||
|
@ -248,7 +248,7 @@ function admin_arrive()
|
||||||
'sum' => '#888',
|
'sum' => '#888',
|
||||||
], $planned_departure_at_day),
|
], $planned_departure_at_day),
|
||||||
table([
|
table([
|
||||||
'day' => __('Date'),
|
'day' => __('title.date'),
|
||||||
'count' => __('general.count'),
|
'count' => __('general.count'),
|
||||||
'sum' => __('Sum'),
|
'sum' => __('Sum'),
|
||||||
], $planned_departure_at_day),
|
], $planned_departure_at_day),
|
||||||
|
|
|
@ -124,7 +124,7 @@ function admin_free()
|
||||||
]),
|
]),
|
||||||
table([
|
table([
|
||||||
'name' => __('general.name'),
|
'name' => __('general.name'),
|
||||||
'shift_state' => __('Next shift'),
|
'shift_state' => __('shift.next'),
|
||||||
'last_shift' => __('Last shift'),
|
'last_shift' => __('Last shift'),
|
||||||
'dect' => __('general.dect'),
|
'dect' => __('general.dect'),
|
||||||
'email' => __('general.email'),
|
'email' => __('general.email'),
|
||||||
|
|
|
@ -149,7 +149,7 @@ function admin_user()
|
||||||
$html .= form_csrf();
|
$html .= form_csrf();
|
||||||
$html .= '<table>' . "\n";
|
$html .= '<table>' . "\n";
|
||||||
$html .= ' <tr><td>' . __('settings.password') . '</td><td>' . '<input type="password" size="40" name="new_pw" value="" class="form-control" autocomplete="new-password"></td></tr>' . "\n";
|
$html .= ' <tr><td>' . __('settings.password') . '</td><td>' . '<input type="password" size="40" name="new_pw" value="" class="form-control" autocomplete="new-password"></td></tr>' . "\n";
|
||||||
$html .= ' <tr><td>' . __('Confirm password') . '</td><td>' . '<input type="password" size="40" name="new_pw2" value="" class="form-control" autocomplete="new-password"></td></tr>' . "\n";
|
$html .= ' <tr><td>' . __('password.reset.confirm') . '</td><td>' . '<input type="password" size="40" name="new_pw2" value="" class="form-control" autocomplete="new-password"></td></tr>' . "\n";
|
||||||
|
|
||||||
$html .= '</table>' . "\n" . '<br />' . "\n";
|
$html .= '</table>' . "\n" . '<br />' . "\n";
|
||||||
$html .= '<button type="submit" class="btn btn-primary">' . __('form.save') . '</button>' . "\n";
|
$html .= '<button type="submit" class="btn btn-primary">' . __('form.save') . '</button>' . "\n";
|
||||||
|
|
|
@ -18,21 +18,19 @@ msgstr ""
|
||||||
"X-Poedit-SearchPath-1: src\n"
|
"X-Poedit-SearchPath-1: src\n"
|
||||||
"X-Poedit-SearchPath-2: includes\n"
|
"X-Poedit-SearchPath-2: includes\n"
|
||||||
|
|
||||||
msgid "Hi %s,"
|
msgid "email.greeting"
|
||||||
msgstr "Hallo %s,"
|
msgstr "Hallo %s,"
|
||||||
|
|
||||||
msgid "here is a message for you from the %s:"
|
msgid "email.introduction"
|
||||||
msgstr "hier ist eine Nachricht aus dem %s für Dich:"
|
msgstr "hier ist eine Nachricht aus dem %s für Dich:"
|
||||||
|
|
||||||
msgid ""
|
msgid "email.footer"
|
||||||
"This e-mail is autogenerated and has not been signed. You got this e-mail "
|
|
||||||
"because you are registered in the %s."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Diese E-Mail wurde automatisch generiert und muss daher nicht unterschrieben "
|
"Diese E-Mail wurde automatisch generiert und muss daher nicht unterschrieben "
|
||||||
"werden. Du hast diese E-Mail bekommen, weil Du im %s registriert bist."
|
"werden. Du hast diese E-Mail bekommen, weil Du im %s registriert bist."
|
||||||
|
|
||||||
msgid "Please visit %s to recover your password."
|
msgid "password.email.message"
|
||||||
msgstr "Bitte besuche %s, um Dein Passwort zurückzusetzen"
|
msgstr "Bitte besuche %s, um Dein Passwort zurückzusetzen."
|
||||||
|
|
||||||
msgid "Forbidden"
|
msgid "Forbidden"
|
||||||
msgstr "Nicht erlaubt"
|
msgstr "Nicht erlaubt"
|
||||||
|
@ -58,25 +56,25 @@ msgstr "Das angegebene CSRF Token ist ungültig oder abgelaufen"
|
||||||
msgid "general.date"
|
msgid "general.date"
|
||||||
msgstr "d.m.Y"
|
msgstr "d.m.Y"
|
||||||
|
|
||||||
msgid "%1$s, from %2$s to %3$s"
|
msgid "footer.eventinfo.name_start_end"
|
||||||
msgstr "%1$s, vom %2$s bis %3$s"
|
msgstr "%1$s, vom %2$s bis %3$s"
|
||||||
|
|
||||||
msgid "%1$s, starting %2$s"
|
msgid "footer.eventinfo.name_start"
|
||||||
msgstr "%1$s, ab dem %2$s"
|
msgstr "%1$s, ab dem %2$s"
|
||||||
|
|
||||||
msgid "Event from %1$s to %2$s"
|
msgid "footer.eventinfo.start_end"
|
||||||
msgstr "Event von %1$s bis %2$s"
|
msgstr "Event von %1$s bis %2$s"
|
||||||
|
|
||||||
msgid "Bugs / Features"
|
msgid "footer.issues"
|
||||||
msgstr "Bugs / Features"
|
msgstr "Bugs / Features"
|
||||||
|
|
||||||
msgid "Development Platform"
|
msgid "footer.github"
|
||||||
msgstr "Entwicklerplattform"
|
msgstr "Entwicklerplattform"
|
||||||
|
|
||||||
msgid "Credits"
|
msgid "credits.title"
|
||||||
msgstr "Credits"
|
msgstr "Credits"
|
||||||
|
|
||||||
msgid "Register"
|
msgid "general.register"
|
||||||
msgstr "Registrieren"
|
msgstr "Registrieren"
|
||||||
|
|
||||||
msgid "general.login"
|
msgid "general.login"
|
||||||
|
@ -88,11 +86,11 @@ msgstr "Bitte melde dich an."
|
||||||
msgid "form.submit"
|
msgid "form.submit"
|
||||||
msgstr "Absenden"
|
msgstr "Absenden"
|
||||||
|
|
||||||
msgid "Source code"
|
msgid "credits.source"
|
||||||
msgstr "Quellcode"
|
msgstr "Quellcode"
|
||||||
|
|
||||||
msgid "Version: _%s_"
|
msgid "credits.version"
|
||||||
msgstr ""
|
msgstr "Version: _%s_"
|
||||||
|
|
||||||
msgid "credits.credit"
|
msgid "credits.credit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -106,65 +104,60 @@ msgstr ""
|
||||||
"Eine vollständige Liste der Mitwirkenden findest Du [auf GitHub](https://"
|
"Eine vollständige Liste der Mitwirkenden findest Du [auf GitHub](https://"
|
||||||
"github.com/engelsystem/engelsystem/graphs/contributors)."
|
"github.com/engelsystem/engelsystem/graphs/contributors)."
|
||||||
|
|
||||||
msgid "Welcome to the %s!"
|
msgid "login.welcome"
|
||||||
msgstr "Willkommen beim %s!"
|
msgstr "Willkommen beim %s!"
|
||||||
|
|
||||||
msgid "Buildup starts"
|
msgid "event.buildup.start"
|
||||||
msgstr "Aufbau startet"
|
msgstr "Aufbau startet"
|
||||||
|
|
||||||
msgid "Event starts"
|
msgid "event.starts"
|
||||||
msgstr "Event startet"
|
msgstr "Event startet"
|
||||||
|
|
||||||
msgid "Event ends"
|
msgid "event.ends"
|
||||||
msgstr "Event endet"
|
msgstr "Event endet"
|
||||||
|
|
||||||
msgid "Teardown ends"
|
msgid "event.teardown.ends"
|
||||||
msgstr "Abbau endet"
|
msgstr "Abbau endet"
|
||||||
|
|
||||||
msgid "I forgot my password"
|
msgid "login.password.reset"
|
||||||
msgstr "Passwort vergessen"
|
msgstr "Passwort vergessen"
|
||||||
|
|
||||||
msgid "Please sign up, if you want to help us!"
|
msgid "login.registration"
|
||||||
msgstr "Bitte registriere Dich, wenn Du helfen möchtest!"
|
msgstr "Bitte registriere Dich, wenn Du helfen möchtest!"
|
||||||
|
|
||||||
msgid "Registration is only available via external login."
|
msgid "login.registration.external"
|
||||||
msgstr "Die Registrierung ist nur über einen externen Login möglich."
|
msgstr "Die Registrierung ist nur über einen externen Login möglich."
|
||||||
|
|
||||||
msgid "Registration is disabled."
|
msgid "login.registration.disabled"
|
||||||
msgstr "Registrierung ist abgeschaltet."
|
msgstr "Registrierung ist abgeschaltet."
|
||||||
|
|
||||||
msgid "What can I do?"
|
msgid "login.do"
|
||||||
msgstr "Was kann ich machen?"
|
msgstr "Was kann ich machen?"
|
||||||
|
|
||||||
msgid "Please read about the jobs you can do to help us."
|
msgid "login.jobs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bitte informiere Dich über die Tätigkeiten bei denen Du uns helfen kannst."
|
"Bitte informiere Dich über die Tätigkeiten bei denen Du uns helfen kannst."
|
||||||
|
|
||||||
msgid "Please note: You have to activate cookies!"
|
msgid "login.cookies"
|
||||||
msgstr "Hinweis: Cookies müssen aktiviert sein!"
|
msgstr "Hinweis: Cookies müssen aktiviert sein!"
|
||||||
|
|
||||||
msgid "Confirm password"
|
msgid "password.reset.confirm"
|
||||||
msgstr "Passwort wiederholen"
|
msgstr "Passwort wiederholen"
|
||||||
|
|
||||||
msgid "We sent you an e-mail containing your password recovery link."
|
msgid "password.recovery.success"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Wir haben dir eine E-Mail mit einem Link zum Passwort-zurücksetzen geschickt."
|
"Wir haben dir eine E-Mail mit einem Link zum Passwort-zurücksetzen geschickt."
|
||||||
|
|
||||||
msgid "Password saved."
|
msgid "password.reset.title"
|
||||||
msgstr "Passwort gespeichert."
|
|
||||||
|
|
||||||
msgid "Password recovery"
|
|
||||||
msgstr "Passwort wiederherstellen"
|
msgstr "Passwort wiederherstellen"
|
||||||
|
|
||||||
msgid ""
|
msgid "password.recovery.text"
|
||||||
"We will send you an e-mail with a password recovery link. Please use the "
|
|
||||||
"e-mail address you used for registration."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Wir werden eine E-Mail mit einem Link schicken, mit dem du das Passwort "
|
"Wir werden eine E-Mail mit einem Link schicken, mit dem du das Passwort "
|
||||||
"zurücksetzen kannst. Bitte benutze die E-Mail-Adresse, die du bei der Anmeldung "
|
"zurücksetzen kannst. Bitte benutze die E-Mail-Adresse, die du bei der Anmeldung "
|
||||||
"verwendet hast."
|
"verwendet hast."
|
||||||
|
|
||||||
msgid "Recover"
|
msgid "form.recover"
|
||||||
msgstr "Wiederherstellen"
|
msgstr "Wiederherstellen"
|
||||||
|
|
||||||
msgid "Angeltype %s deleted."
|
msgid "Angeltype %s deleted."
|
||||||
|
@ -604,7 +597,7 @@ msgstr "Geplante Ankunfts-Statistik"
|
||||||
msgid "arrived sum"
|
msgid "arrived sum"
|
||||||
msgstr "Summe angekommen"
|
msgstr "Summe angekommen"
|
||||||
|
|
||||||
msgid "Date"
|
msgid "title.date"
|
||||||
msgstr "Datum"
|
msgstr "Datum"
|
||||||
|
|
||||||
msgid "Arrival statistics"
|
msgid "Arrival statistics"
|
||||||
|
@ -619,7 +612,7 @@ msgstr "Freie Engel"
|
||||||
msgid "Angeltype"
|
msgid "Angeltype"
|
||||||
msgstr "Engeltyp"
|
msgstr "Engeltyp"
|
||||||
|
|
||||||
msgid "Next shift"
|
msgid "shift.next"
|
||||||
msgstr "Nächste Schicht"
|
msgstr "Nächste Schicht"
|
||||||
|
|
||||||
msgid "Last shift"
|
msgid "Last shift"
|
||||||
|
@ -862,7 +855,7 @@ msgstr "Alle"
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Keine"
|
msgstr "Keine"
|
||||||
|
|
||||||
msgid "Logout"
|
msgid "general.logout"
|
||||||
msgstr "Abmelden"
|
msgstr "Abmelden"
|
||||||
|
|
||||||
msgid "Admin"
|
msgid "Admin"
|
||||||
|
@ -1859,7 +1852,7 @@ msgstr "Zur Konversation"
|
||||||
msgid "message.message"
|
msgid "message.message"
|
||||||
msgstr "Nachricht"
|
msgstr "Nachricht"
|
||||||
|
|
||||||
msgid "angel"
|
msgid "general.angel"
|
||||||
msgstr "Engel"
|
msgstr "Engel"
|
||||||
|
|
||||||
msgid "worklog.add"
|
msgid "worklog.add"
|
||||||
|
@ -2001,3 +1994,6 @@ msgstr "Benutzer Info"
|
||||||
|
|
||||||
msgid "user.info.hint"
|
msgid "user.info.hint"
|
||||||
msgstr "Wird auf der Benutzer Seite für Schichtkoordinatoren und Admins angezeigt."
|
msgstr "Wird auf der Benutzer Seite für Schichtkoordinatoren und Admins angezeigt."
|
||||||
|
|
||||||
|
msgid "design.title"
|
||||||
|
msgstr "Design"
|
||||||
|
|
|
@ -312,7 +312,7 @@ msgid "settings.password.password"
|
||||||
msgstr "Old password"
|
msgstr "Old password"
|
||||||
|
|
||||||
msgid "settings.password.new_password"
|
msgid "settings.password.new_password"
|
||||||
msgstr "New passwort"
|
msgstr "New password"
|
||||||
|
|
||||||
msgid "settings.password.new_password2"
|
msgid "settings.password.new_password2"
|
||||||
msgstr "Password confirmation"
|
msgstr "Password confirmation"
|
||||||
|
@ -710,3 +710,116 @@ msgstr "User info"
|
||||||
|
|
||||||
msgid "user.info.hint"
|
msgid "user.info.hint"
|
||||||
msgstr "Is displayed for shift coordinators and admins in the user view."
|
msgstr "Is displayed for shift coordinators and admins in the user view."
|
||||||
|
|
||||||
|
msgid "email.greeting"
|
||||||
|
msgstr "Hi %s,"
|
||||||
|
|
||||||
|
msgid "email.introduction"
|
||||||
|
msgstr "here is a message for you from the %s:"
|
||||||
|
|
||||||
|
msgid "email.footer"
|
||||||
|
msgstr ""
|
||||||
|
"This e-mail is autogenerated and has not been signed. "
|
||||||
|
"You got this e-mail because you are registered in the %s."
|
||||||
|
|
||||||
|
msgid "password.email.message"
|
||||||
|
msgstr "Please visit %s to recover your password."
|
||||||
|
|
||||||
|
msgid "footer.eventinfo.start_end"
|
||||||
|
msgstr "%1$s, from %2$s to %3$s"
|
||||||
|
|
||||||
|
msgid "footer.eventinfo.name_start"
|
||||||
|
msgstr "%1$s, ab dem %2$s"
|
||||||
|
|
||||||
|
msgid "footer.eventinfo.name_start"
|
||||||
|
msgstr "%1$s, starting %2$s"
|
||||||
|
|
||||||
|
msgid "footer.eventinfo.start_end"
|
||||||
|
msgstr "Event from %1$s to %2$s"
|
||||||
|
|
||||||
|
msgid "footer.issues"
|
||||||
|
msgstr "Bugs / Features"
|
||||||
|
|
||||||
|
msgid "footer.github"
|
||||||
|
msgstr "Development Platform"
|
||||||
|
|
||||||
|
msgid "credits.title"
|
||||||
|
msgstr "Credits"
|
||||||
|
|
||||||
|
msgid "general.register"
|
||||||
|
msgstr "Register"
|
||||||
|
|
||||||
|
msgid "shift.next"
|
||||||
|
msgstr "Next shift"
|
||||||
|
|
||||||
|
msgid "general.logout"
|
||||||
|
msgstr "Logout"
|
||||||
|
|
||||||
|
msgid "credits.source"
|
||||||
|
msgstr "Source code"
|
||||||
|
|
||||||
|
msgid "credits.version"
|
||||||
|
msgstr "Version: _%s_"
|
||||||
|
|
||||||
|
msgid "design.title"
|
||||||
|
msgstr "Design"
|
||||||
|
|
||||||
|
msgid "login.welcome"
|
||||||
|
msgstr "Welcome to the %s!"
|
||||||
|
|
||||||
|
msgid "event.buildup.start"
|
||||||
|
msgstr "Buildup starts"
|
||||||
|
|
||||||
|
msgid "event.starts"
|
||||||
|
msgstr "Event starts"
|
||||||
|
|
||||||
|
msgid "event.ends"
|
||||||
|
msgstr "Event ends"
|
||||||
|
|
||||||
|
msgid "event.teardown.ends"
|
||||||
|
msgstr "Teardown ends"
|
||||||
|
|
||||||
|
msgid "login.password.reset"
|
||||||
|
msgstr "I forgot my password"
|
||||||
|
|
||||||
|
msgid "login.registration"
|
||||||
|
msgstr "Please sign up, if you want to help us!"
|
||||||
|
|
||||||
|
msgid "login.registration.external"
|
||||||
|
msgstr "Registration is only available via external login."
|
||||||
|
|
||||||
|
msgid "login.registration.disabled"
|
||||||
|
msgstr "Registration is disabled."
|
||||||
|
|
||||||
|
msgid "login.do"
|
||||||
|
msgstr "What can I do?"
|
||||||
|
|
||||||
|
msgid "login.jobs"
|
||||||
|
msgstr ""
|
||||||
|
"Please read about the jobs you can do to help us."
|
||||||
|
|
||||||
|
msgid "login.cookies"
|
||||||
|
msgstr "Please note: You have to activate cookies!"
|
||||||
|
|
||||||
|
msgid "general.angel"
|
||||||
|
msgstr "Angel"
|
||||||
|
|
||||||
|
msgid "title.date"
|
||||||
|
msgstr "Date"
|
||||||
|
|
||||||
|
msgid "password.reset.confirm"
|
||||||
|
msgstr "Confirm password"
|
||||||
|
|
||||||
|
msgid "password.recovery.success"
|
||||||
|
msgstr "We sent you an e-mail containing your password recovery link."
|
||||||
|
|
||||||
|
msgid "password.reset.title"
|
||||||
|
msgstr "Password recovery"
|
||||||
|
|
||||||
|
msgid "password.recovery.text"
|
||||||
|
msgstr ""
|
||||||
|
"We will send you an e-mail with a password recovery link. "
|
||||||
|
"Please use the e-mail address you used for registration."
|
||||||
|
|
||||||
|
msgid "form.recover"
|
||||||
|
msgstr "Recover"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{% block title %}{{ __('Hi %s,', [username]) }}{% endblock %}
|
{% block title %}{{ __('email.greeting', [username]) }}{% endblock %}
|
||||||
|
|
||||||
{% block introduction %}{{ __('here is a message for you from the %s:', [config('app_name')]) }}{% endblock %}
|
{% block introduction %}{{ __('email.introduction', [config('app_name')]) }}{% endblock %}
|
||||||
|
|
||||||
{% block message %}{{ message|raw }}{% endblock %}
|
{% block message %}{{ message|raw }}{% endblock %}
|
||||||
|
|
||||||
|
@ -10,5 +10,5 @@
|
||||||
{%- if config('enable_show_day_of_event') and day_of_event is defined %}
|
{%- if config('enable_show_day_of_event') and day_of_event is defined %}
|
||||||
, {{ __('event.day', [day_of_event]) }}
|
, {{ __('event.day', [day_of_event]) }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ __('This e-mail is autogenerated and has not been signed. You got this e-mail because you are registered in the %s.', [config('app_name')]) }}
|
{{ __('email.footer', [config('app_name')]) }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
{% extends "emails/mail.twig" %}
|
{% extends "emails/mail.twig" %}
|
||||||
|
|
||||||
{% block message %}{{ __('Please visit %s to recover your password.', [url('/password/reset/') ~ reset.token]) }}{% endblock %}
|
{% block message %}{{ __('password.email.message', [url('/password/reset/') ~ reset.token]) }}{% endblock %}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
{% block eventinfo %}
|
{% block eventinfo %}
|
||||||
{% if config('name') %}
|
{% if config('name') %}
|
||||||
{% if config('event_start') and config('event_end') %}
|
{% if config('event_start') and config('event_end') %}
|
||||||
{{ __('%1$s, from %2$s to %3$s', [
|
{{ __('footer.eventinfo.name_start_end', [
|
||||||
config('name'),
|
config('name'),
|
||||||
config('event_start').format(__('general.date')),
|
config('event_start').format(__('general.date')),
|
||||||
config('event_end').format(__('general.date'))
|
config('event_end').format(__('general.date'))
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
, {{ __('event.day', [day_of_event]) }}
|
, {{ __('event.day', [day_of_event]) }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% elseif config('event_start') %}
|
{% elseif config('event_start') %}
|
||||||
{{ __('%1$s, starting %2$s', [
|
{{ __('footer.eventinfo.name_start', [
|
||||||
config('name'),
|
config('name'),
|
||||||
config('event_start').format(__('general.date'))
|
config('event_start').format(__('general.date'))
|
||||||
]) }}
|
]) }}
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
{{ config('name') }}
|
{{ config('name') }}
|
||||||
{% endif %} <br>
|
{% endif %} <br>
|
||||||
{% elseif config('event_start') and config('event_end') %}
|
{% elseif config('event_start') and config('event_end') %}
|
||||||
{{ __('Event from %1$s to %2$s', [
|
{{ __('footer.eventinfo.start_end', [
|
||||||
config('event_start').format(__('general.date')),
|
config('event_start').format(__('general.date')),
|
||||||
config('event_end').format(__('general.date'))
|
config('event_end').format(__('general.date'))
|
||||||
]) }}
|
]) }}
|
||||||
|
@ -42,8 +42,8 @@
|
||||||
{{ __(name) }}
|
{{ __(name) }}
|
||||||
</a> ·
|
</a> ·
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<a href="https://github.com/engelsystem/engelsystem/issues">{{ __('Bugs / Features') }}</a>
|
<a href="https://github.com/engelsystem/engelsystem/issues">{{ __('footer.issues') }}</a>
|
||||||
· <a href="https://github.com/engelsystem/engelsystem/">{{ __('Development Platform') }}</a>
|
· <a href="https://github.com/engelsystem/engelsystem/">{{ __('footer.github') }}</a>
|
||||||
· <a href="{{ url('/credits') }}">{{ __('Credits') }}</a>
|
· <a href="{{ url('/credits') }}">{{ __('credits.title') }}</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
{% include "layouts/parts/language_dropdown.twig" %}
|
{% include "layouts/parts/language_dropdown.twig" %}
|
||||||
|
|
||||||
{% if has_permission_to('register') and config('registration_enabled') %}
|
{% if has_permission_to('register') and config('registration_enabled') %}
|
||||||
{{ _self.toolbar_item(__('Register'), url('/register'), 'register', 'plus') }}
|
{{ _self.toolbar_item(__('general.register'), url('/register'), 'register', 'plus') }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if has_permission_to('login') %}
|
{% if has_permission_to('login') %}
|
||||||
|
@ -68,7 +68,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if is_user() %}
|
{% if is_user() %}
|
||||||
{{ _self.toolbar_item(menuUserShiftState(user), url('/shifts', {'action': 'next'}), '', 'clock', __('Next shift')) }}
|
{{ _self.toolbar_item(menuUserShiftState(user), url('/shifts', {'action': 'next'}), '', 'clock', __('shift.next')) }}
|
||||||
|
|
||||||
{% if has_permission_to('user_messages') %}
|
{% if has_permission_to('user_messages') %}
|
||||||
{{ _self.toolbar_item(
|
{{ _self.toolbar_item(
|
||||||
|
@ -96,7 +96,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if has_permission_to('logout') %}
|
{% if has_permission_to('logout') %}
|
||||||
{{ _self.dropdown_item(__('Logout'), url('/logout'), 'logout', m.icon('box-arrow-left')) }}
|
{{ _self.dropdown_item(__('general.logout'), url('/logout'), 'logout', m.icon('box-arrow-left')) }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{% extends "layouts/app.twig" %}
|
{% extends "layouts/app.twig" %}
|
||||||
|
|
||||||
{% block title %}{{ __('Credits') }}{% endblock %}
|
{% block title %}{{ __('credits.title') }}{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>{{ __('Credits') }}</h1>
|
<h1>{{ __('credits.title') }}</h1>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
{% for title, credit in credits %}
|
{% for title, credit in credits %}
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
|
@ -14,8 +14,8 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<h2>{{ __('Source code') }}</h2>
|
<h2>{{ __('credits.source') }}</h2>
|
||||||
<p>{{ __('Version: _%s_', [version])|markdown }}</i></p>
|
<p>{{ __('credits.version', [version])|markdown }}</i></p>
|
||||||
<p>
|
<p>
|
||||||
{{ __('credits.credit')|markdown }}
|
{{ __('credits.credit')|markdown }}
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{% import 'macros/base.twig' as m %}
|
{% import 'macros/base.twig' as m %}
|
||||||
{% import 'macros/form.twig' as f %}
|
{% import 'macros/form.twig' as f %}
|
||||||
|
|
||||||
{% block title %}{{ __('Design') }}{% endblock %}
|
{% block title %}{{ __('design.title') }}{% endblock %}
|
||||||
|
|
||||||
{% set colors=['success', 'info', 'warning', 'danger'] %}
|
{% set colors=['success', 'info', 'warning', 'danger'] %}
|
||||||
{% set types=[
|
{% set types=[
|
||||||
|
|
|
@ -7,16 +7,16 @@
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<div class="row mb-3 mt-5">
|
<div class="row mb-3 mt-5">
|
||||||
<div class="col-sm-12 text-center" id="welcome-title">
|
<div class="col-sm-12 text-center" id="welcome-title">
|
||||||
<h2>{{ __('Welcome to the %s!', [config('name') ~ m.angel() ~ (config('app_name')|upper) ])|raw }}</h2>
|
<h2>{{ __('login.welcome', [config('name') ~ m.angel() ~ (config('app_name')|upper) ])|raw }}</h2>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row mb-3">
|
<div class="row mb-3">
|
||||||
{% for name,date in {
|
{% for name,date in {
|
||||||
(__('Buildup starts')): config('buildup_start'),
|
(__('event.buildup.start')): config('buildup_start'),
|
||||||
(__('Event starts')): config('event_start'),
|
(__('event.starts')): config('event_start'),
|
||||||
(__('Event ends')): config('event_end'),
|
(__('event.ends')): config('event_end'),
|
||||||
(__('Teardown ends')): config('teardown_end')
|
(__('event.teardown.ends')): config('teardown_end')
|
||||||
} | filter(date => date) %}
|
} | filter(date => date) %}
|
||||||
{% if date > date() %}
|
{% if date > date() %}
|
||||||
<div class="col-sm-3 text-center d-none d-sm-block">
|
<div class="col-sm-3 text-center d-none d-sm-block">
|
||||||
|
@ -91,7 +91,7 @@
|
||||||
|
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<a href="{{ url('/password/reset') }}" class="">
|
<a href="{{ url('/password/reset') }}" class="">
|
||||||
{{ __('I forgot my password') }}
|
{{ __('login.password.reset') }}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
@ -102,21 +102,21 @@
|
||||||
|
|
||||||
<div class="row mb-5">
|
<div class="row mb-5">
|
||||||
<div class="col-sm-6 text-center">
|
<div class="col-sm-6 text-center">
|
||||||
<h2>{{ __('Register') }}</h2>
|
<h2>{{ __('general.register') }}</h2>
|
||||||
{% if has_permission_to('register') and config('registration_enabled') %}
|
{% if has_permission_to('register') and config('registration_enabled') %}
|
||||||
{% if config('enable_password') %}
|
{% if config('enable_password') %}
|
||||||
<p>{{ __('Please sign up, if you want to help us!') }}</p>
|
<p>{{ __('login.registration') }}</p>
|
||||||
<a href="{{ url('/register') }}" class="btn btn-primary">{{ __('Register') }} »</a>
|
<a href="{{ url('/register') }}" class="btn btn-primary">{{ __('general.register') }} »</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<p>{{ __('Registration is only available via external login.') }}</p>
|
<p>{{ __('login.registration.external') }}</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ m.alert(__('Registration is disabled.'), 'danger') }}
|
{{ m.alert(__('login.registration.disabled'), 'danger') }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-sm-6 text-center">
|
<div class="col-sm-6 text-center">
|
||||||
<h2>{{ __('What can I do?') }}</h2>
|
<h2>{{ __('login.do') }}</h2>
|
||||||
<p>{{ __('Please read about the jobs you can do to help us.') }}</p>
|
<p>{{ __('Please read about the jobs you can do to help us.') }}</p>
|
||||||
<a href="{{ url('/angeltypes/about') }}" class="btn btn-primary">
|
<a href="{{ url('/angeltypes/about') }}" class="btn btn-primary">
|
||||||
{{ __('angeltypes.about') }} »
|
{{ __('angeltypes.about') }} »
|
||||||
|
@ -124,7 +124,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-md-12 text-center">
|
<div class="col-md-12 text-center">
|
||||||
{{ m.icon('info-circle') }} {{ __('Please note: You have to activate cookies!') }}
|
{{ m.icon('info-circle') }} {{ __('login.cookies') }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -30,9 +30,9 @@
|
||||||
<table class="table table-striped data">
|
<table class="table table-striped data">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{{ __('angel') }}</th>
|
<th>{{ __('general.angel') }}</th>
|
||||||
<th>{{ __('message.message') }}</th>
|
<th>{{ __('message.message') }}</th>
|
||||||
<th>{{ __('Date') }}</th>
|
<th>{{ __('title.date') }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
'min_length': min_length,
|
'min_length': min_length,
|
||||||
'required': true,
|
'required': true,
|
||||||
}) }}
|
}) }}
|
||||||
{{ f.input('password_confirmation', __('Confirm password'), {
|
{{ f.input('password_confirmation', __('password.reset.confirm'), {
|
||||||
'type': 'password',
|
'type': 'password',
|
||||||
'min_length': min_length,
|
'min_length': min_length,
|
||||||
'required': true,
|
'required': true,
|
||||||
|
|
|
@ -4,9 +4,9 @@
|
||||||
{% block row_content %}
|
{% block row_content %}
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
{% if type == 'email' %}
|
{% if type == 'email' %}
|
||||||
{{ m.alert(__('We sent you an e-mail containing your password recovery link.'), 'info') }}
|
{{ m.alert(__('password.recovery.success'), 'info') }}
|
||||||
{% elseif type == 'reset' %}
|
{% elseif type == 'reset' %}
|
||||||
{{ m.alert(__('Password saved.'), 'success') }}
|
{{ m.alert(__('settings.password.success'), 'success') }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
{% import 'macros/base.twig' as m %}
|
{% import 'macros/base.twig' as m %}
|
||||||
{% import 'macros/form.twig' as f %}
|
{% import 'macros/form.twig' as f %}
|
||||||
|
|
||||||
{% block title %}{{ __('Password recovery') }}{% endblock %}
|
{% block title %}{{ __('password.reset.title') }}{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>{{ __('Password recovery') }}</h1>
|
<h1>{{ __('password.reset.title') }}</h1>
|
||||||
|
|
||||||
{% include 'layouts/parts/messages.twig' %}
|
{% include 'layouts/parts/messages.twig' %}
|
||||||
|
|
||||||
|
@ -16,13 +16,13 @@
|
||||||
<form action="" enctype="multipart/form-data" method="post">
|
<form action="" enctype="multipart/form-data" method="post">
|
||||||
{{ csrf() }}
|
{{ csrf() }}
|
||||||
|
|
||||||
{{ __('We will send you an e-mail with a password recovery link. Please use the e-mail address you used for registration.') }}
|
{{ __('password.recovery.text') }}
|
||||||
{{ f.input('email', __('general.email'), {
|
{{ f.input('email', __('general.email'), {
|
||||||
'type': 'email',
|
'type': 'email',
|
||||||
'required': true,
|
'required': true,
|
||||||
}) }}
|
}) }}
|
||||||
|
|
||||||
{{ f.submit(__('Recover')) }}
|
{{ f.submit(__('form.recover')) }}
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in New Issue