summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2019-11-30 19:40:52 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2019-11-30 19:40:52 +0100
commitcd794fa5e8c4d41091fed64b128911edfe72f61f (patch)
tree67e7b5aa05e78420b4cb351bb70b1234840832f8
parenta18c7d13fcae0af77cdaef1947f2160cbf1dc56a (diff)
footer.twig: Fix translation import warnings
-rw-r--r--resources/views/layouts/parts/footer.twig6
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/views/layouts/parts/footer.twig b/resources/views/layouts/parts/footer.twig
index 27b9adfd..827b635a 100644
--- a/resources/views/layouts/parts/footer.twig
+++ b/resources/views/layouts/parts/footer.twig
@@ -4,13 +4,13 @@
{% block eventinfo %}
{% if config('name') %}
{% if config('event_start') and config('event_end') %}
- {{ __('%s, from %s to %s', [
+ {{ __('%1$s, from %2$s to %3$s', [
config('name'),
config('event_start').format(__('Y-m-d')),
config('event_end').format(__('Y-m-d'))
]) }}
{% elseif config('event_start') %}
- {{ __('%s, starting %s', [
+ {{ __('%1$s, starting %2$s', [
config('name'),
config('event_start').format(__('Y-m-d'))
]) }}
@@ -18,7 +18,7 @@
{{ config('name') }}
{% endif %} <br>
{% elseif config('event_start') and config('event_end') %}
- {{ __('Event from %s to %s', [
+ {{ __('Event from %1$s to %2$s', [
config('event_start').format(__('Y-m-d')),
config('event_end').format(__('Y-m-d'))
]) }} <br>