diff --git a/resources/lang/en/list.php b/resources/lang/en/list.php
new file mode 100644
index 0000000000..4a85e56f93
--- /dev/null
+++ b/resources/lang/en/list.php
@@ -0,0 +1,29 @@
+ 'Name',
+ 'role' => 'Role',
+ 'currentBalance' => 'Current balance',
+ 'active' => 'Is active?',
+ 'lastActivity' => 'Last activity',
+ 'balanceDiff' => 'Balance difference between :start and :end',
+ 'matchedOn' => 'Matched on',
+ 'matchingAmount' => 'Amount',
+ 'lastMatch' => 'Last match',
+ 'expectedMatch' => 'Expected match',
+ 'automatch' => 'Automatch?',
+ 'repeat_freq' => 'Repeats',
+ 'description' => 'Description',
+ 'amount' => 'Amount',
+ 'date' => 'Date',
+ 'from' => 'From',
+ 'to' => 'To',
+ 'budget' => 'Budget',
+ 'category' => 'Category',
+ 'bill' => 'Bill',
+ 'withdrawal' => 'Withdrawal',
+ 'deposit' => 'Deposit',
+ 'transfer' => 'Transfer'
+];
\ No newline at end of file
diff --git a/resources/lang/nl/list.php b/resources/lang/nl/list.php
new file mode 100644
index 0000000000..6d28f20d09
--- /dev/null
+++ b/resources/lang/nl/list.php
@@ -0,0 +1,29 @@
+ 'Naam',
+ 'role' => 'Rol',
+ 'currentBalance' => 'Huidig saldo',
+ 'active' => 'Actief?',
+ 'lastActivity' => 'Laatste activiteit',
+ 'balanceDiff' => 'Saldoverschil tussen :start en :end',
+ 'matchedOn' => 'Wordt herkend',
+ 'matchingAmount' => 'Bedrag',
+ 'lastMatch' => 'Laatste keer gezien',
+ 'expectedMatch' => 'Wordt verwacht',
+ 'automatch' => 'Automatisch herkennen?',
+ 'repeat_freq' => 'Herhaling',
+ 'description' => 'Omschrijving',
+ 'amount' => 'Bedrag',
+ 'date' => 'Datum',
+ 'from' => 'Van',
+ 'to' => 'Naar',
+ 'budget' => 'Budget',
+ 'category' => 'Categorie',
+ 'bill' => 'Rekening',
+ 'withdrawal' => 'Uitgave',
+ 'deposit' => 'Inkomsten',
+ 'transfer' => 'Overschrijving'
+];
\ No newline at end of file
diff --git a/resources/twig/list/accounts.twig b/resources/twig/list/accounts.twig
index 4cc47af39a..5e8a21803e 100644
--- a/resources/twig/list/accounts.twig
+++ b/resources/twig/list/accounts.twig
@@ -2,14 +2,14 @@
- Name
+ {{ trans('list.name') }}
{% if what == 'asset' %}
- Role
+ {{ trans('list.role') }}
{% endif %}
- Current balance
- Active
- Last activity
- Balance difference between {{ Session.get('start').format('jS F Y') }} and {{ Session.get('end').format('jS F Y') }}
+ {{ trans('list.currentBalance') }}
+ {{ trans('list.active') }}
+ {{ trans('list.lastActivity') }}
+ {{ trans('list.balanceDiff', {'start' : Session.get('start').format('jS F Y'),'end' : Session.get('end').format('jS F Y')}) }}
- | Description | -Amount | -Date | -From | -To | +{{ trans('list.description') }} | +{{ trans('list.amount') }} | +{{ trans('list.date') }} | +{{ trans('list.from') }} | +{{ trans('list.to') }} | {% if not hideBudgets %} -+ | {% endif %} {% if not hideCategories %} - | + | {% endif %} {% if not hideBills %} - | + | {% endif %} | Piggy bank | {% endif %} -Date | -Amount | +{{ trans('list.date') }} | +{{ trans('list.amount') }} | {% for event in events %}
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|