Language improvements

Signed-off-by: Graham Campbell <graham@mineuk.com>
This commit is contained in:
Valentin PRUGNAUD
2015-01-05 11:12:34 +00:00
committed by Graham Campbell
parent 81bbccb3c4
commit 08a016ff2b
50 changed files with 920 additions and 281 deletions
+3 -3
View File
@@ -25,7 +25,7 @@
@include('partials.graphs')
@endif --}}
<h1>{{ trans('cachet.past_incidents') }}</h1>
<h1>{{ trans('cachet.incidents.past') }}</h1>
@foreach($allIncidents as $incidents)
@include('partials.incidents', $incidents)
@endforeach
@@ -35,12 +35,12 @@
<ul class="pager">
<li class="previous">
<a href="{{ route('status-page') }}?start_date={{ $previousDate }}">
<span aria-hidden="true">&larr;</span> {{ trans('cachet.previous_week') }}
<span aria-hidden="true">&larr;</span> {{ trans('cachet.incidents.previous_week') }}
</a>
</li>
<li class="next @if( ! $canPageForward) disabled @endif">
<a @if($canPageForward) href="{{ route('status-page') }}?start_date={{ $nextDate }}" @endif>
{{ trans('cachet.next_week') }} <span aria-hidden="true">&rarr;</span>
{{ trans('cachet.incidents.next_week') }} <span aria-hidden="true">&rarr;</span>
</a>
</li>
</ul>