More translations.

This commit is contained in:
James Cole
2015-05-14 18:00:56 +02:00
parent 9f5058e81a
commit a82b829da9
9 changed files with 36 additions and 20 deletions

View File

@@ -9,7 +9,7 @@
<th>{{ trans('list.currentBalance') }}</th>
<th>{{ trans('list.active') }}</th>
<th>{{ trans('list.lastActivity') }}</th>
<th>{{ trans('list.balanceDiff', {'start' : Session.get('start').format('jS F Y'),'end' : Session.get('end').format('jS F Y')}) }}</th>
<th>{{ trans('list.balanceDiff', {'start' : Session.get('start').formatLocalized(monthAndDayFormat),'end' : Session.get('end').formatLocalized(monthAndDayFormat)}) }}</th>
</tr>
</thead>
<tbody>
@@ -41,7 +41,7 @@
</td>
{% if account.lastActivityDate %}
<td data-value="{{ account.lastActivityDate.format('U') }} ">
{{ account.lastActivityDate.format('j F Y') }}
{{ account.lastActivityDate.formatLocalized(monthAndDayFormat) }}
</td>
{% else %}
<td data-value="0">

View File

@@ -37,21 +37,21 @@
</td>
{% if entry.lastFoundMatch %}
<td data-value="{{ entry.lastFoundMatch.format('U') }}">
{{entry.lastFoundMatch.format('j F Y')}}
{{entry.lastFoundMatch.formatLocalized(monthAndDayFormat)}}
</td>
{% else %}
<td data-value="0">
<em>Unknown</em>
<em>{{ 'unknown'|_ }}</em>
</td>
{% endif %}
{% if entry.nextExpectedMatch%}
<td data-value="{{entry.nextExpectedMatch.format('U')}}">
{{entry.nextExpectedMatch.format('j F Y')}}
{{entry.nextExpectedMatch.formatLocalized(monthAndDayFormat)}}
</td>
{% else %}
<td data-value="0">
<em>Unknown</em>
<em>{{ 'unknown'|_ }}</em>
</td>
{% endif %}
@@ -70,7 +70,7 @@
{% endif %}
</td>
<td data-value="{{ entry.repeat_freq }}{{ entry.skip }}">
{{ entry.repeat_freq }}
{{ entry.repeat_freq|_ }}
{% if entry.skip > 0 %}
skips over {{entry.skip}}
{% endif %}

View File

@@ -25,7 +25,7 @@
</td>
{% if category.lastActivity %}
<td data-value="{{ category.lastActivity.format('U') }}">
{{category.lastActivity.format('jS F Y') }}
{{category.lastActivity.formatLocalized(monthAndDayFormat) }}
</td>
{% else %}
<td data-value="0">