From cd794fa5e8c4d41091fed64b128911edfe72f61f Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Sat, 30 Nov 2019 19:40:52 +0100 Subject: footer.twig: Fix translation import warnings --- resources/views/layouts/parts/footer.twig | 6 +++--- 1 file 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 %}
{% 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')) ]) }}
-- cgit v1.2.3-54-g00ecf