mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-13 07:53:16 +00:00
More translations.
This commit is contained in:
@@ -78,6 +78,13 @@ return [
|
||||
'newBalance' => 'New balance',
|
||||
'overview' => 'Overview',
|
||||
'saveOnAccount' => 'Save on account',
|
||||
'unknown' => 'Unknown',
|
||||
'daily' => 'Daily',
|
||||
'weekly' => 'Weekly',
|
||||
'monthly' => 'Monthly',
|
||||
'quarterly' => 'Quarterly',
|
||||
'half-year' => 'Every six months',
|
||||
'yearly' => 'Yearly',
|
||||
|
||||
// charts:
|
||||
'dayOfMonth' => 'Day of the month',
|
||||
|
@@ -10,6 +10,7 @@ return [
|
||||
'lastActivity' => 'Last activity',
|
||||
'balanceDiff' => 'Balance difference between :start and :end',
|
||||
'matchedOn' => 'Matched on',
|
||||
'matchesOn' => 'Matched on',
|
||||
'matchingAmount' => 'Amount',
|
||||
'lastMatch' => 'Last match',
|
||||
'expectedMatch' => 'Expected match',
|
||||
|
@@ -78,6 +78,13 @@ return [
|
||||
'newBalance' => 'Nieuw saldo',
|
||||
'overview' => 'Overzicht',
|
||||
'saveOnAccount' => 'Sparen op rekening',
|
||||
'unknown' => 'Onbekend',
|
||||
'daily' => 'Dagelijks',
|
||||
'weekly' => 'Wekelijks',
|
||||
'monthly' => 'Maandelijks',
|
||||
'quarterly' => 'Elk kwartaal',
|
||||
'half-year' => 'Elk half jaar',
|
||||
'yearly' => 'Jaarlijks',
|
||||
|
||||
// charts:
|
||||
'dayOfMonth' => 'Dag vd maand',
|
||||
|
@@ -10,6 +10,7 @@ return [
|
||||
'lastActivity' => 'Laatste activiteit',
|
||||
'balanceDiff' => 'Saldoverschil tussen :start en :end',
|
||||
'matchedOn' => 'Wordt herkend',
|
||||
'matchesOn' => 'Wordt herkend',
|
||||
'matchingAmount' => 'Bedrag',
|
||||
'lastMatch' => 'Laatste keer gezien',
|
||||
'expectedMatch' => 'Wordt verwacht',
|
||||
|
@@ -49,9 +49,9 @@
|
||||
<td>Next expected match</td>
|
||||
<td>
|
||||
{% if bill.nextExpectedMatch %}
|
||||
{{bill.nextExpectedMatch.format('j F Y')}}
|
||||
{{bill.nextExpectedMatch.formatLocalized(monthAndDayFormat)}}
|
||||
{% else %}
|
||||
<em>Unknown</em>
|
||||
<em>{{ 'unknown'|_ }}</em>
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
|
@@ -6,15 +6,15 @@
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<i class="fa fa-calendar fa-fw"></i>
|
||||
{{ Session.get('start').format('F Y') }}
|
||||
{{ Session.get('start').formatLocalized(monthFormat) }}
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-md-4 col-sm-3">
|
||||
<small>Budgeted: <span id="budgetedAmount" data-value="300"></span></small>
|
||||
<small>{{ 'budgeted'|_ }}: <span id="budgetedAmount" data-value="300"></span></small>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-4 col-sm-3" style="text-align:right;">
|
||||
<small>Available in {{ Session.get('start').format('F Y') }}:
|
||||
<small>Available in {{ Session.get('start').formatLocalized(monthFormat) }}:
|
||||
<a href="#" class="updateIncome"><span id="totalAmount" data-value="{{ amount }}">{{ amount|formatAmount }}</span></a></small>
|
||||
</div>
|
||||
</div>
|
||||
@@ -33,7 +33,7 @@
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-md-4 col-sm-3">
|
||||
<small>Spent: {{ spent|formatAmount }}</small>
|
||||
<small>{{ 'spent'|_ }}: {{ spent|formatAmount }}</small>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
|
@@ -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">
|
||||
|
@@ -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 %}
|
||||
|
@@ -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">
|
||||
|
Reference in New Issue
Block a user