mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Nieuw vertalingen [skip ci]
This commit is contained in:
@@ -50,6 +50,9 @@ return [
|
||||
'assetAccounts' => 'Asset accounts',
|
||||
'expenseAccounts' => 'Expense accounts',
|
||||
'revenueAccounts' => 'Revenue accounts',
|
||||
'Asset account' => 'Asset account',
|
||||
'Expense account' => 'Expense account',
|
||||
'Revenue Account' => 'Revenue account',
|
||||
'budgets' => 'Budgets',
|
||||
'categories' => 'Categories',
|
||||
'tags' => 'Tags',
|
||||
@@ -65,7 +68,14 @@ return [
|
||||
'withdrawal' => 'Withdrawal',
|
||||
'deposit' => 'Deposit',
|
||||
'transfer' => 'Transfer',
|
||||
'Withdrawal' => 'Withdrawal',
|
||||
'Deposit' => 'Deposit',
|
||||
'Transfer' => 'Transfer',
|
||||
'bill' => 'Rekening',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'amount' => 'Amount',
|
||||
'newBalance' => 'New balance',
|
||||
|
||||
// charts:
|
||||
'dayOfMonth' => 'Day of the month',
|
||||
|
@@ -25,5 +25,7 @@ return [
|
||||
'bill' => 'Bill',
|
||||
'withdrawal' => 'Withdrawal',
|
||||
'deposit' => 'Deposit',
|
||||
'transfer' => 'Transfer'
|
||||
'transfer' => 'Transfer',
|
||||
'type' => 'Type',
|
||||
'completed' => 'Completed',
|
||||
];
|
@@ -50,6 +50,9 @@ return [
|
||||
'assetAccounts' => 'Betaalrekeningen',
|
||||
'expenseAccounts' => 'Crediteuren',
|
||||
'revenueAccounts' => 'Debiteuren',
|
||||
'Asset account' => 'Betaalrekening',
|
||||
'Expense account' => 'Crediteur',
|
||||
'Revenue Account' => 'Debiteur',
|
||||
'budgets' => 'Budgetten',
|
||||
'categories' => 'Categorieën',
|
||||
'tags' => 'Tags',
|
||||
@@ -65,7 +68,14 @@ return [
|
||||
'withdrawal' => 'Uitgave',
|
||||
'deposit' => 'Inkomsten',
|
||||
'transfer' => 'Overschrijving',
|
||||
'Withdrawal' => 'Uitgave',
|
||||
'Deposit' => 'Inkomsten',
|
||||
'Transfer' => 'Overschrijving',
|
||||
'bill' => 'Rekening',
|
||||
'yes' => 'Ja',
|
||||
'no' => 'Nee',
|
||||
'amount' => 'Bedrag',
|
||||
'newBalance' => 'Nieuw saldo',
|
||||
|
||||
// charts:
|
||||
'dayOfMonth' => 'Dag vd maand',
|
||||
|
@@ -25,5 +25,8 @@ return [
|
||||
'bill' => 'Rekening',
|
||||
'withdrawal' => 'Uitgave',
|
||||
'deposit' => 'Inkomsten',
|
||||
'transfer' => 'Overschrijving'
|
||||
'transfer' => 'Overschrijving',
|
||||
'type' => 'Type',
|
||||
'completed' => 'Opgeslagen'
|
||||
|
||||
];
|
@@ -10,38 +10,38 @@
|
||||
</div>
|
||||
<table class="table table-striped table-bordered">
|
||||
<tr>
|
||||
<td>Date</td>
|
||||
<td>{{ journal.date.format('jS F Y') }}</td>
|
||||
<td>{{ trans('list.date') }}</td>
|
||||
<td>{{ journal.date.formatLocalized(monthAndDayFormat) }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Type</td>
|
||||
<td>{{ journal.transactiontype.type }}</td>
|
||||
<td>{{ trans('list.type') }}</td>
|
||||
<td>{{ journal.transactiontype.type|_ }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Completed</td>
|
||||
<td>{{ trans('list.completed') }}</td>
|
||||
<td>
|
||||
{% if journal.completed %}
|
||||
<span class="text-success">Yes</span>
|
||||
<span class="text-success">{{ 'yes'|_ }}</span>
|
||||
{% else %}
|
||||
<span class="text-danger">No</span>
|
||||
<span class="text-danger">{{ 'no'|_ }}</span>
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{% for budget in journal.budgets %}
|
||||
<tr>
|
||||
<td>Budget</td>
|
||||
<td>{{ 'budget'|_ }}</td>
|
||||
<td><a href="{{route('budgets.show',budget.id)}}">{{ budget.name }}</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% for category in journal.categories %}
|
||||
<tr>
|
||||
<td>Category</td>
|
||||
<td>{{ 'category'|_ }}</td>
|
||||
<td><a href="{{route('categories.show',category.id)}}">{{ category.name }}</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% if journal.tags|length > 0 %}
|
||||
<tr>
|
||||
<td>Tags</td>
|
||||
<td>{{ 'tags'|_ }}</td>
|
||||
<td>
|
||||
{% for tag in journal.tags %}
|
||||
|
||||
@@ -67,7 +67,7 @@
|
||||
{% if journal.piggyBankEvents|length > 0 %}
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
Piggy banks
|
||||
{{ 'piggyBanks'|_ }}
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{% include 'list/piggy-bank-events' with {'events': journal.piggyBankEvents, 'showPiggyBank':true} %}
|
||||
@@ -96,15 +96,15 @@
|
||||
{% if t.account.accounttype.type == 'Revenue account' %}
|
||||
<i class="fa fa-download fa-fw"></i>
|
||||
{% endif %}
|
||||
<a href="{{route('accounts.show',t.account.id)}}">{{ t.account.name }}</a><br /><small>{{ t.account.accounttype.description }}</small>
|
||||
<a href="{{route('accounts.show',t.account.id)}}">{{ t.account.name }}</a> <small>({{ t.account.accounttype.type|_ }})</small>
|
||||
</div>
|
||||
<table class="table table-striped table-bordered">
|
||||
<tr>
|
||||
<td>Amount</td>
|
||||
<td>{{ 'amount'|_ }}</td>
|
||||
<td>{{ t|formatTransaction }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>New balance</td>
|
||||
<td>{{ 'newBalance'|_ }}</td>
|
||||
<td>{{ t.before|formatAmount }} → {{ t.after|formatAmount }}</td>
|
||||
</tr>
|
||||
{% if t.description %}
|
||||
|
Reference in New Issue
Block a user