mirror of
https://github.com/danielbrendel/hortusfox-web.git
synced 2026-02-22 06:19:25 -06:00
#423 Scoped time info in mail
This commit is contained in:
@@ -497,5 +497,6 @@ return [
|
||||
'days' => 'Tage',
|
||||
'weeks' => 'Wochen',
|
||||
'months' => 'Monate',
|
||||
'years' => 'Jahre'
|
||||
'years' => 'Jahre',
|
||||
'recurring_time_with_scope' => '{time} {scope}'
|
||||
];
|
||||
@@ -497,5 +497,6 @@ return [
|
||||
'days' => 'Days',
|
||||
'weeks' => 'Weeks',
|
||||
'months' => 'Months',
|
||||
'years' => 'Years'
|
||||
'years' => 'Years',
|
||||
'recurring_time_with_scope' => '{time} {scope}'
|
||||
];
|
||||
@@ -15,7 +15,7 @@
|
||||
@endif
|
||||
|
||||
<div>
|
||||
<div><strong>{{ __('app.recurring_time') }}: </strong>{{ $task->get('recurring_time') }}</div>
|
||||
<div><strong>{{ __('app.recurring_time') }}: </strong>{{ __('app.recurring_time_with_scope', ['time' => $task->get('recurring_time'), 'scope' => __('app.' . $task->get('recurring_scope'))]) }}</div>
|
||||
<div><strong>{{ __('app.due') }}: </strong>{{ date('Y-m-d', strtotime($task->get('due_date'))) }}</div>
|
||||
<div><a href="{{ workspace_url('/tasks') }}">{{ workspace_url('/tasks') }}</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user