| {{ $t('falukant.moneyHistory.activity') }} | {{ $t('falukant.moneyHistory.moneyBefore') }} | {{ $t('falukant.moneyHistory.moneyAfter') }} | {{ $t('falukant.moneyHistory.changeValue') }} | {{ $t('falukant.moneyHistory.time') }} |
|---|---|---|---|---|
| {{ translateActivity(entry.activity) }} | {{ entry.moneyBefore != null ? Number(entry.moneyBefore).toLocaleString(locale, { style: 'currency', currency: 'EUR' }) : '---' }} | {{ entry.moneyAfter != null ? Number(entry.moneyAfter).toLocaleString(locale, { style: 'currency', currency: 'EUR' }) : '---' }} | {{ entry.changeValue != null ? Number(entry.changeValue).toLocaleString(locale, { style: 'currency', currency: 'EUR' }) : '---' }} | {{ new Date(entry.time).toLocaleString() }} |